  .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    animation: heroFadeUp 0.8s cubic-bezier(.22, 1, .36, 1) both;
    text-align: center;
    color: #FFFFFF;
}
.banner-overlay {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0.00) 42.79%, rgba(0, 0, 0, 0.30) 84.62%), linear-gradient(180deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.00) 100%);
}
h2{
    color: var(--brand-dark);
}
.offer-list {
    border: solid 1px var(--brand-dark);
    border-radius: 7px;
    padding: 20px;
    text-align: center;
    background: #FFFFFF;
    height: 100%;
}
.offer-list p {
    color: var(--brand-dark);
    padding-top: 15px;
    font-weight: 400;
}
.injection-banner {
    background: url(../img/injection-therapy-banner.jpg) ;
    background-position: center;
}
    /* ===========================
       ABOUT SECTION
       =========================== */
    .about-section {
      padding: 80px 0;
      background-color: var(--color-bg);
    }

    .about-section .about-image-wrap {
      border-radius: 4px;
      overflow: hidden;
      height: 100%;
      min-height: 360px;
    }

    .about-section .about-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .about-section .about-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-right: 3rem;
    }

    .about-section.bg-light {
    background: var(--brand-gray) !important;
    }

    .about-section.bg-light .about-text-col{
        background: transparent;
    }

    @media (max-width: 991.98px) {
      .about-section .about-content {
        padding-right: 0;
        margin-bottom: 2.5rem;
      }

      .about-section {
        padding: 50px 0;
      }
    }

    /* ===========================
       WHY CHOOSE US SECTION
       =========================== */
    .why-section {
      padding: 60px 0;
      background-color: var(--color-bg);
    }

    .why-section .why-image-wrap {
      border-radius: 16px;
      overflow: hidden;
      height: 100%;
      min-height: 380px;
    }

    .why-section .why-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .why-section .why-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-left: 3rem;
    }

    /* Checklist items */
    .why-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1.75rem 0;
    }

    .why-list li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--color-text);
      line-height: 1.5;
      margin-bottom: 1.1rem;
    }

    .why-list li:last-child {
      margin-bottom: 0;
    }

    .why-list .check-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      margin-top: 1px;
    }

    /* Quote blockquote */
    .why-quote {
    background-color: #65CBEA29;
    border-left: 4px solid #2D3079;
    border-radius: 0 4px 4px 0;
    padding: 1.1rem 1.25rem;
    margin: 0;
}

    .why-quote p {
      font-style: italic;
      color: var(--brand-dark);
      line-height: 1.65;
      margin: 0;
    }

    @media (max-width: 991.98px) {
      .why-section .why-content {
        padding-left: 0;
        margin-top: 2.5rem;
      }

      .why-section {
        padding: 50px 0;
      }
    }

    /* ===========================
       TREATMENT SECTION
       =========================== */
    .treatment-section {
      padding: 60px 0;
      background-color: #86BBF11A;
    }

    .treatment-section .section-subtitle {
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--color-muted);
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .treatment-section h2 {
      text-align: center;
      margin-bottom: 0.6rem;
    }

    /* Treatment card */
    .treatment-card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      height: 240px;
    }

    .treatment-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .treatment-card:hover img {
      transform: scale(1.04);
    }

    /* Gradient overlay */
    .treatment-card .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(60, 60, 130, 0.08) 0%,
        rgba(40, 40, 110, 0.65) 100%
      );
      border-radius: 12px;
    }

    /* Card label */
    .treatment-card .card-label {
      position: absolute;
      bottom: 18px;
      left: 20px;
      font-size: 20px;
      font-weight: 400;
      color: #ffffff;
      letter-spacing: 0.01em;
      line-height: 1.2;
      text-shadow: 0 1px 4px rgba(0,0,0,0.25);
    }

    /* Footer paragraph */
    .treatment-footer {
      text-align: center;
      margin-top: 2.25rem;
      margin-bottom: 0;
      font-size: 20px;
      color: var(--color-muted);
      /*max-width: 760px;*/
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 767.98px) {
      .treatment-card {
        height: 200px;
      }

      .treatment-section {
        padding: 50px 0;
      }
    }

    /* ===========================
       WHAT WE OFFER SECTION
       =========================== */
    .offer-section {
      padding: 60px 0 60px;
      background-color: #ffffff;
    }

    .offer-heading {
      text-align: center;
      margin-bottom: 2.75rem;
    }

    .offer-pill {
      background-color: #2e3a87;
      color: #ffffff;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.4;
      text-align: center;
      padding: 1.1rem 1.5rem;
      border-radius: 10px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 64px;
    }

    .offer-footer {
      text-align: center;
      margin-top: 2.5rem;
      font-size: 1rem;
      color: var(--color-muted);
      margin-bottom: 0;
    }

    /* ===========================
       APPROACH SECTION
       =========================== */
    .approach-section {
      padding: 70px 0 80px;
      background: #eef7fb;
    }

    .approach-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .approach-copy {
      max-width: fit-content;
    }

    .approach-copy h2 {
      font-size: clamp(2rem, 4vw, 3.1rem);
      line-height: 1.12;
      margin-bottom: 1.1rem;
      text-align: left;
    }

    .approach-copy p {
      font-family: var(--font-body);
      font-size: 20px;
      line-height: 1.8;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .approach-subtitle {
      margin-top: 0.4rem;
      margin-bottom: 0 !important;
      font-weight: 400;
      color: var(--brand-dark);
    }

    .approach-nav {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      flex-shrink: 0;
      padding-bottom: 0.2rem;
    }

    .approach-nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #2e3a87;
      color: #ffffff;
      border: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(46, 58, 135, 0.18);
      cursor: pointer;
      padding: 0;
    }

    .approach-nav-btn svg {
      width: 22px;
      height: 22px;
    }

    .approach-card {
      height: 100%;
      min-height: 204px;
      background: #ffffff;
      border: 1px solid rgba(46, 58, 135, 0.16);
      border-radius: 10px;
      padding: 1.3rem 1.35rem 1.45rem;
      box-shadow: 0 8px 24px rgba(20, 32, 75, 0.04);
    }

    .approach-carousel.owl-carousel {
      width: 100%;
    }

    .approach-carousel .approach-slide {
      height: 100%;
      padding: 0.2rem 0;
    }

    .approach-carousel .owl-stage {
      display: flex;
    }

    .approach-carousel .owl-item {
      display: flex;
      height: auto;
    }

    .approach-carousel .owl-item .approach-card {
      width: 100%;
    }

    .approach-step {
      width: 50px;
      height: 50px;
      border-radius: 10px;
      background: #2e3a87;
      color: #65cbea;
      font-size: 1.1rem;
      font-weight: 400;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      letter-spacing: 0.03em;
    }

    .approach-card h3 {
      font-size: 20px;
      line-height: 1.35;
      margin-bottom: 0.85rem;
      color: var(--brand-dark);
    }

    .approach-card p {
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.75;
      color: #595d67;
      margin-bottom: 0;
    }

    @media (max-width: 991.98px) {
      .approach-section {
        padding: 55px 0 60px;
      }

      .approach-header {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 767.98px) {
      .approach-copy p {
        font-size: 1rem;
      }

      .approach-nav-btn {
        width: 40px;
        height: 40px;
      }

      .approach-card {
        padding: 1.15rem 1.1rem 1.25rem;
      }
    }

    @media (max-width: 767.98px) {
      .offer-section {
        padding: 50px 0;
      }

      .offer-pill {
        font-size: 0.95rem;
      }
    }

    /* ===========================
       SERVICES LANDING PAGE
       =========================== */
    .services-page-banner {
      background: url(../img/about.jpg) center center / cover no-repeat;
      height: 230px;
    }

    .services-page-section {
      padding: 34px 0 28px;
      background: #ffffff;
    }

    .services-page-intro {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 1.8rem;
    }

    .services-page-intro p {
      margin-bottom: 0;
      color: var(--color-muted);
      line-height: 1.8;
    }

    .service-tile {
      position: relative;
      display: block;
      height: 230px;
      border-radius: 8px;
      overflow: hidden;
      background: #cfd8e6;
      box-shadow: 0 10px 26px rgba(15, 26, 70, 0.08);
      text-decoration: none;
      isolation: isolate;
    }

    .service-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s cubic-bezier(.22,1,.36,1);
    }

    .service-tile::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(13, 18, 56, 0.10) 42%, rgba(45, 48, 121, 0.78) 100%);
      z-index: 1;
    }

    .service-tile-content {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      padding: 16px 16px 14px;
      background: #2D307999;
    }

    .service-tile-title {
      font-size: 20px;
      font-weight: 400;
      color: #ffffff;
      margin: 0 0 0.30rem;
      line-height: 1.35;
      text-shadow: 0 1px 4px rgba(0,0,0,0.22);
    }

    .service-tile-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #65CBEA;
      font-size: 0.85rem;
      text-decoration: none;
      text-underline-offset: 2px;
    }

    .service-tile:hover img {
      transform: scale(1.05);
    }

    .service-tile:hover .service-tile-link {
      color: #ffffff;
    }

    .services-grid-row {
      margin-top: 0.25rem;
    }

    @media (max-width: 767.98px) {
      .services-page-section {
        padding: 24px 0 20px;
      }

      .services-page-banner {
        height: 170px;
      }

      .service-tile {
        height: 210px;
      }
    }

    /* ===========================
       OUR LOCATIONS SECTION
       =========================== */
   .loc-bg {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 17px;
    padding: 15px;
    background:
      linear-gradient(135deg, rgba(45, 48, 121, 0.72), rgba(101, 203, 234, 0.28)),
      url(../img/location-bg.jpg) center center / cover no-repeat;
    background-color: #2D307966;
}
    .locations-section {
      padding: 60px 0;
      background-color: #ffffff;
    }

    /* Hero card — image with text overlay */
    .loc-hero {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 100%;
      min-height: 400px;
      display: flex;
      align-items: flex-end;
      background: rgba(0, 0, 0, 0);
    }

    .loc-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .loc-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.42) 100%);
      pointer-events: none;
      z-index: 0;
    }

    .loc-bg .row {
      position: relative;
      z-index: 1;
    }

    .loc-hero-content {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      right: 2rem;
      z-index: 1;
    }

    .loc-hero-content h2 {
      font-weight: 400;
      color: #ffffff;
      font-size: clamp(2rem, 4vw, 2.8rem);
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .loc-hero-content p {
      color: rgba(255,255,255,0.88);
      font-size: 0.97rem;
      line-height: 1.65;
      margin: 0;
    }

    /* Clinic info card — white */
    .loc-card {
      border-radius: 16px;
      padding: 1.6rem 1.5rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      
    }

    .loc-card.card-white {
      background-color: #ffffff;
      border: 1.5px solid #d0dff0;
    }

    .loc-card.card-navy {
      background-color: #2e3a87;
      border: none;
    }

    /* Card header row */
    .loc-card-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 0.6rem;
    }

    .loc-card-header h3 {
      font-weight: 400;
      font-size: 1.35rem;
      margin: 0;
    }

    .loc-card.card-white .loc-card-header h3 {
      color: var(--brand-dark);
    }

    .loc-card.card-navy .loc-card-header h3 {
      color: #ffffff;
    }

    .loc-pin-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      margin-top: 3px;
    }

    /* Divider */
    .loc-divider {
      border: none;
      border-top: 1.5px solid #d0dff0;
      margin: 0.75rem 0 1rem;
    }

    .loc-card.card-navy .loc-divider {
      border-top-color: rgba(255,255,255,0.25);
    }

    /* Address */
    .loc-address {
      font-size: 0.95rem;
      line-height: 1.55;
      margin-bottom: 1.1rem;
    }

    .loc-card.card-white .loc-address {
      color: #3a3a3a;
    }

    .loc-card.card-navy .loc-address {
      color: rgba(255,255,255,0.88);
    }

    /* Opening hours label row */
    .loc-hours-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.6rem;
    }

    .loc-hours-label {
      font-size: 0.95rem;
      font-weight: 400;
    }

    .loc-card.card-white .loc-hours-label { color: var(--brand-dark); }
    .loc-card.card-navy .loc-hours-label  { color: #ffffff; }

    .loc-clock-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    /* Hours table */
    .loc-hours-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.92rem;
    }

    .loc-hours-table tr td {
      padding: 0.2rem 0;
      line-height: 1.5;
    }

    .loc-hours-table tr td:last-child {
      text-align: right;
    }

    .loc-card.card-white .loc-hours-table td { color: #3a3a3a; }
    .loc-card.card-navy  .loc-hours-table td { color: rgba(255,255,255,0.88); }
section.faq-section.py-5 {
    background: #d8eaf5;
}

     .faq-accordion { display: flex; flex-direction: column; gap: 16px; }
    .faq-item { background: #ffffff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: none !important; animation: none !important; }
    .faq-question {
      width: 100%; background: none; border: none; outline: none;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 15px 26px;
         font-weight: 400;
    font-size: 20px; color: var(--brand-dark);
      text-align: left; cursor: pointer;
      transition: none !important;
      animation: none !important;
    }
    .faq-question:hover { background-color: var(--brand-light); }
    .faq-chevron { flex-shrink: 0; display: flex; align-items: center; }
    .faq-answer { font-size: var(--fs-small); color: #555; line-height: 1.7; margin: 0; padding: 0 26px 22px; }
.women-treatment-card {
    /* background: #86BBF10D; */
    background: var(--brand-light);
    padding: 20px;
    border: 1px solid #1E4F7A40;
    border-radius: 13px;
}
.women-treatment-card h5 {
    font-size: 18px;
    border-bottom: 1px solid #00000029;
    padding-bottom: 1.2rem;
    margin-bottom: 1rem;
    color: var(--brand-dark);
}
li {
    font-size: 18px;
    margin-bottom: 5px;
}
.women-treatment-card ul {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 20px;
    color: var(--brand-dark);
}
.conditions-treatment-section {
    padding-bottom: 60px;
}
.why-choose-content {
  position: relative;
  background: var(--brand-dark);
      background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    padding: 40px 60px;
    border-radius: 25px;
    margin-bottom: 60px;

}
.why-choose-overlay {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #86BBF130;
    border-radius: 25px;

}
.why-choose-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
}
.why-choose-content li {
    padding-right: 15px;
    font-size: 20px;
    color: var(--brand-light);
    font-weight: 300;
}
.imp-info{
  padding: 60px 0;
}
.imp-info-content {
    border: 1px solid #1E4F7A80;
    border-radius: 9px;
    padding: 30px;
}
    @media (max-width: 991.98px) {
      .loc-hero {
        min-height: 280px;
      }

      .locations-section {
        padding: 50px 0;
      }
    }
