
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --blue: #1a4fc4;
      --blue-dark: #0d2456;
      --teal: #5ee8d8;
      --teal-dark: #0f9e8a;
      --text-dark: #0f1b2d;
      --text-mid: #4a5568;
      --text-light: #6b7a99;
      --bg-light: #f0f4f8;
      --white: #ffffff;
      --card-border: #e3e8f4;
      --icon-bg: #e8f0fb;
    }

    body {
      font-family: 'Helvetica Neue';
      color: var(--text-dark);
      background: #fff;
      line-height: 1.6;
    }

    /* ─── HERO ─── */
    .hero {
      background: 
      radial-gradient(ellipse at 20% 40%, #1a4a8a 0%, transparent 50%),
      radial-gradient(ellipse at 80% 60%, #0d5a5a 0%, transparent 50%),
      linear-gradient(135deg, #1a3566 0%, #0d1f3c 50%, #0a3545 100%);
      padding: 150px 24px 60px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background: linear-gradient(to bottom, transparent, rgba(240, 244, 248, 0.25));
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      padding-top: 50px;
      align-items: center;
    }

    .hero-features {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .hero h1 {
      font-size: clamp(28px, 3.8vw, 50px);
      font-weight: 900;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 8px;
    }

    .hero-sub {
      font-size: clamp(28px, 3.8vw, 50px);
      font-weight: 900;
      line-height: 1.15;
      color: var(--teal);
      margin-bottom: 0;
      display: block;
    }
    .hero-sub span {
      font-size: clamp(28px, 3.8vw, 50px);
      color: #8EC5FF;
      line-height: 1.15;
      display: block;
    }
    .info-card {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(21, 24, 24, 0.3);
      border-radius: 16px;
      padding: 16px 20px;
      margin: 28px 0 18px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--teal);
      margin-top: 5px;
      flex-shrink: 0;
    }

    .info-card p {
      font-size: 15px;
      line-height: 1.55;
      color: #d0eaf8;
      font-weight: 500;
    }

    .tagline {
      font-size: 15px;
      color: #a8c8e8;
      line-height: 1.7;
      margin-top: 18px;
      margin-bottom: 0;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--blue);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      padding: 15px 24px;
      border-radius: 12px;
      text-decoration: none;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .btn-primary:hover {
      background: #1640a8;
    }

    .btn-call {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--teal);
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
    }

    .hero-actions {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 24px;
      margin-top: 32px;
      flex-wrap: wrap;
    }

    .divider {
      border: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      margin-bottom: 28px;
      display: none;
    }

    .trust-list {
      margin-top: 10px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: center;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 600;
      color: #d0eaf8;
    }

    .check-circle {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(94, 232, 216, 0.15);
      border: 1.5px solid var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* ─── SECTION BASE ─── */
    section {
      padding: 72px 24px;
    }

    .sec-inner {
      max-width: 1140px;
      margin: 0 auto;
    }

    .sec-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      color: var(--teal-dark);
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .sec-label::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal-dark);
    }

    .sec-title {
      font-family: 'Helvetica Neue';
      font-size: 40px;
      font-weight: 300;
      line-height: 1.15;
      color: #0F172B;
      margin-bottom: 14px;
    }

    .sec-title span {
      font-size: 38px;
      color: #034EA1;
      font-weight: 400;
    }

    .sec-title .teal-txt {
      color: var(--teal-dark);
    }

    .sec-sub {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.75;
      max-width: 580px;
    }

    .text-center {
      text-align: center;
    }

    .sec-sub.centered {
      margin: 0 auto;
    }

    /* ─── WHY CHOOSE ─── */
    .why-section {
      background: var(--bg-light);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 48px;
    }

    .why-card {
      background: #fff;
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 28px 16px 24px;
      text-align: center;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .why-card:hover {
      box-shadow: 0 8px 28px rgba(26, 79, 196, 0.1);
      transform: translateY(-2px);
    }

    .why-icon-wrap {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #eef2fb;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }

      .why-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
      }

      .wt-light {
        font-size: 13px;
        font-weight: 400;
        color: var(--text-mid);
        line-height: 1.4;
      }

      .wt-bold {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.4;
      }

    .why-desc {
      font-size: 12px;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* Show More button — hidden on desktop, visible on mobile */
    .show-more-btn {
      display: none;
    }

    /* ─── STORY SECTION ─── */
    .story-section {
      background: #fff;
      padding-top: 72px;
    }

    .story-icon-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin: 0 auto 36px;
      background: #fff;
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 16px 28px;
      width: fit-content;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .story-icon-item {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .story-icon-item.active {
      background: #e8fdf9;
    }

    .story-dots {
      display: flex;
      gap: 5px;
      margin: 0 12px;
    }

    .story-dots span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #c8d5e8;
    }

    .story-dots span:last-child {
      background: var(--teal-dark);
    }

    .story-body {
      max-width: 580px;
      margin: 0 auto;
      text-align: center;
    }

    .story-body p {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .story-body p strong {
      color: var(--text-dark);
    }

    .story-title {
      font-family: 'Helvetica Neue';
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 24px;
    }

    .story-title-blue {
      background: linear-gradient(90deg, #034ea1 0%, #00b7ac 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: 'Helvetica Neue';
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 24px;
    }

    .story-title-teal {
      color: var(--teal-dark);
    }

    .story-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      margin: 32px 0 40px;
    }

    .story-btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #034EA1;
      color: #fff;
      font-size: 20px;
      font-weight: 300;
      padding: 16px 36px;
      border-radius: 12px;
      text-decoration: none;
      transition: background 0.2s;
      font-family: 'Helvetica Neue';
      min-width: 280px;
    }

    .story-btn-primary:hover {
      background: #1640a8;
      color: #fff;  
    }

    .story-btn-call {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #00D5BE;
      font-size: 15px;
      font-family: 'Helvetica Neue';
      font-weight: 300;
      text-decoration: none;
    }

    .story-quote {
      background: linear-gradient(135deg, #0d2456 0%, #1a3a6e 100%);
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.7;
      text-align: center;
      padding: 32px 36px;
      border-radius: 20px;
      font-style: italic;
      box-shadow: 0 8px 32px rgba(13, 36, 86, 0.18);
    }


    /* ─── SPECIALITIES ─── */
    .spec-section {
      background: var(--bg-light);
    }

    .spec-label-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid #8df0db;
      border-radius: 100px;
      padding: 13px 30px;
      font-size: 18px;
      font-weight: 300;
      letter-spacing: 2px;
      color: #00786F;
      text-transform: uppercase;
      margin: 0 auto 20px;
      background-color: #cbfbf182;
    }

    .spec-label-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal-dark);
      flex-shrink: 0;
      position: relative;
    }
    .spec-label-dot::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--teal-dark);
      animation: pulseRing 1.5s infinite ease-out;
    }

    @keyframes pulseRing {
      0% {
        transform: scale(1);
        opacity: 0.8;
      }

      100% {
        transform: scale(3);
        opacity: 0;
      }
    }
    .spec-title-stack {
      font-family: 'Helvetica Neue';
      font-size: clamp(32px, 4.5vw, 44px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--text-dark);
      margin-bottom: 16px;
      text-align: center;
    }

    .spec-title-stack span {
      font-size: clamp(32px, 4.5vw, 44px);
      color: #034EA1;
      line-height: 1.1;
      display: block;
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
      margin-top: 40px;
    }

    .spec-card {
      background: #fff;
      border: 1px solid var(--card-border);
      border-radius: 18px;
      padding: 32px 16px 24px;
      text-align: center;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .spec-card:hover {
      box-shadow: 0 6px 24px rgba(26, 79, 196, 0.09);
      transform: translateY(-2px);
    }

    .spec-icon-wrap {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #eef2fb;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .spec-card p {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.4;
    }

    .info-strip {
      font-family: 'Helvetica Neue';
      background: #fff;
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 20px 28px;
      margin-top: 24px;
      font-size: 14px;
      color: var(--text-mid);
      text-align: center;
      line-height: 1.6;
    }


    /* ─── DESIGNED FOR ROUTINE ─── */
    .routine-section {
      background: #fff;
    }

    .routine-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .routine-title {
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 800;
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 20px;
    }

    .routine-title span {
      font-family: 'Helvetica Neue';
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 700;
      line-height: 1.15;
      background: linear-gradient(90deg, #034ea1 0%, #00b7ac 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: block;
    }

    .hours-card {
      background: var(--bg-light);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 24px 28px;
      margin-top: 32px;
    }

    .hours-card .label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--text-light);
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .hours-card .days {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .hours-card .time {
      font-size: 32px;
      font-weight: 800;
      color: #193CB8;
      line-height: 1.1;
    }

    .steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .step {
      display: flex;
      gap: 24px;
      position: relative;
      align-items: flex-start;
    }

    .step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 20px;
      top: 56px;
      width: 1.5px;
      height: calc(100% - 16px);
      background: var(--card-border);
    }

    .step-num {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1.5px solid #DBEAFE;
      color: #193CB8;
      font-size: 16px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: #fff;
      z-index: 1;
      letter-spacing: 0.5px;
    }

    .step-body {
      padding-bottom: 36px;
      padding-top: 8px;
    }

    .step-body h4 {
      font-family: 'Helvetica Neue';
      font-size: 16px;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .step-body p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.65;
    }


    /* ─── TRUST ─── */
    .trust-section {
      background: #fff;
    }
    .trust-title, .trust-title span {
      font-size: 36px;
      color: #0F172B;
      font-weight: 700;
      font-family: MontserratEB;
    }
    .trust-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 40px;
    }

    .stat-card {
      background: #fff;
      border: 1px solid var(--card-border);
      border-radius: 18px;
      padding: 28px 20px;
      text-align: center;
    }

    .stat-card .icon-wrap {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }

    .stat-card .icon-wrap.blue-bg { background: var(--icon-bg); }
    .stat-card .icon-wrap.teal-bg { background: #e8fdf9; }
    .stat-card .icon-wrap.purple-bg { background: #f0eeff; }
    .stat-card .icon-wrap.amber-bg { background: #fff8e8; }

    .stat-card .stat-val {
      font-size: 28px;
      font-weight: 900;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .stat-card .stat-lbl {
      font-size: 13px;
      color: var(--text-light);
    }

    /* ─── FAQ SECTION ─── */
    .faq-section {
      background: var(--bg-light);
    }

    .faq-inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .faq-icon-wrap {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: #e8effc;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .faq-title {
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .faq-sub {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.7;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: #fff;
      border: 1px solid var(--card-border);
      border-radius: 16px;
      overflow: hidden;
      transition: box-shadow 0.2s;
    }

    .faq-item.open {
      box-shadow: 0 4px 20px rgba(26, 79, 196, 0.08);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
      text-align: left;
    }

    .faq-q span { flex: 1; }

    .faq-chevron {
      flex-shrink: 0;
      color: var(--text-light);
      transition: transform 0.25s ease;
    }

    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
      color: var(--blue);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 24px;
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      padding: 0 24px 20px;
    }

    .faq-a p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.75;
    }

    .faq-a p strong { color: var(--text-dark); }

    /* ─── PATIENT STORIES ─── */
    .patient-stories-card {
      background: linear-gradient(145deg, #0a1a3a 0%, #0d2456 50%, #0e3a4a 100%);
      border-radius: 24px;
      padding: 40px 36px;
      margin-top: 48px;
      box-shadow: 0 16px 48px rgba(10, 26, 58, 0.35);
    }

    .ps-title {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      text-align: center;
      margin-bottom: 28px;
    }

    .ps-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .ps-item {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 24px 22px;
    }

    .ps-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 14px;
    }

    .ps-quote {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .ps-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .ps-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .ps-name {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 2px;
    }

    .ps-role {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ─── CTA BAND (NEW DESIGN) ─── */
    .cta-band {
      margin-top: 40px;
      border-radius: 40px;
      background: linear-gradient(135deg, #1a3a8f 0%, #0d3060 30%, #0a4a5a 65%, #0a5a58 100%);
      padding: 80px 24px;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .cta-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(10, 180, 160, 0.18) 0%, transparent 65%),
                  radial-gradient(ellipse at 20% 30%, rgba(26, 79, 196, 0.2) 0%, transparent 60%);
      pointer-events: none;
    }

    .cta-band-inner {
      position: relative;
      z-index: 1;
      max-width: 740px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .cta-icon-wrap {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 32px;
      backdrop-filter: blur(8px);
    }

    .cta-band h2 {
      font-size: clamp(26px, 3.5vw, 36px);
      font-weight: 800;
      line-height: 1.15;
      color: #fff;
      margin-bottom: 24px;
      letter-spacing: -0.5px;
    }

    .cta-subtitle-box {
      border: 1.5px solid rgba(255, 255, 255, 0.25);
      border-radius: 10px;
      padding: 14px 28px;
      margin-bottom: 40px;
      width: 100%;
      max-width: 620px;
    }

    .cta-subtitle-box p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.6;
    }

    .cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      width: 100%;
      max-width: 560px;
      margin-bottom: 28px;
    }

    .cta-btn {
      font-size: 15px;
      font-weight: 700;
      padding: 16px 32px;
      border-radius: 12px;
      text-decoration: none;
      font-family: inherit;
      cursor: pointer;
      border: none;
      flex: 1;
      min-width: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: opacity 0.2s, transform 0.15s;
    }

    .cta-btn:hover {
      opacity: 0.92;
      transform: translateY(-1px);
    }

    .cta-btn.solid {
      background: #fff;
      color: #0d2456;
    }

    .cta-btn.dark {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(6px);
    }

    .cta-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 100px;
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.78);
    }

    .cta-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #5ee8d8;
      flex-shrink: 0;
      box-shadow: 0 0 6px rgba(94, 232, 216, 0.7);
    }

    /* ─── MEET OUR SPECIALISTS ─── */
    .specialists-section {
      background: #ffffff;
      padding: 85px 24px;
      overflow: hidden;
    }

    .spec-header {
      margin-bottom: 48px;
    }

    .specialists-title {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 40px;
      font-weight: 300;
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 14px;
      text-align: center;
    }

    .specialists-title span {
      font-weight: 700;
      font-size: 48px;
      color: #034EA1;
      display: block;
      margin-top: 4px;
      line-height: 55px;
    }

    .specialists-carousel-wrapper {
      position: relative;
      margin: 0 auto;
      overflow: visible;
    }

    

    .doctor-card {
      flex: 0 0 calc(25% - 18px);
      scroll-snap-align: start;
      background: #ffffff;
      border-radius: 24px;
      border: 1px solid var(--card-border);
      padding: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .doctor-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(3, 78, 161, 0.08);
    }

    .doctor-img-wrap {
      width: 100%;
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 1.1;
      background: #f4f6fa;
    }

    .doctor-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.5s ease;
    }

    .doctor-card:hover .doctor-img-wrap img {
      transform: scale(1.05);
    }

    .doctor-info {
      padding: 12px 4px 4px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      text-align: left;
    }
    .doctor-name h3{
      font-size: 19px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 4px;
      line-height: 1.3;
    }
    .doctor-name {
      min-height: 50px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 10px;
    }
    .doctor-desig{
      min-height: 52px;
    }
    .doctor-desig p {
      font-size: 14px;
      color: var(--text-light);
      margin-bottom: 12px;
      font-weight: 500;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 20px;
    }

    .doctor-exp-spec {
      font-size: 13px;
      font-weight: 700;
      color: #034EA1;
      margin-bottom: 10px;
      letter-spacing: 0.2px;
    }
    .doctor-quals{
       min-height: 57px;
       flex-grow: 1;
    }
    .doctor-quals p{
      font-size: 12px;
      color: var(--text-mid);
      line-height: 1.6;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .btn-book-appointment {
      display: block;
      width: 100%;
      text-align: center;
      background: #034EA1;
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      padding: 13px 20px;
      border-radius: 12px;
      text-decoration: none;
      transition: background 0.25s ease, transform 0.15s ease;
      box-shadow: 0 4px 12px rgba(3, 78, 161, 0.15);
      border: none;
      cursor: pointer;
    }

    .btn-book-appointment:hover {
      background: #1e3cb8;
      box-shadow: 0 6px 16px rgba(3, 78, 161, 0.25);
      color: #fff;
    }

    .btn-book-appointment:active {
      transform: scale(0.98);
    }
    .btn-book-appointment:focus{
      background-color: #034ea11f;
      color: #000;
    }
    .carousel-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      margin-top: 24px;
    }

    .carousel-arrow {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid var(--card-border);
      background: #ffffff;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .carousel-arrow:hover:not(.disabled) {
      border-color: #034EA1;
      color: #034EA1;
      background: #f0f4ff;
      transform: scale(1.05);
    }

    .carousel-arrow.disabled {
      opacity: 0.4;
      cursor: not-allowed;
      pointer-events: none;
    }

    .carousel-dots {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .carousel-dots .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #cbd5e1;
      cursor: pointer;
      transition: all 0.25s ease;
      position: relative;
    }

    .carousel-dots .dot.active {
      background: #034EA1;
      transform: scale(1.1);
    }

    .carousel-dots .dot.active::after {
      content: '';
      position: absolute;
      top: -4px;
      left: -4px;
      right: -4px;
      bottom: -4px;
      border: 1.5px solid #034EA1;
      border-radius: 50%;
    }

    .view-all-wrapper {
      text-align: center;
      margin-top: 40px;
    }

    .btn-view-all {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: #eef2ff;
      color: #034EA1;
      font-size: 16px;
      font-weight: 700;
      padding: 16px 36px;
      border-radius: 100px;
      text-decoration: none;
      transition: background 0.25s ease, transform 0.15s ease;
      width: 100%;
      max-width: 950px;
    }

    .btn-view-all:hover {
      background: #e0e7ff;
      transform: translateY(-1px);
    }

    .btn-view-all:active {
      transform: translateY(0);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .why-grid, .spec-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .doctor-card {
        flex: 0 0 calc(33.333% - 16px);
      }
    }

    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 0; }
      .routine-inner { grid-template-columns: 1fr; gap: 40px; }
      .doctor-card {
        flex: 0 0 calc(50% - 12px);
      }
    }

    @media (max-width: 600px) {
      section { padding: 52px 18px; }

      .specialists-section {
        padding: 52px 18px;
      }
      .specialists-title {
        font-size: 32px;
      }
      .specialists-title span {
        font-size: 38px;
      }
      .doctor-card {
        flex: 0 0 82%;
      }
      .btn-view-all {
        font-size: 15px;
        padding: 14px 28px;
      }

      .why-grid, .spec-grid, .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .hero { padding: 130px 18px 52px; }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-top: 28px;
      }

      .btn-primary { width: 100%; justify-content: center; padding: 16px 20px; }
      .btn-call { justify-content: center; width: 100%; }

      .trust-list { flex-direction: row; flex-wrap: wrap; gap: 12px; }
      .trust-item { flex: 1 1 calc(50% - 6px); min-width: 0; font-size: 13px; gap: 8px; }

      .ps-grid { grid-template-columns: 1fr; }

      .cta-band { padding: 56px 18px; }

      .cta-btns {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
      }

      .cta-btn { min-width: unset; flex: none; width: 100%; }

      .cta-subtitle-box { padding: 12px 16px; }

      .why-card.why-hidden-mobile { display: none; }
      .why-card.why-hidden-mobile.why-visible { display: block; }

      .spec-card.spec-hidden-mobile { display: none; }
      .spec-card.spec-hidden-mobile.spec-visible { display: block; }

      .show-more-btn {
        font-family: 'Helvetica Neue';
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        font-size: 15px;
        font-weight: 300;
        color: #0F172B;
        cursor: pointer;
        border: none;
        background: none;
        width: 100%;
      }

      .show-more-btn svg { transition: transform 0.3s ease; }
      .show-more-btn.expanded svg { transform: rotate(180deg); }
    }

    @media (min-width: 1101px) {
      .why-grid { grid-template-columns: repeat(5, 1fr); }
      .spec-grid { grid-template-columns: repeat(5, 1fr); }
      .trust-stats { grid-template-columns: repeat(4, 1fr); }
      .sec-sub.centered { margin-bottom: 0; }
    }

    /* ─── LOCATION SECTION (NEW) ─── */
    .location-section {
      background: #ffffff;
      padding: 85px 24px;
    }
    
    .location-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 60px;
    }
    
    .location-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #eef2ff;
      color: #1447E6;
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      font-family: 'Helvetica Neue';
      margin-bottom: 24px;
      width: fit-content;
    }
    .location-inner .col{
      position: relative;
    }
    .location-title {
      font-family: 'Helvetica Neue';
      font-size: clamp(32px, 4vw, 36px);
      font-weight: 500;
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 16px;
    }
    
    .location-desc {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 32px;
    }
    
    .hospital-address-card {
      background: #f8fafc;
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 24px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      margin-bottom: 24px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
    }
    
    .address-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #e0e7ff;
      color: #1a4fc4;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .address-details h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
    }
    
    .address-details p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.6;
    }
    
    .location-info-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 16px;
    }
    
    .info-item-card {
      border-radius: 16px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .info-item-card.parking {
      background: #f0fdf4;
      border: 1.5px solid #dcfce7;
      color: #166534;
      font-size: 14px;
      font-weight: 700;
    }
    
    .info-item-card.helpline {
      background: #f8fafc;
      border: 1.5px solid #e2e8f0;
      font-size: 14px;
    }
    
    .helpline-icon {
      color: #1a4fc4;
      display: flex;
      align-items: center;
    }
    
    .helpline-text {
      display: flex;
      flex-direction: column;
    }
    
    .hl-label {
      font-size: 10px;
      font-weight: 700;
      color: var(--text-light);
      letter-spacing: 0.5px;
      margin-bottom: 2px;
    }
    
    .hl-number {
      font-size: 14px;
      font-weight: 700;
      color: #1a4fc4;
      text-decoration: none;
    }
    
    /* Right column: map card */
    .location-map-card {
      background: #ffffff;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 20px 48px rgba(15, 27, 45, 0.08);
      border: 1px solid var(--card-border);
    }
    
.map-image-wrap {
  width: 100%;
  aspect-ratio: 1.6;
  position: relative;
  overflow: hidden;
  background: #fafaf9;
}

.map-image-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
    
    .map-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .map-pin-overlay {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 68px;
      height: 68px;
      background: #ffffff;
      border-radius: 18px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #155DFC;
    }
    
    .btn-google-maps {
      position: absolute;
      top: 66%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #0f1b2d;
      color: #ffffff;
      padding: 12px 24px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: background 0.2s, transform 0.2s;
    }
    
    .btn-google-maps:hover {
      background: #1a4fc4;
      transform: translate(-50%, -50%) scale(1.03);
    }
    
    .directions-strip {
      background: linear-gradient(90deg, #10317e 0%, #08444a 100%);
      padding: 20px 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #ffffff;
    }
    
    .directions-strip span {
      font-size: 15px;
      font-weight: 500;
      color: #ffffff;
    }
    
    .btn-navigate {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #0b5952;
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #5ee8d8;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    
    .btn-navigate:hover {
      background: #0f9e8a;
      transform: scale(1.05);
    }
    
    /* Mobile styling for location */
    @media (max-width: 900px) {
      .location-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }
    
    @media (max-width: 600px) {
      .location-section {
        padding: 52px 18px;
      }
      
      .location-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      
      .map-image-wrap {
        aspect-ratio: 1.35;
      }
    }





    .splide {
    padding-bottom: 64px !important;
}
/* 
.splide__arrow {
    background: var(--white) !important;
    border: 2px solid var(--light) !important;
    box-shadow: 0 4px 16px rgba(13, 45, 94, 0.10) !important;
    width: 46px !important;
    height: 46px !important;
    opacity: 1 !important;
    transition:
        background 0.2s,
        border-color 0.2s !important;
}

.splide__arrow:hover {
    background: var(--navy) !important;
    border-color: var(--navy) !important;
}

.splide__arrow svg {
    fill: var(--navy) !important;
    transition: fill 0.2s;
}

.splide__arrow:hover svg {
    fill: var(--white) !important;
}

.splide__arrow--prev {
    left: -8px !important;
}

.splide__arrow--next {
    right: -8px !important;
} */
.splide__arrows {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  z-index: 9;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 35%;
  box-shadow: none !important;
}
.splide__arrow {
  background: none !important;
  opacity: 1 !important;
  box-shadow: none !important;
}
.splide__arrow svg {
  fill: #034e9f !important;
}
.splide__arrow:hover .splide__arrow svg {
    fill: 034e9f !important;
}
.splide__pagination {
    display: none !important;
}
.splide__pagination__page {
  height: 13px !important;
  width: 13px !important;
  background-color: #FFB4BC !important;
}
.splide__pagination__page.is-active {
  background: #FE6B83 !important;
  transform: scale(1.4) !important;
  opacity: 1 !important;
  border-radius: 50%;
  outline: 1.5px dashed #FE6B83 !important;
  outline-offset: 2px !important;
}

    /* Custom dots — always centered */
    .custom-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      width: 100%;
    }

    .custom-dots .dot {
      height: 13px !important;
      width: 13px !important;
      border-radius: 50%;
      background: #ccc;
      cursor: pointer;
      opacity: 0.7;
      flex-shrink: 0;
      transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
      margin: 0 10px !important;
      border: none !important;
    }

    .custom-dots .dot.active {
      background: #034e9f !important;
      transform: scale(1.4) !important;
      opacity: 1 !important;
      border-radius: 50%;
      outline: 1.5px dashed #034e9f !important;
      outline-offset: 2px !important;
    }
    #doctorSlider{
      padding-left: 10%;
    }
    .evening-opd-sticky-mob-btn{
      display: none;
    }
    .text-bold{
      color: #0F172B;
      font-size: 20px;
    }
    @media (max-width: 767px) {
      .splide__arrows {
        width: 70%;
      }
      #doctorSlider {
          padding-left: 5%;
      }
      .location-content{
        text-align: center;
      }
      .address-details p{
        text-align: left;
      }
      .specialists-title span{
        line-height: 45px;
      }
      .trust-title {
        font-weight: 300;
        font-family: Montserrat;
        font-size: 28px;
        line-height: 40px;
        color: #0F172B;
      }
      .trust-title span{
        display: block;
        font-family: Montserrat;
        color: #034EA1;
        font-weight: 300;
        font-size: 28px;
      }
      .evening-opd-sticky-mob-btn{
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 15px;
        border-radius: 30px 30px 0 0;
        font-size: 15px;
        font-weight: 700;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(3, 78, 161, 0.3);
      }
      .evening-opd-sticky{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
      }
      .sticky-book{
        background: linear-gradient(180deg, #164194 0%, #153F8F 11.11%, #143D8B 22.22%, #143B86 33.33%, #133981 44.44%, #12377D 55.56%, #113578 66.67%, #113374 77.78%, #10316F 88.89%, #0F2F6B 100%);
        color: #fff;
        border: none;
        padding: 10px 30px;
        border-radius: 15px;
        width: 213px;
        text-align: center;
      }
      #top-btn {
        bottom: 90px !important;
      }
      .whatsapp-float {
        bottom: 90px !important;
      }
      .sticky-call{
        display: flex;
        align-items: center;
        gap: 10px;
        border: 1px solid #034ea1;
        color: #034ea1;
        padding: 10px 15px;
        border-radius: 15px;
      }
      .sticky-call svg{
        display: block;
      }
      footer{
        padding-bottom: 45px !important;
      }
    }