  body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #f9f9f9;
  }
  
  .banner-section {
    margin-top: -100px;
}

.single-banner {
    position: relative;
    background-image: url("../images/ledership.webp"); /* image yaha add kare */
    /* background-position: 48%; */
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .single-banner {
        background-position: 48% center;
        height: 65vh;
    }

    .banner-content h1 {
        font-size: 38px;
        line-height: 48px;
    }

    .banner-content p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .single-banner {
        height: 55vh;
        padding: 30px 15px;
    }

    .banner-content h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .banner-btn {
        font-size: 15px;
        padding: 10px 22px;
    }
}
  /*-- =================== MD Desk Message CSS  ===================== --*/

  .tthree-area {
    color: #000000;
  }

  .tthree-image img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 10px;
  }

  .tthree-content .sub-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--second);
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .tthree-content .main-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
  }

  .tthree-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 18px;
  }

  /* Extra content row */
  .tthree-extra p {
    font-size: 15px;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  /* Boxes */
  .tthree-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: var(--second);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

  }

  .tthree-box:hover {
    background: var(--main-colour);
    transform: translateY(-5px);
  }

  .tthree-box .icon i {
    font-size: 36px;
    color: var(--white);
  }

  .tthree-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
  }

  .tthree-box p {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 0;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .tthree-content {
      margin-top: 20px;
    }
  }

  @media (max-width: 576px) {
    .tthree-image img {
      height: 250px;
      /* smaller for mobile */
    }

    .tthree-content .main-title {
      font-size: 24px;
    }
  }



  /*-- =================== TEAM SECTION CSS ==================== --*/
  .team {
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 50%, rgba(var(--bs-primary-rgb), .05) 100%);

  }
  .team-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
  }

  .team-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0px 0px 20px 0px;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
  }

  .team-img-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    height: 420px;
  }

  .team-img-wrapper img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 0;
    display: block;
    height: 100%;
    object-position: top;
  }

  /* Name and Text */
  .team-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 10px 0 5px;
  }

  .team-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
  }

  .linkedin-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0A66C2;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
  }

  .linkedin-icon:hover {
    background: #084c90;
    transform: scale(1.1);
  }

  @media (max-width: 767px) {
    .linkedin-icon {
      top: 8px;
      right: 8px;
      padding: 6px;
      font-size: 12px;
    }

    .team-card h3 {
      font-size: 16px;
    }

    .team-card p {
      font-size: 13px;
    }
  }

  .team-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .team-card .anchr {
    margin-top: 20px;
    margin-bottom: 6px;
  }

  .team-card .anchr a {
    padding: 10px 20px;
    background-color: var(--main-colour);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
  }

 .team-card .anchr a:hover{
  background-color: var(--second);
 }

  /* Popup Styles */
  .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .popup {
    background: #fff;
    width: 90%;
    max-width: 950px;
    border-radius: 10px;
    position: relative;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: row;
  }

  .popup-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-y: auto;
    align-items: center;
  }
  .popup img {
    width: 350px;
    height: 100%;
    margin-bottom: 0;
    object-fit: cover;
    object-position: top;
  }

  .popup-content div {
    flex: 1;
    padding: 50px 20px;

  }
  .popup h2 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
  }

  .popup h4 {
    margin: 12px 0;
    font-size: 16px;
    color: #444;
    font-weight: 600;
    /* font-style: italic; */
  }

  .popup p {
    margin: 10px 0;
    line-height: 1.5;
    font-size: 15px;
    color: #000000;
    text-align: justify;
    /* margin-top: 20px */
  }

  .popup .close-btn{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    top: 15px;
    right: 15px;
    background: red;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    line-height: -200px;
    font-weight: 700;
    z-index: 2;
  }

  #popupContent .text-block {
    max-height: 100%;
    overflow-y: auto;
    padding-right: 10px;
    flex: 1;
  }

  @media (max-width: 767.5px) {
    .popup {
      width: 70%;
    }

    .popup-content {
      gap: 10px;
      flex-direction: column;
    }

    .popup-content div {
      padding: 10px;
    }

    .popup img {
      width: 100%;
      height: 450px;
    }

  }

  @media (max-width: 575.5px) {

      .popup {
      width: 90%;
    }

  }

  @media (max-width: 450px) {

    .popup img {
      width: 100%;
      height: 350px;
    }

  }

  .heading-line .text {
    margin: 0 15px;
    font-size: 42px;
    color: #000;
    position: relative;
    font-weight: 700 !important;
  }

  .heading-line .text::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 4px;
    background-color: rgb(0, 0, 0);
    left: 8%;
    bottom: -5px;
  }

  @media(max-width:576px) {
    .heading-line .text {
      font-size: 28px;
    }
  }


  @media (min-width: 1200px) {
    .tthree-area .container {
      max-width: 1400px !important;
    }
  }


  

  .vmv-wrapper {
    background: transparent;
}

.vmv-card {
    background: #ffffff;
    padding: 30px 22px 26px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Top gradient strip */
.vmv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--main-colour),
        var(--second)
    );
}

.vmv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(120, 39, 48, 0.25);
    cursor: pointer;
}

/* Icon */
.vmv-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

/* Icon gradients using your colors */
.vmv-icon.vision {
    background: linear-gradient(
        135deg,
        var(--main-colour),
        #9a3a44
    );
}

.vmv-icon.mission {
    background: linear-gradient(
        135deg,
        var(--second),
        #d9821f
    );
}

.vmv-icon.values {
    background: linear-gradient(
        135deg,
        var(--main-colour),
        var(--second)
    );
}

/* Text */
.vmv-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--main-colour);
}

.vmv-card p {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #555;
}


