*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Poppins', sans-serif; color: #212529; background: #fff; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ── Variables ── */
    :root {
      --blue: #1A3C6E;
      --red: #E63946;
      --grey: #F8F9FA;
      --dark: #212529;
      --white: #FFFFFF;
      --blue-light: #EBF0F8;
      --shadow: 0 4px 24px rgba(26,60,110,0.10);
      --radius: 12px;
    }

    /* ── Utility ── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: var(--white); padding: 12px 26px; border-radius: 50px; font-size: 0.92rem; font-weight: 600; border: none; cursor: pointer; transition: background 0.25s, transform 0.2s; min-height: 44px; white-space: nowrap; }
    .btn-primary:hover { background: #c62833; transform: translateY(-1px); }
    .btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--blue); padding: 12px 26px; border-radius: 50px; font-size: 0.92rem; font-weight: 600; border: 2px solid var(--blue); cursor: pointer; transition: all 0.25s; min-height: 44px; white-space: nowrap; }
    .btn-secondary:hover { background: var(--blue); color: var(--white); }
    .btn-white-border { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); padding: 12px 26px; border-radius: 50px; font-size: 0.92rem; font-weight: 600; border: 2px solid var(--white); cursor: pointer; transition: all 0.25s; min-height: 44px; }
    .btn-white-border:hover { background: rgba(255,255,255,0.15); }
    .section-label { font-size: 0.8rem; font-weight: 600; color: var(--red); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
    .section-title { font-size: 2rem; font-weight: 700; color: var(--blue); line-height: 1.25; margin-bottom: 16px; }
    .section-title span { color: var(--red); }

    /* ─────────────────────────────────────
       SECTION 1 — TOP BAR
    ───────────────────────────────────── */
    #top-bar {
      background: var(--blue);
      color: var(--white);
      padding: 8px 0;
      font-size: 0.8rem;
      font-weight: 500;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .top-bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }
    .top-bar-left a { color: var(--white); margin-right: 14px; }
    .top-bar-left a:hover { color: #ffd6d8; }
    .top-bar-left i { color: #aed4ff; margin-right: 5px; }
    .top-bar-center { color: #cde0ff; text-align: center; flex: 1; }
    .top-bar-center i { color: #aed4ff; margin-right: 5px; }
    .top-bar-right .btn-primary { padding: 6px 18px; font-size: 0.78rem; min-height: 32px; border-radius: 30px; }
    @media (max-width: 768px) {
      .top-bar-inner { justify-content: center; gap: 6px; }
      .top-bar-left { display: none; }
      .top-bar-center { font-size: 0.72rem; }
    }

    /* ─────────────────────────────────────
       SECTION 2 — HEADER / NAV
    ───────────────────────────────────── */
    #main-header {
      background: var(--white);
      border-bottom: 1px solid #e5eaf3;
      position: sticky;
      top: 37px;
      z-index: 999;
      transition: box-shadow 0.3s;
    }
    #main-header.scrolled { box-shadow: 0 4px 20px rgba(26,60,110,0.12); top: 0; }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      gap: 20px;
    }
    .logo-area { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .logo-icon {
      width: 48px; height: 48px; background: var(--blue);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .logo-icon span { color: var(--white); font-size: 1.1rem; font-weight: 800; letter-spacing: 1px; }
    .logo-img {
      width: 48px; height: 48px; border-radius: 10px;
      object-fit: cover; flex-shrink: 0;
      border: 1px solid #dce6f4;
    }
    .logo-text { line-height: 1.2; }
    .logo-text strong { display: block; font-size: 1rem; font-weight: 700; color: var(--blue); }
    .logo-text small { font-size: 0.7rem; color: #6c757d; font-weight: 500; }
    nav { display: flex; align-items: center; gap: 4px; }
    .nav-links { display: flex; align-items: center; gap: 2px; }
    .nav-links li { position: relative; }
    .nav-links a { display: flex; align-items: center; gap: 4px; padding: 8px 12px; font-size: 0.82rem; font-weight: 500; color: var(--dark); border-radius: 6px; transition: color 0.2s, background 0.2s; }
    .nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-light); }
    .nav-links .has-dropdown > a::after { content: "\f107"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 0.65rem; }
    .dropdown {
      display: none; position: absolute; top: calc(100% + 6px); left: 0;
      background: var(--white); border-radius: 10px; min-width: 220px;
      box-shadow: 0 8px 32px rgba(26,60,110,0.15); border: 1px solid #e5eaf3;
      overflow: hidden; z-index: 999;
    }
    .has-dropdown:hover .dropdown { display: block; }
    .dropdown a { display: block; padding: 10px 18px; font-size: 0.82rem; color: var(--dark); border-radius: 0; transition: background 0.2s, color 0.2s; }
    .dropdown a:hover { background: var(--blue-light); color: var(--blue); }
    .header-cta { flex-shrink: 0; }
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--blue); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .nav-mobile-cta { display: none; }
    @media (max-width: 960px) {
      .header-cta { display: none; }
      .hamburger { display: block; }
      nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--white); flex-direction: column; align-items: flex-start; padding: 80px 24px 32px; box-shadow: -8px 0 32px rgba(26,60,110,0.15); transition: right 0.35s ease; z-index: 998; overflow-y: auto; }
      nav.nav-open { right: 0; }
      .nav-links { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
      .nav-links li { width: 100%; }
      .nav-links a { padding: 12px 8px; font-size: 0.9rem; border-radius: 8px; }
      .dropdown { display: none !important; position: static; box-shadow: none; border: none; background: var(--grey); border-radius: 8px; margin: 4px 0 4px 12px; min-width: unset; }
      .has-dropdown.open .dropdown { display: block !important; }
      .has-dropdown > a { justify-content: space-between; }
      .nav-mobile-cta { display: block; margin-top: 20px; width: 100%; }
      .nav-mobile-cta .btn-primary { width: 100%; justify-content: center; }
      #main-header { top: 37px; }
    }
    @media (max-width: 600px) {
      #main-header { top: 0 !important; position: sticky; }
      #top-bar { position: relative !important; }
      .logo-text strong { font-size: 0.82rem; }
    }

    /* ─────────────────────────────────────
       SECTION 3 — HERO
    ───────────────────────────────────── */
    #hero {
      background: #0d2247;
      padding: 90px 0 96px;
      position: relative;
      overflow-x: hidden;
      overflow-y: visible;
    }
    /* Grid line pattern — same as CTA */
    #hero::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    /* Left red glow blob — same as CTA */
    #hero::after {
      content: '';
      position: absolute;
      left: -120px; top: 50%; transform: translateY(-50%);
      width: 480px; height: 480px; border-radius: 50%;
      background: radial-gradient(circle, rgba(230,57,70,0.18) 0%, transparent 65%);
      pointer-events: none;
    }
    /* Right blue depth blob */
    .hero-glow-right {
      position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(26,60,110,0.55) 0%, transparent 65%);
      pointer-events: none; z-index: 1;
    }
    .hero-inner { display: flex; align-items: center; gap: 56px; position: relative; z-index: 2; width: 100%; }
    .hero-content { flex: 1; min-width: 0; overflow: hidden; }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #aed4ff; padding: 6px 16px; border-radius: 30px; font-size: 0.78rem; font-weight: 500; margin-bottom: 22px; backdrop-filter: blur(8px); }
    .hero-content h1 { font-size: 2.6rem; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
    .hero-content h1 span { color: #ffd6d8; }
    .hero-subheading { font-size: 1.05rem; font-weight: 500; color: #aed4ff; margin-bottom: 16px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
    .hero-subheading span { background: rgba(255,255,255,0.08); padding: 4px 12px; border-radius: 20px; font-size: 0.82rem; }
    .hero-body { font-size: 0.97rem; color: #c5d8f0; line-height: 1.75; margin-bottom: 32px; max-width: 520px; word-break: break-word; overflow-wrap: break-word; }
    .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-image { flex-shrink: 0; }
    .doctor-photo-placeholder {
      width: 320px; height: 380px;
      background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
      border: 2px solid rgba(255,255,255,0.15);
      border-radius: 20px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; color: rgba(255,255,255,0.4); font-size: 0.82rem; text-align: center;
      padding: 20px; backdrop-filter: blur(8px);
    }
    .doctor-photo-placeholder i { font-size: 4rem; color: rgba(255,255,255,0.2); }
    .doctor-photo-placeholder p { font-weight: 600; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
    .doctor-photo-placeholder small { font-size: 0.7rem; color: rgba(255,255,255,0.3); }
    @media (max-width: 960px) {
      .hero-inner { flex-direction: column; gap: 40px; text-align: center; width: 100%; }
      .hero-content { width: 100%; max-width: 100%; }
      .hero-content h1 { font-size: 2rem; }
      .hero-subheading { justify-content: center; }
      .hero-body { margin: 0 auto 28px; max-width: 100% !important; }
      .hero-buttons { justify-content: center; flex-wrap: wrap; }
      .doctor-photo-placeholder { width: 260px; height: 300px; }
    }

    /* ─────────────────────────────────────
       SECTION 4 — TRUST BADGES
    ───────────────────────────────────── */
    #trust-badges { background: var(--grey); padding: 28px 0; border-top: 1px solid #e5eaf3; border-bottom: 1px solid #e5eaf3; }
    .badges-strip { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .badge-item { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 180px; }
    .badge-icon { width: 46px; height: 46px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .badge-icon i { color: var(--blue); font-size: 1.1rem; }
    .badge-text strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--blue); line-height: 1.3; }
    .badge-text span { font-size: 0.72rem; color: #6c757d; }
    .badge-divider { width: 1px; height: 40px; background: #dde3ee; flex-shrink: 0; }
    @media (max-width: 768px) {
      .badges-strip { gap: 10px; }
      .badge-divider { display: none; }
      .badge-item { min-width: calc(50% - 10px); flex: unset; }
    }
    @media (max-width: 400px) {
      .badge-item { min-width: 100%; }
    }

    /* ─────────────────────────────────────
       SECTION 5 — ABOUT DOCTOR
    ───────────────────────────────────── */
    #about { padding: 80px 0; background: var(--white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
    .about-photo-wrap { position: relative; }
    .about-photo-placeholder {
      width: 100%; aspect-ratio: 3/4; max-width: 380px;
      background: linear-gradient(145deg, #EBF0F8, #dce6f4);
      border-radius: 20px; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 14px;
      color: #6c88b0; border: 2px dashed #b8cce0;
    }
    .about-photo-placeholder i { font-size: 5rem; color: #b8cce0; }
    .about-photo-placeholder p { font-size: 0.85rem; font-weight: 600; color: #6c88b0; text-align: center; padding: 0 20px; }
    .about-badge-overlay {
      position: absolute; bottom: 20px; left: -20px;
      background: var(--white); border-radius: 12px; padding: 14px 18px;
      box-shadow: 0 8px 32px rgba(26,60,110,0.15);
      display: flex; align-items: center; gap: 12px;
    }
    .about-badge-overlay .num { font-size: 1.6rem; font-weight: 800; color: var(--red); line-height: 1; }
    .about-badge-overlay p { font-size: 0.72rem; font-weight: 600; color: var(--dark); line-height: 1.4; }
    .about-content .section-label { margin-bottom: 4px; }
    .about-content .section-title { font-size: 1.8rem; margin-bottom: 6px; }
    .about-content .doctor-title { font-size: 0.9rem; color: var(--red); font-weight: 600; margin-bottom: 20px; }
    .about-content p { font-size: 0.92rem; color: #495057; line-height: 1.75; margin-bottom: 20px; }
    .credentials-list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
    .cred-item { display: flex; align-items: flex-start; gap: 12px; }
    .cred-item i { color: var(--blue); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
    .cred-item span { font-size: 0.88rem; color: var(--dark); line-height: 1.5; }
    .cred-item span strong { color: var(--blue); }
    .reg-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-light); border: 1px solid #b8cce0; border-radius: 30px; padding: 6px 16px; font-size: 0.8rem; font-weight: 600; color: var(--blue); margin-bottom: 24px; }
    @media (max-width: 860px) {
      .about-grid { grid-template-columns: 1fr; gap: 36px; }
      .about-photo-wrap { text-align: center; }
      .about-photo-placeholder { max-width: 300px; margin: 0 auto; }
      .about-badge-overlay { left: 50%; transform: translateX(-50%); bottom: -20px; width: max-content; }
    }

    /* ─────────────────────────────────────
       SECTION 6 — SERVICES
    ───────────────────────────────────── */
    #services { padding: 80px 0; background: var(--grey); }
    .services-header { text-align: center; margin-bottom: 48px; }
    .services-header .section-title { font-size: 1.9rem; }
    .services-header p { color: #495057; font-size: 0.92rem; max-width: 560px; margin: 0 auto; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
    .service-card {
      background: var(--white); border-radius: var(--radius); padding: 32px 26px;
      box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s;
      border: 1px solid #eaeef5; position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--red));
      transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
    }
    .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,60,110,0.14); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-emoji { font-size: 2.4rem; margin-bottom: 14px; line-height: 1; }
    .service-card h3 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
    .service-card p { font-size: 0.83rem; color: #6c757d; line-height: 1.65; }
    .service-card a { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.82rem; font-weight: 600; color: var(--red); }
    .service-card a i { font-size: 0.75rem; transition: transform 0.2s; }
    .service-card:hover a i { transform: translateX(3px); }
    .services-cta { text-align: center; }
    @media (max-width: 860px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

    /* ─────────────────────────────────────
       SECTION 7 — WHY CHOOSE US
    ───────────────────────────────────── */
    #why-us { padding: 80px 0; background: var(--white); }
    .why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .why-content { }
    .why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
    .why-point {
      display: flex; align-items: flex-start; gap: 12px;
      background: var(--grey); border-radius: 10px; padding: 16px;
      border: 1px solid #eaeef5; transition: border-color 0.2s, box-shadow 0.2s;
    }
    .why-point:hover { border-color: #b8cce0; box-shadow: 0 4px 16px rgba(26,60,110,0.08); }
    .why-tick { width: 28px; height: 28px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .why-tick i { color: var(--blue); font-size: 0.8rem; }
    .why-point-text { font-size: 0.83rem; color: var(--dark); line-height: 1.55; font-weight: 500; }
    .why-visual {
      background: linear-gradient(145deg, var(--blue), #1e4d8c);
      border-radius: 20px; padding: 40px 36px; color: var(--white); text-align: center;
    }
    .why-visual-icon { font-size: 4rem; margin-bottom: 20px; opacity: 0.85; }
    .why-visual h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
    .why-visual p { font-size: 0.88rem; color: #aed4ff; line-height: 1.65; margin-bottom: 24px; }
    .why-stats { display: flex; justify-content: space-around; gap: 12px; }
    .why-stat .n { font-size: 1.8rem; font-weight: 800; color: var(--white); }
    .why-stat .l { font-size: 0.7rem; color: #aed4ff; font-weight: 500; }
    @media (max-width: 860px) {
      .why-inner { grid-template-columns: 1fr; }
      .why-visual { order: -1; }
    }
    @media (max-width: 540px) { .why-points { grid-template-columns: 1fr; } }

    /* ─────────────────────────────────────
       SECTION 8 — CLINIC TIMINGS
    ───────────────────────────────────── */
    #timings { padding: 80px 0; background: var(--grey); }
    .timings-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: start; }
    .timings-card {
      background: var(--white); border-radius: 16px; overflow: hidden;
      box-shadow: var(--shadow); border: 1px solid #eaeef5;
    }
    .timings-card-header {
      background: var(--blue); padding: 22px 28px;
      display: flex; align-items: center; gap: 14px;
    }
    .timings-card-header i { font-size: 1.4rem; color: #aed4ff; }
    .timings-card-header h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; }
    .timings-body { padding: 28px; }
    .timing-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 0; border-bottom: 1px solid #f0f4fa;
      gap: 16px; flex-wrap: wrap;
    }
    .timing-row:last-child { border-bottom: none; padding-bottom: 0; }
    .timing-day { font-size: 0.9rem; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 10px; }
    .timing-day i { color: #aed4ff; background: var(--blue-light); padding: 6px; border-radius: 50%; font-size: 0.75rem; }
    .timing-slots { display: flex; flex-direction: column; gap: 4px; text-align: right; }
    .timing-slot { font-size: 0.82rem; font-weight: 500; color: var(--dark); }
    .timing-slot span { font-size: 0.7rem; color: #6c757d; }
    .timing-closed { font-size: 0.82rem; color: #adb5bd; font-style: italic; }
    .timings-info { }
    .timings-info .section-title { font-size: 1.6rem; }
    .address-box {
      background: var(--white); border-radius: 12px; padding: 20px;
      box-shadow: var(--shadow); border: 1px solid #eaeef5; margin: 20px 0;
    }
    .address-box .addr-row { display: flex; gap: 12px; margin-bottom: 12px; font-size: 0.88rem; }
    .address-box .addr-row:last-child { margin-bottom: 0; }
    .address-box .addr-row i { color: var(--red); flex-shrink: 0; margin-top: 3px; }
    .address-box .addr-row span { color: var(--dark); line-height: 1.55; }
    .timings-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .timings-cta-btns .btn-primary i, .timings-cta-btns .btn-secondary i { font-size: 0.85rem; }
    @media (max-width: 860px) {
      .timings-inner { grid-template-columns: 1fr; }
    }

    /* ─────────────────────────────────────
       SECTION 9 — TESTIMONIALS
    ───────────────────────────────────── */
    #testimonials { padding: 80px 0; background: var(--white); }
    .testimonials-header { text-align: center; margin-bottom: 48px; }

    /* ── Carousel wrapper ── */
    .testi-carousel-wrap { position: relative; }
    .testi-carousel-viewport {
      overflow: hidden; border-radius: 16px; padding: 8px 4px;
    }
    .testi-carousel-track {
      display: flex; gap: 24px;
      transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
      will-change: transform;
    }
    .testi-card {
      background: var(--grey); border-radius: var(--radius); padding: 28px 24px;
      border: 1px solid #eaeef5; position: relative;
      flex: 0 0 calc(33.333% - 16px);
      min-width: 0;
      box-shadow: 0 2px 12px rgba(26,60,110,0.06);
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .testi-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
    .testi-card::before { content: "\201C"; font-size: 5rem; color: #dde3ee; position: absolute; top: 8px; right: 20px; font-family: Georgia, serif; line-height: 1; }
    .stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .stars i { color: #f4c430; font-size: 0.85rem; }
    .testi-text { font-size: 0.88rem; color: #495057; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar { width: 40px; height: 40px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
    .testi-author-info strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--dark); }
    .testi-author-info span { font-size: 0.75rem; color: #6c757d; }
    .testi-google { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: #6c757d; margin-top: 4px; }
    .testi-google i { color: #4285F4; }

    /* Nav buttons */
    .testi-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--white); border: 1.5px solid #dde3ee;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 10;
      box-shadow: 0 4px 16px rgba(26,60,110,0.12);
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .testi-nav:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-50%) scale(1.08); }
    .testi-nav:hover i { color: var(--white); }
    .testi-nav i { color: var(--blue); font-size: 0.85rem; transition: color 0.2s; }
    .testi-prev { left: -22px; }
    .testi-next { right: -22px; }
    .testi-nav:disabled { opacity: 0.35; cursor: not-allowed; }
    .testi-nav:disabled:hover { background: var(--white); border-color: #dde3ee; transform: translateY(-50%); }
    .testi-nav:disabled:hover i { color: var(--blue); }

    /* Dots */
    .testi-dots {
      display: flex; justify-content: center; align-items: center;
      gap: 8px; margin-top: 28px;
    }
    .testi-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #dde3ee; border: none; cursor: pointer;
      padding: 0; transition: background 0.3s, width 0.3s;
    }
    .testi-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

    /* CTA */
    .testimonials-cta { text-align: center; margin-top: 32px; }

    @media (max-width: 960px) {
      .testi-card { flex: 0 0 calc(50% - 12px); }
      .testi-prev { left: -14px; }
      .testi-next { right: -14px; }
    }
    @media (max-width: 540px) {
      .testi-card { flex: 0 0 100%; }
      .testi-prev { left: 0; }
      .testi-next { right: 0; }
    }

    /* ─────────────────────────────────────
       SECTION 10 — BLOG PREVIEW
    ───────────────────────────────────── */
    #blog { padding: 80px 0; background: var(--grey); }
    .blog-header { text-align: center; margin-bottom: 48px; }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 36px; }
    .blog-card {
      background: var(--white); border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow); border: 1px solid #eaeef5; transition: transform 0.25s;
    }
    .blog-card:hover { transform: translateY(-4px); }
    .blog-thumb {
      height: 180px; display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem; background: var(--blue-light);
    }
    .blog-body { padding: 22px 20px; }
    .blog-tag { font-size: 0.7rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block; }
    .blog-body h3 { font-size: 0.97rem; font-weight: 700; color: var(--dark); line-height: 1.45; margin-bottom: 10px; }
    .blog-body p { font-size: 0.82rem; color: #6c757d; line-height: 1.65; margin-bottom: 14px; }
    .blog-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--blue); }
    .blog-link i { font-size: 0.72rem; transition: transform 0.2s; }
    .blog-card:hover .blog-link i { transform: translateX(3px); }
    .blog-cta { text-align: center; }
    @media (max-width: 860px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .blog-grid { grid-template-columns: 1fr; } }

    /* ─────────────────────────────────────
       SECTION 11 — FINAL CTA BANNER
    ───────────────────────────────────── */
    #cta-banner {
      padding: 90px 0;
      background: #0d2247;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    /* Subtle grid pattern */
    #cta-banner::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    /* Left glow blob */
    #cta-banner::after {
      content: ''; position: absolute;
      left: -120px; top: 50%; transform: translateY(-50%);
      width: 480px; height: 480px; border-radius: 50%;
      background: radial-gradient(circle, rgba(230,57,70,0.18) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-banner-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
    /* Right glow blob via extra div */
    .cta-glow-right {
      position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(26,60,110,0.6) 0%, transparent 65%);
      pointer-events: none; z-index: 1;
    }
    .cta-banner-left { text-align: left; flex: 1; }
    .cta-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(230,57,70,0.15); border: 1px solid rgba(230,57,70,0.3);
      color: #ff8a92; padding: 6px 16px; border-radius: 30px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px;
      margin-bottom: 18px; text-transform: uppercase;
    }
    .cta-banner-left h2 {
      font-size: 2.2rem; font-weight: 800; color: var(--white);
      line-height: 1.2; margin-bottom: 16px;
    }
    .cta-banner-left h2 span { color: #ff8a92; }
    .cta-banner-left p {
      font-size: 0.95rem; color: #8aadd0;
      line-height: 1.75; max-width: 480px; margin-bottom: 0;
    }
    .cta-banner-right {
      display: flex; flex-direction: column; gap: 14px;
      flex-shrink: 0; align-items: flex-start;
    }
    .cta-feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 6px; }
    .cta-feature-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.83rem; color: #c5d8f0; font-weight: 500;
    }
    .cta-feature-item i { color: #ff8a92; font-size: 0.75rem; flex-shrink: 0; }
    .cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .cta-btns .btn-primary { box-shadow: 0 6px 24px rgba(230,57,70,0.4); }
    .cta-divider { width: 1px; min-height: 160px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
    @media (max-width: 860px) {
      .cta-banner-inner { flex-direction: column; gap: 36px; text-align: center; }
      .cta-banner-left { text-align: center; }
      .cta-banner-left p { margin: 0 auto; }
      .cta-banner-right { align-items: center; width: 100%; }
      .cta-feature-list { align-items: flex-start; width: fit-content; margin: 0 auto; }
      .cta-divider { display: none; }
    }
    @media (max-width: 480px) {
      #cta-banner { padding: 64px 0; }
      .cta-banner-left h2 { font-size: 1.6rem; }
      .cta-btns { flex-direction: column; width: 100%; }
      .cta-btns .btn-primary, .cta-btns .btn-white-border { justify-content: center; width: 100%; }
    }

    /* ─────────────────────────────────────
       SECTION 12 — FOOTER
    ───────────────────────────────────── */
    #footer { background: #0d2247; color: #c5d8f0; padding: 64px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
    .footer-col h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 16px; position: relative; padding-bottom: 10px; }
    .footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--red); border-radius: 2px; }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
    .footer-logo-icon span { color: var(--white); font-size: 0.95rem; font-weight: 800; }
    .footer-logo-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--white); }
    .footer-col .footer-desc { font-size: 0.8rem; color: #8aadd0; line-height: 1.7; margin-bottom: 16px; }
    .footer-reg { font-size: 0.75rem; color: #5b85b5; margin-bottom: 16px; }
    .social-icons { display: flex; gap: 10px; }
    .social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #8aadd0; font-size: 0.9rem; transition: background 0.2s, color 0.2s; }
    .social-icon:hover { background: var(--red); color: var(--white); }
    .footer-links { display: flex; flex-direction: column; gap: 8px; }
    .footer-links a { font-size: 0.82rem; color: #8aadd0; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
    .footer-links a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 0.7rem; color: var(--red); }
    .footer-links a:hover { color: var(--white); }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
    .footer-contact-item i { color: var(--red); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item span { font-size: 0.82rem; color: #8aadd0; line-height: 1.55; }
    .footer-contact-item a { color: #aed4ff; }
    .footer-contact-item a:hover { color: var(--white); }
    .footer-timing-mini { margin-top: 14px; }
    .footer-timing-mini h5 { font-size: 0.78rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .footer-timing-mini p { font-size: 0.75rem; color: #5b85b5; line-height: 1.8; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0;
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px; flex-wrap: wrap;
    }
    .footer-bottom p { font-size: 0.75rem; color: #4a6e99; }
    .footer-bottom-links { display: flex; gap: 16px; }
    .footer-bottom-links a { font-size: 0.75rem; color: #4a6e99; transition: color 0.2s; }
    .footer-bottom-links a:hover { color: var(--white); }
    @media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 540px) {
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    }

    /* ─────────────────────────────────────
       ANIMATIONS
    ───────────────────────────────────── */
    .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* Scroll to top */
    #scroll-top {
      position: fixed; bottom: 28px; right: 20px;
      width: 44px; height: 44px; background: var(--blue); color: var(--white);
      border-radius: 50%; border: none; cursor: pointer;
      box-shadow: 0 4px 16px rgba(26,60,110,0.3);
      display: none; align-items: center; justify-content: center;
      font-size: 1rem; z-index: 989; transition: background 0.2s, transform 0.2s;
    }
    #scroll-top.visible { display: flex; }
    #scroll-top:hover { background: var(--red); }

    /* Nav overlay */
    .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 997; }
    .nav-overlay.active { display: block; }
  
    /* Hero doctor image */
    .hero-doctor-img-wrap { position: relative; flex-shrink: 0; padding-bottom: 20px; }
    .hero-doctor-img {
      width: 320px; height: 400px; object-fit: cover; object-position: top center;
      border-radius: 20px; border: 3px solid rgba(255,255,255,0.2);
      box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    }
    .hero-img-badge {
      position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
      background: var(--white); border-radius: 30px; padding: 10px 20px;
      display: flex; align-items: center; gap: 8px;
      box-shadow: 0 6px 24px rgba(26,60,110,0.2); white-space: nowrap;
    }
    .hero-img-badge i { color: var(--blue); font-size: 0.9rem; }
    .hero-img-badge span { font-size: 0.78rem; font-weight: 700; color: var(--blue); }

    /* About doctor image */
    .about-doctor-img {
      width: 100%; max-width: 380px; aspect-ratio: 3/4;
      object-fit: cover; object-position: top center;
      border-radius: 20px;
      box-shadow: 0 12px 48px rgba(26,60,110,0.18);
    }

    /* Service card with image */
    .service-card { padding: 0; overflow: hidden; }
    .service-card-img { position: relative; height: 180px; overflow: hidden; }
    .service-card-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s ease;
    }
    .service-card:hover .service-card-img img { transform: scale(1.06); }
    .service-card-tag {
      position: absolute; bottom: 12px; left: 16px;
      width: 38px; height: 38px; background: var(--blue); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 14px rgba(26,60,110,0.35);
    }
    .service-card-tag i { color: var(--white); font-size: 0.9rem; }
    .service-card-body { padding: 22px 22px 20px; }
    .service-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
    .service-card-body p { font-size: 0.82rem; color: #6c757d; line-height: 1.65; }
    .service-card-body a { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 0.82rem; font-weight: 600; color: var(--red); }
    .service-card-body a i { font-size: 0.75rem; transition: transform 0.2s; }
    .service-card:hover .service-card-body a i { transform: translateX(3px); }

    @media (max-width: 960px) {
      .hero-doctor-img { width: 280px; height: 340px; }
      .hero-doctor-img-wrap { justify-content: center; }
    }
    @media (max-width: 860px) {
      .about-doctor-img { max-width: 300px; margin: 0 auto; }
    }
  
    /* ─────────────────────────────────────
       SECTION — CONTACT / MAP / FORM
    ───────────────────────────────────── */
    #contact { padding: 80px 0; background: var(--grey); }
    .contact-header { text-align: center; margin-bottom: 52px; }
    .contact-header .section-title { font-size: 1.9rem; }
    .contact-header p { font-size: 0.92rem; color: #495057; max-width: 520px; margin: 0 auto; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr 1.4fr;
      gap: 28px;
      align-items: start;
    }

    /* ── Contact Info Card ── */
    .contact-info-card {
      background: var(--blue);
      border-radius: 16px;
      padding: 32px 26px;
      color: var(--white);
      height: 100%;
    }
    .contact-info-card h3 {
      font-size: 1.05rem; font-weight: 700; color: var(--white);
      margin-bottom: 24px; padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .ci-item {
      display: flex; gap: 14px; align-items: flex-start;
      margin-bottom: 20px;
    }
    .ci-icon {
      width: 40px; height: 40px; min-width: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 10px; display: flex;
      align-items: center; justify-content: center;
    }
    .ci-icon i { color: #aed4ff; font-size: 0.95rem; }
    .ci-text strong { display: block; font-size: 0.8rem; color: #aed4ff; font-weight: 500; margin-bottom: 3px; }
    .ci-text span, .ci-text a {
      font-size: 0.88rem; color: var(--white); line-height: 1.6;
      font-weight: 500;
    }
    .ci-text a:hover { color: #ffd6d8; }
    .ci-timings { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); }
    .ci-timings h4 { font-size: 0.82rem; font-weight: 700; color: #aed4ff; margin-bottom: 10px; letter-spacing: 0.5px; text-transform: uppercase; }
    .ci-timing-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; gap: 8px; }
    .ci-timing-row span:first-child { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
    .ci-timing-row span:last-child { font-size: 0.8rem; color: var(--white); font-weight: 600; text-align: right; }

    /* ── Map Card ── */
    .map-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid #eaeef5;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .map-card-header {
      padding: 16px 20px;
      display: flex; align-items: center; gap: 10px;
      border-bottom: 1px solid #f0f4fa;
    }
    .map-card-header i { color: var(--red); font-size: 1rem; }
    .map-card-header span { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
    .map-card iframe {
      width: 100%;
      flex: 1;
      min-height: 340px;
      display: block;
      border: 0;
    }
    .map-card-footer {
      padding: 14px 20px;
      background: var(--grey);
      border-top: 1px solid #f0f4fa;
    }
    .map-card-footer a {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 0.82rem; font-weight: 600; color: var(--blue);
    }
    .map-card-footer a:hover { color: var(--red); }

    /* ── Appointment Form Card ── */
    .appt-form-card {
      background: var(--white);
      border-radius: 16px;
      padding: 32px 28px;
      box-shadow: var(--shadow);
      border: 1px solid #eaeef5;
    }
    .appt-form-card h3 {
      font-size: 1.1rem; font-weight: 700; color: var(--blue);
      margin-bottom: 6px;
    }
    .appt-form-card p {
      font-size: 0.82rem; color: #6c757d;
      margin-bottom: 22px; line-height: 1.55;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .form-group label {
      font-size: 0.78rem; font-weight: 600;
      color: var(--dark); letter-spacing: 0.3px;
    }
    .form-group label span { color: var(--red); }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid #dde3ee;
      border-radius: 8px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.85rem;
      color: var(--dark);
      background: #fafbfd;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      min-height: 44px;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--blue);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(26,60,110,0.08);
    }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231A3C6E' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
    .form-submit-btn {
      width: 100%; padding: 14px;
      background: var(--red); color: var(--white);
      border: none; border-radius: 50px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.92rem; font-weight: 700;
      cursor: pointer; min-height: 48px;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      transition: background 0.25s, transform 0.2s;
      margin-top: 4px;
    }
    .form-submit-btn:hover { background: #c62833; transform: translateY(-1px); }
    .form-note {
      text-align: center; margin-top: 12px;
      font-size: 0.72rem; color: #adb5bd;
      display: flex; align-items: center; justify-content: center; gap: 5px;
    }
    .form-note i { color: #adb5bd; }

    /* Success message */
    .form-success {
      display: none; text-align: center; padding: 20px;
      background: #e8f5e9; border-radius: 10px;
      border: 1px solid #a5d6a7; margin-top: 12px;
    }
    .form-success i { color: #2e7d32; font-size: 2rem; margin-bottom: 8px; display: block; }
    .form-success p { color: #1b5e20; font-size: 0.88rem; font-weight: 600; }

    @media (max-width: 1024px) {
      .contact-grid { grid-template-columns: 1fr 1fr; }
      .contact-info-card { grid-column: 1 / -1; }
      .contact-info-card { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
      .ci-timings { margin-top: 0; padding-top: 0; border-top: none; }
    }
    @media (max-width: 768px) {
      .contact-grid { grid-template-columns: 1fr; }
      .contact-info-card { display: block; }
      .form-row { grid-template-columns: 1fr; }
    }

  
    /* ─────────────────────────────────────
       SECTION — FAQs
    ───────────────────────────────────── */
    #faqs { padding: 80px 0; background: var(--white); }
    .faqs-header { text-align: center; margin-bottom: 52px; }
    .faqs-header .section-title { font-size: 1.9rem; }
    .faqs-header p { font-size: 0.92rem; color: #495057; max-width: 520px; margin: 0 auto; }

    .faqs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px; align-items: start; }

    .faq-item {
      border: 1.5px solid #eaeef5;
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.25s, box-shadow 0.25s;
      background: var(--white);
    }
    .faq-item.open {
      border-color: #b8cce0;
      box-shadow: 0 6px 24px rgba(26,60,110,0.09);
    }
    .faq-question {
      width: 100%; display: flex; align-items: center;
      justify-content: space-between; gap: 14px;
      padding: 18px 20px; background: none; border: none;
      cursor: pointer; text-align: left;
      font-family: 'Poppins', sans-serif;
      transition: background 0.2s;
    }
    .faq-question:hover { background: var(--grey); }
    .faq-item.open .faq-question { background: var(--blue-light); }
    .faq-q-left { display: flex; align-items: center; gap: 14px; }
    .faq-q-pill {
      display: inline-flex; align-items: center; justify-content: center;
      min-width: 28px; height: 24px; padding: 0 9px;
      background: var(--blue-light); border: 1px solid #c8d9ef;
      border-radius: 6px;
      font-size: 0.68rem; font-weight: 800; color: var(--blue);
      letter-spacing: 0.5px; text-transform: uppercase;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      flex-shrink: 0;
    }
    .faq-item.open .faq-q-pill {
      background: var(--blue); color: var(--white); border-color: var(--blue);
    }
    /* Legacy compat for index/about page FAQs */
    .faq-num {
      display: inline-flex; align-items: center; justify-content: center;
      min-width: 28px; height: 24px; padding: 0 9px;
      background: var(--blue-light); border: 1px solid #c8d9ef;
      border-radius: 6px;
      font-size: 0.68rem; font-weight: 800; color: var(--blue);
      letter-spacing: 0.5px;
      transition: background 0.2s, color 0.2s;
      flex-shrink: 0;
    }
    .faq-item.open .faq-num { background: var(--blue); color: var(--white); border-color: var(--blue); }
    .faq-question span {
      font-size: 0.88rem; font-weight: 600; color: var(--dark); line-height: 1.45;
    }
    .faq-item.open .faq-question span { color: var(--blue); }
    .faq-icon {
      width: 28px; height: 28px; min-width: 28px;
      background: var(--grey); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.25s, transform 0.3s;
      flex-shrink: 0;
    }
    .faq-icon i { font-size: 0.7rem; color: var(--blue); transition: transform 0.3s; }
    .faq-item.open .faq-icon { background: var(--blue); }
    .faq-item.open .faq-icon i { color: var(--white); transform: rotate(45deg); }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 20px;
    }
    .faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 18px; }
    .faq-answer p {
      font-size: 0.85rem; color: #495057; line-height: 1.8;
      border-top: 1px solid #e5eaf3; padding-top: 14px;
    }
    .faq-answer p strong { color: var(--blue); }

    @media (max-width: 768px) {
      .faqs-grid { grid-template-columns: 1fr; gap: 14px; }
    }

  
    /* Mobile nav extra actions */
    .nav-cta-main { width: 100%; justify-content: center; border-radius: 10px; }
    .nav-mobile-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
    .nav-action-btn {
      flex: 1; display: flex; align-items: center; justify-content: center;
      gap: 8px; padding: 12px 10px; border-radius: 10px;
      font-size: 0.82rem; font-weight: 600; min-height: 44px;
      transition: opacity 0.2s, transform 0.2s;
    }
    .nav-action-btn:hover { opacity: 0.88; transform: translateY(-1px); }
    .nav-call { background: var(--blue-light); color: var(--blue); }
    .nav-whatsapp { background: #e8f8ef; color: #1a7a4a; }
    .nav-whatsapp i { color: #25d366; font-size: 1rem; }
    .nav-call i { font-size: 0.85rem; }
    .nav-mobile-social {
      margin-top: 16px; padding-top: 16px;
      border-top: 1px solid #eaeef5;
    }
    .nav-mobile-social > span {
      display: block; font-size: 0.7rem; font-weight: 700;
      color: #adb5bd; text-transform: uppercase; letter-spacing: 1.5px;
      margin-bottom: 10px;
    }
    .nav-social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
    .nav-soc-icon {
      width: 40px; height: 40px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      background: var(--grey); border: 1px solid #eaeef5;
      color: var(--dark); font-size: 0.9rem;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .nav-soc-icon:nth-child(1):hover { background: #1877f2; color: #fff; border-color: #1877f2; }
    .nav-soc-icon:nth-child(2):hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; border-color: transparent; }
    .nav-soc-icon:nth-child(3):hover { background: #ff0000; color: #fff; border-color: #ff0000; }
    .nav-soc-icon:nth-child(4):hover { background: #4285f4; color: #fff; border-color: #4285f4; }

  
    /* ══════════════════════════════════════
       MOBILE FIXES — Comprehensive
    ══════════════════════════════════════ */

    /* Global overflow fix */
    html, body {
      overflow-x: hidden;
      max-width: 100%;
    }
    * { max-width: 100%; }
    img { max-width: 100%; height: auto; }

    @media (max-width: 600px) {

      /* ── Container padding ── */
      .container { padding: 0 16px; }

      /* ── Top bar ── */
      #top-bar { padding: 7px 0; }
      .top-bar-center { font-size: 0.68rem; line-height: 1.4; }
      .top-bar-right .btn-primary { padding: 6px 14px; font-size: 0.72rem; }

      /* ── Header ── */
      #main-header { top: 0 !important; }
      .logo-icon { width: 38px; height: 38px; border-radius: 8px; }
      .logo-icon span { font-size: 0.88rem; }
      .logo-text strong { font-size: 0.82rem; }
      .logo-text small { font-size: 0.62rem; }

      /* ── HERO — Full fix ── */
      #hero { padding: 48px 0 72px; overflow-x: hidden; overflow-y: visible; }

      .hero-inner {
        flex-direction: column;
        gap: 28px;
        text-align: center;
        width: 100%;
        overflow: hidden;
      }

      .hero-content {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 0;
      }

      .hero-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
        display: inline-flex;
        max-width: 100%;
      }

      .hero-content h1 {
        font-size: 1.55rem;
        line-height: 1.25;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        padding: 0 4px;
      }

      .hero-subheading {
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
        max-width: 100%;
        overflow: hidden;
      }

      .hero-subheading span {
        font-size: 0.72rem;
        padding: 4px 10px;
        white-space: nowrap;
      }

      .hero-body {
        font-size: 0.88rem;
        line-height: 1.7;
        max-width: 100% !important;
        width: 100%;
        margin: 0 0 24px 0 !important;
        text-align: center;
        overflow-wrap: break-word;
        word-break: break-word;
        padding: 0 4px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
      }

      .hero-buttons .btn-primary,
      .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
        border-radius: 50px;
      }

      /* Doctor image — show on mobile, properly sized */
      .hero-image { display: flex; justify-content: center; width: 100%; }
      .hero-doctor-img {
        width: 200px !important;
        height: 240px !important;
        object-fit: cover;
        object-position: top center;
        border-radius: 16px !important;
        margin: 0 auto;
      }
      .hero-img-badge {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: -22px;
        padding: 8px 16px;
        font-size: 0.7rem;
        white-space: nowrap;
        align-self: center;
        z-index: 3;
      }
      .hero-doctor-img-wrap { display: flex; flex-direction: column; align-items: center; padding-bottom: 0; }

      /* ── Trust badges ── */
      #trust-badges { padding: 20px 0; }
      .badges-strip { gap: 8px; }
      .badge-item {
        min-width: calc(50% - 8px);
        flex: 0 0 calc(50% - 8px);
        gap: 8px;
      }
      .badge-icon { width: 36px; height: 36px; }
      .badge-text strong { font-size: 0.75rem; }
      .badge-text span { font-size: 0.66rem; }

      /* ── About Doctor ── */
      #about { padding: 56px 0; }
      .about-grid { gap: 48px; }
      .about-doctor-img { max-width: 260px !important; }
      .about-badge-overlay {
        position: relative !important;
        left: auto !important; bottom: auto !important;
        transform: none !important;
        margin: 12px auto 0;
        width: fit-content;
        display: flex;
      }
      .section-title { font-size: 1.55rem !important; }
      .cred-item span { font-size: 0.82rem; }

      /* ── Services ── */
      #services { padding: 56px 0; }
      .services-header .section-title { font-size: 1.55rem; }
      .service-card-img { height: 150px; }

      /* ── Why Choose Us ── */
      #why-us { padding: 56px 0; }
      .why-visual { padding: 28px 20px; }
      .why-visual h3 { font-size: 1.15rem; }
      .why-stats { gap: 8px; }
      .why-stat .n { font-size: 1.4rem; }

      /* ── Timings ── */
      #timings { padding: 56px 0; }
      .timings-cta-btns { flex-direction: column; }
      .timings-cta-btns .btn-primary,
      .timings-cta-btns .btn-secondary { width: 100%; justify-content: center; }

      /* ── Testimonials ── */
      #testimonials { padding: 56px 0; }
      .testi-prev { left: 0; }
      .testi-next { right: 0; }

      /* ── FAQs ── */
      #faqs { padding: 56px 0; }
      .faq-question span { font-size: 0.82rem; }
      .faq-answer p { font-size: 0.82rem; }

      /* ── CTA Banner ── */
      #cta-banner { padding: 56px 0; }
      .cta-banner-left h2 { font-size: 1.45rem; }
      .cta-btns { flex-direction: column; width: 100%; }
      .cta-btns .btn-primary,
      .cta-btns .btn-white-border { width: 100%; justify-content: center; }

      /* ── Contact ── */
      #contact { padding: 56px 0; }
      .appt-form-card { padding: 22px 16px; }
      .map-card iframe { min-height: 260px; }
      .form-row { grid-template-columns: 1fr; gap: 0; }

      /* ── Footer ── */
      #footer { padding: 48px 0 0; }
      .footer-grid { gap: 24px; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
      .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 10px; }

      /* ── Global section padding ── */
      section { overflow-x: hidden; }
      #hero { overflow: visible !important; }
    }

    /* Tablet fixes (601–960px) */
    @media (min-width: 601px) and (max-width: 960px) {
      .hero-content h1 { font-size: 1.9rem; }
      .hero-body { max-width: 100% !important; }
      .hero-buttons { justify-content: center; }
      .hero-buttons .btn-primary,
      .hero-buttons .btn-secondary { min-width: 200px; }
      #main-header { top: 0 !important; }
    }

/* ── Fade-in fallback for reduced motion / no-JS ── */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }
}

    /* ─────────────────────────────────────
       FLOATING ACTION BUTTONS
    ───────────────────────────────────── */
    .float-whatsapp,
    .float-call {
      position: fixed;
      left: 20px;
      width: 52px; height: 52px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; z-index: 990;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      transition: transform 0.25s, box-shadow 0.25s;
      text-decoration: none;
    }
    .float-whatsapp {
      bottom: 88px;
      background: #25D366; color: #fff;
    }
    .float-call {
      bottom: 28px;
      background: var(--blue); color: #fff;
    }
    .float-whatsapp:hover,
    .float-call:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 28px rgba(0,0,0,0.25);
    }
    .float-whatsapp i { font-size: 1.5rem; }
    @media (max-width: 540px) {
      .float-whatsapp { bottom: 80px; left: 14px; width: 48px; height: 48px; }
      .float-call { bottom: 22px; left: 14px; width: 48px; height: 48px; }
    }

    /* scroll-top styles defined above */

    /* nav-overlay styles defined above */

    /* ─────────────────────────────────────
       MOBILE NAV ACTIONS
    ───────────────────────────────────── */
    .nav-mobile-actions {
      display: flex; gap: 10px; margin-top: 12px;
    }
    .nav-action-btn {
      flex: 1; display: inline-flex; align-items: center; justify-content: center;
      gap: 8px; padding: 10px 12px; border-radius: 10px;
      font-size: 0.82rem; font-weight: 600; transition: all 0.2s;
    }
    .nav-call {
      background: var(--blue-light); color: var(--blue);
      border: 1px solid #b8cce0;
    }
    .nav-call:hover { background: var(--blue); color: #fff; }
    .nav-whatsapp {
      background: #e8faf0; color: #1a7c3f;
      border: 1px solid #b3e6c9;
    }
    .nav-whatsapp:hover { background: #25D366; color: #fff; border-color: #25D366; }
    .nav-mobile-social { margin-top: 18px; }
    .nav-mobile-social span {
      display: block; font-size: 0.72rem; font-weight: 600; color: #6c757d;
      text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
    }
    .nav-social-icons { display: flex; gap: 10px; }
    .nav-soc-icon {
      width: 36px; height: 36px; border-radius: 50%; background: var(--grey);
      border: 1px solid #eaeef5; display: flex; align-items: center; justify-content: center;
      color: var(--dark); font-size: 0.85rem; transition: all 0.2s;
    }
    .nav-soc-icon:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

    /* ─────────────────────────────────────
       MOBILE STICKY BOTTOM BAR
    ───────────────────────────────────── */
    .mobile-bottom-bar {
      display: none;
    }
    @media (max-width: 768px) {
      /* Hide desktop float buttons on mobile */
      .float-whatsapp, .float-call { display: none !important; }
      #scroll-top { bottom: 78px; right: 14px; width: 38px; height: 38px; font-size: 0.82rem; }

      /* Show bottom bar */
      .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 995;
        background: var(--white);
        border-top: 1px solid #e0e8f4;
        box-shadow: 0 -4px 20px rgba(26,60,110,0.10);
        height: 64px;
        align-items: stretch;
      }
      .mbb-item {
        flex: 1;
        display: flex; flex-direction: column;
        align-items: center; justify-content: center;
        gap: 4px;
        text-decoration: none;
        font-size: 0.62rem; font-weight: 700;
        color: #6c757d;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        transition: background 0.18s, color 0.18s;
        border: none; background: none; cursor: pointer;
        padding: 8px 4px 10px;
        position: relative;
      }
      .mbb-item i {
        font-size: 1.25rem;
        transition: color 0.18s, transform 0.18s;
      }
      .mbb-item:active { background: var(--grey); }

      /* Book Apt — center, accent */
      .mbb-item.mbb-apt {
        background: var(--blue);
        color: #fff;
      }
      .mbb-item.mbb-apt i { color: #fff; }
      .mbb-item.mbb-apt:active { background: #153055; }

      /* WhatsApp */
      .mbb-item.mbb-wa { color: #128C7E; }
      .mbb-item.mbb-wa i { color: #25D366; }
      .mbb-item.mbb-wa:active { background: #f0faf5; }

      /* Call */
      .mbb-item.mbb-call { color: var(--blue); }
      .mbb-item.mbb-call i { color: var(--blue); }
      .mbb-item.mbb-call:active { background: var(--blue-light); }

      /* Dividers */
      .mbb-divider {
        width: 1px; background: #e5eaf3;
        margin: 10px 0; flex-shrink: 0;
      }

      /* Push page content above bar */
      body { padding-bottom: 64px; }
    }