  /*Our Team Section*/
  #ourTeam {
    min-height: 100vh;
    padding: clamp(3rem, 5vw, 6rem) 0;
  }

  #ourTeam .team-bg {
    background-image: url('../images/our-team/our-team-bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    height: 120%;
    transform: translateY(-10%);
    loading: lazy;
  }

  .team-card {
    border-radius: clamp(16px, 2vw, 24px);
    overflow: hidden;
    border: none;
    background: white;
    height: 25rem !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 320px;
    margin: 0 auto;
  }

  .team-card img {
    height: clamp(269px, 30vw, 260px);
    object-fit: cover;
    width: 100%;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }

  .card-body {
    position: relative;
    /* padding: clamp(1.2rem, 2vw, 1.8rem);
    padding-right: clamp(3rem, 4vw, 70px);
    background: white;
    border-radius: clamp(16px, 2vw, 24px);
    margin-top: clamp(-16px, -2vw, -24px);
    margin-left: clamp(8px, 1vw, 12px);
    margin-right: clamp(8px, 1vw, 12px); */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
  }

  .team-name {
    color:rgb(31 80 145) !important;
  }
  .team-desg{
    color: 212529 !important;
  }
  .btn-linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #0066a1 100%);
    color: white;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    border-radius: clamp(8px, 1vw, 12px);
    width: clamp(32px, 4vw, 42px);
    height: clamp(32px, 4vw, 42px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: clamp(1.2rem, 2vw, 1.8rem);
    top: clamp(0.2rem, 0vw, 1.8rem);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.2);
    transition: all 0.3s ease;
  }

  .swiper-nav-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: clamp(8px, 1.5vw, 16px);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .swiper-button-prev,
  .swiper-button-next {
    position: static;
    width: clamp(40px, 5vw, 50px);
    height: clamp(40px, 5vw, 50px);
    margin: 0;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #0077b5;
    font-weight: bold;
  }

  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }



  @media (max-width: 1399px) {
    .blur-overlay { width: 25%; }
  }

  @media (max-width: 991px) {
    .blur-overlay { width: 28%; }
  }

  @media (max-width: 767px) {
    .blur-overlay { width: 30%; }
  }

  @media (max-width: 575px) {
    .blur-overlay { width: 35%; }
  }