  /*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%; }
  }

  

  /* SM PLUGINN*/
  /* ====== Instagram Grid (classic UI) ====== */
  #sm-plugin.sm-classic{
    --gap: 22px;
    --border: #e6e8ee;
    --muted: #6b7280;
    --heading: #0b0c10;
    padding: 12px 0 24px;
    background: #fff; /* section bg like your screenshot */
  }

  #sm-plugin .sm-header{ text-align:center; max-width: 920px; margin: 0 auto 18px; padding: 0 16px; }
  #sm-plugin .sm-h1{
    font-weight: 800; letter-spacing: .08em; color: var(--heading);
    margin: 0 0 8px; font-size: clamp(22px, 2.2vw, 34px);
  }
  #sm-plugin .sm-subtitle{
    margin: 0 auto; color: var(--muted);
    font-size: clamp(13px, 1.1vw, 16px); line-height: 1.6;
  }

  /* grid like screenshot: desktop 4 x 2, tablet 3 x ?, mobile 2 x ? */
  #sm-plugin .sm-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    max-width: 1080px; margin: 16px auto 0; padding: 0 16px;
  }
  @media (min-width: 700px){ #sm-plugin .sm-grid{ grid-template-columns: repeat(3, 1fr);} }
  @media (min-width: 1024px){ #sm-plugin .sm-grid{ grid-template-columns: repeat(4, 1fr);} }

  #sm-plugin .sm-card{
    position: relative;
    aspect-ratio: 1 / 1;              /* square tiles */
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
  }
  #sm-plugin .sm-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
  }

  #sm-plugin .sm-card img,
  #sm-plugin .sm-card video{
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block;
  }

  /* skeletons */
  #sm-plugin .skeleton{ background: #f3f5f9; }
  #sm-plugin .skeleton::after{
    content:""; position:absolute; inset:0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.65) 50%, rgba(255,255,255,0) 100%);
    animation: sm-sheen 1.1s linear infinite;
  }
  @keyframes sm-sheen{ from{ transform:translateX(-100%);} to{ transform:translateX(100%);} }

  #sm-plugin .sm-empty{
    margin: 14px auto 0; max-width: 680px; padding: 10px 12px;
    text-align:center; color:#6b7280; border:1px dashed #e5e7eb; border-radius:8px;
  }