:root {
      --primary: #004690;
      --primary-dark: #003070;
      --primary-light: #005dbb;
      --primary-fixed: #d7e3ff;
      --secondary: #455f88;
      --tertiary: #735c00;
      --tertiary-fixed: #ffe088;
      --tertiary-container: #cca72f;
      --surface: #f7f9fb;
      --surface-container: #eceef0;
      --surface-container-low: #f2f4f6;
      --surface-container-lowest: #ffffff;
      --on-surface: #191c1e;
      --on-surface-variant: #424752;
      --outline: #727783;
      --outline-variant: #c2c6d4;
    }

:root {
    --primary: #004690;
    --primary-dark: #003070;
    --primary-light: #005dbb;
    --primary-fixed: #d7e3ff;
    --secondary: #455f88;
    --tertiary: #735c00;
    --tertiary-fixed: #ffe088;
    --tertiary-container: #cca72f;
    --surface: #f7f9fb;
    --surface-container: #eceef0;
    --surface-container-low: #f2f4f6;
    --surface-container-lowest: #ffffff;
    --on-surface: #191c1e;
    --on-surface-variant: #424752;
    --outline: #727783;
    --outline-variant: #c2c6d4;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--surface); color: var(--on-surface); overflow-x: hidden; }
  h1, h2, h3, h4, h5, .font-headline { font-family: 'Manrope', sans-serif; }
  .material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; font-family: 'Material Symbols Outlined'; vertical-align: middle; }

/* ══════════════════════════════════
   NAVBAR — Gandhi Eye Centre
   ══════════════════════════════════ */

.navbar-gec {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,70,144,0.09);
  box-shadow: 0 4px 24px rgba(0,70,144,0.08);
  padding: 4px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  height: 68px; /* navbar height fixed */
}

/* ── Logo — bada dikhega, navbar same size ── */
.navbar-logo-img {
  height: 50px;        /* logo bada */
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-top: -0px;     /* thoda neeche nikle — overflow se bada effect */
  margin-bottom: -10px;
  position: relative;
  z-index: 2;
}

.fallback-logo-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f0ff, #c5d8ff);
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(0,70,144,0.15);
}

/* ── Top-Rated Badge ── */
.top-rated-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #fffbf0, #fff4d1);
  border: 1px solid rgba(204,167,47,0.35);
  border-radius: 10px;
  padding: 5px 10px 5px 8px;
  margin-left: 4px;
}
.top-rated-stars { display: flex; gap: 1px; }
.star-icon { font-size: 12px !important; color: #cca72f; }
.top-rated-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  color: #7a5c00;
  line-height: 1.25;
}
.top-rated-text span {
  font-weight: 500;
  font-size: 0.6rem;
  color: #a07d20;
}

/* ── Nav Links ── */
.nav-link-gec {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: #4a5568;
  padding: 0.44rem 0.8rem !important;
  border-radius: 10px;
  transition: all 0.22s ease;
  position: relative;
  white-space: nowrap;
}
.nav-link-gec:hover,
.nav-link-gec.active {
  color: #004690;
  background: rgba(0,70,144,0.07);
}

/* ══ SERVICES DROPDOWN ══ */
.dropdown-gec { position: relative; }
.dropdown-gec > .nav-link-gec {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
}
.dropdown-gec > .nav-link-gec::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.dropdown-gec:hover > .nav-link-gec::after { transform: rotate(180deg); }

.dropdown-menu-gec {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1.5px solid rgba(0,70,144,0.12);
  border-radius: 20px;
  box-shadow: 0 20px 56px rgba(0,70,144,0.14), 0 4px 16px rgba(0,0,0,0.06);
  padding: 12px;
  min-width: 600px;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  z-index: 9999;
}
.dropdown-menu-gec::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
  background: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .dropdown-gec:hover .dropdown-menu-gec {
    display: grid;
    animation: dropIn 0.2s ease forwards;
  }
}
@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Mobile nav + dropdown (was missing — this is why Services broke on mobile) ── */
@media (max-width: 991px) {
  html, body { overflow-x: hidden; width: 100%; }
  .navbar-gec .navbar-collapse {
    background: #fff;
    border-radius: 16px;
    margin-top: 10px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0,70,144,.12);
    max-height: 80vh;
    overflow-y: auto;
  }
  .dropdown-menu-gec {
    position: static !important;
    transform: none !important;
    min-width: 100% !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 12px;
    display: none !important;
  }
  .dropdown-gec.show .dropdown-menu-gec { display: grid !important; }
}

.dropdown-item-gec {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.18s ease;
  cursor: pointer;
}
.dropdown-item-gec:hover { background: rgba(0,70,144,0.06); }

.dropdown-item-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f0ff, #c5d8ff);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.18s ease;
}
.dropdown-item-icon .material-symbols-outlined {
  font-size: 20px; color: #004690; transition: color 0.18s;
}
.dropdown-item-gec:hover .dropdown-item-icon {
  background: linear-gradient(135deg, #004690, #0060c7);
}
.dropdown-item-gec:hover .dropdown-item-icon .material-symbols-outlined { color: #ffffff; }

.dropdown-item-text { display: flex; flex-direction: column; gap: 2px; }
.dropdown-item-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 0.82rem; color: #002255; line-height: 1.2;
}
.dropdown-item-sub { font-size: 0.72rem; color: #5f7080; line-height: 1.3; }

/* ── Social Buttons ── */
.nav-social-btn {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,70,144,0.07);
  color: #004690;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(0,70,144,0.13);
  cursor: pointer;
}
.nav-social-btn:hover {
  background: #004690; color: #ffffff;
  transform: translateY(-1px); border-color: transparent;
}
.nav-social-btn svg { width: 13px; height: 13px; fill: currentColor; }

/* ── Toggler ── */
.navbar-toggler {
  border: 1.5px solid rgba(0,70,144,0.18);
  border-radius: 10px; padding: 5px 8px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(0,70,144,0.15); }

/* ══ BUTTONS ══ */
.btn-3d-primary {
  background: linear-gradient(135deg, #005dbb 0%, #004690 60%, #003070 100%);
  color: #ffffff; border: none; border-radius: 12px;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  padding: 9px 20px; font-size: 0.82rem;
  box-shadow: 0 4px 0 #002255, 0 8px 16px rgba(0,70,144,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.18s ease; position: relative; top: 0;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; white-space: nowrap;
}
.btn-3d-primary:hover {
  top: 2px;
  box-shadow: 0 2px 0 #002255, 0 5px 10px rgba(0,70,144,0.25);
  color: #ffffff;
}
.btn-3d-primary:active { top: 4px; box-shadow: 0 0 0 #002255; }

.btn-3d-primary-lg {
  background: linear-gradient(135deg, #005dbb 0%, #004690 60%, #003070 100%);
  color: #ffffff; border: none; border-radius: 14px;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  padding: 14px 32px; font-size: 1rem;
  box-shadow: 0 6px 0 #002255, 0 10px 20px rgba(0,70,144,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.18s ease; position: relative; top: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-3d-primary-lg:hover {
  top: 3px;
  box-shadow: 0 3px 0 #002255, 0 6px 12px rgba(0,70,144,0.3);
  color: #ffffff;
}

.btn-3d-gold {
  background: linear-gradient(135deg, #ffe088 0%, #cca72f 100%);
  color: #241a00; border: none; border-radius: 16px;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  padding: 16px 36px; font-size: 1.05rem;
  box-shadow: 0 6px 0 #9a7800, 0 12px 24px rgba(204,167,47,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: all 0.18s ease; position: relative; top: 0; cursor: pointer;
}
.btn-3d-gold:hover {
  top: 3px;
  box-shadow: 0 3px 0 #9a7800, 0 8px 16px rgba(204,167,47,0.3);
  color: #241a00;
}

.btn-3d-ghost {
  background: rgba(255,255,255,0.92); color: #4a5568;
  border: none; border-radius: 14px;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  padding: 14px 28px; font-size: 1rem;
  box-shadow: 0 5px 0 rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.08), inset 0 1px 0 #ffffff;
  transition: all 0.18s ease; position: relative; top: 0; cursor: pointer;
}
.btn-3d-ghost:hover {
  top: 2px;
  box-shadow: 0 3px 0 rgba(0,0,0,0.08), 0 5px 10px rgba(0,0,0,0.06);
  color: #004690;
}





    * { box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--surface);
      color: var(--on-surface);
      overflow-x: hidden;
      /* navbar fixed-top ki height ke barabar padding-top do */
      padding-top: 72px;
    }

    /* HERO */
    .hero {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
      padding: 88px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 420px; height: 420px; border-radius: 50%;
      background: rgba(255,255,255,0.05); pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute; bottom: -130px; left: -80px;
      width: 500px; height: 500px; border-radius: 50%;
      background: rgba(255,255,255,0.04); pointer-events: none;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(215,227,255,0.18);
      color: var(--primary-fixed);
      border: 1px solid rgba(215,227,255,0.35);
      border-radius: 100px;
      padding: 6px 20px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.18;
      margin-bottom: 20px;
    }
    .hero-title span { color: var(--tertiary-fixed); }

    .hero-sub {
      color: rgba(255,255,255,0.78);
      font-size: 1rem;
      line-height: 1.8;
      font-weight: 300;
      max-width: 500px;
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--tertiary-container), var(--tertiary-fixed));
      color: var(--on-surface);
      font-weight: 700;
      font-size: 0.92rem;
      padding: 13px 34px;
      border-radius: 100px;
      border: none;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 8px 24px rgba(204,167,47,0.4);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .btn-gold:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 16px 36px rgba(204,167,47,0.52);
      color: var(--on-surface);
    }

    /* DOCTOR CARD */
    .doc-card {
      background: var(--surface-container-lowest);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(0,70,144,0.2), 0 32px 60px rgba(0,70,144,0.15);
      transform: rotateY(-5deg) rotateX(3deg);
      animation: floatCard 5s ease-in-out infinite;
      transition: transform 0.4s, box-shadow 0.4s;
    }
    .doc-card:hover {
      animation: none;
      transform: rotateY(0) rotateX(0) scale(1.03) translateZ(20px);
      box-shadow: 0 20px 56px rgba(0,70,144,0.26);
    }
    @keyframes floatCard {
      0%,100% { transform: rotateY(-5deg) rotateX(3deg) translateY(0); }
      50%      { transform: rotateY(-5deg) rotateX(3deg) translateY(-14px); }
    }
    .doc-card img {
      width: 100%; height: 440px;
      object-fit: cover; object-position: top center;
    }
    .doc-tag {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: #fff;
      padding: 18px 22px;
    }
    .doc-tag h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem; font-weight: 700; margin-bottom: 4px;
    }
    .doc-tag p { font-size: 0.8rem; opacity: 0.85; font-weight: 500; }
    .pill {
      display: inline-block;
      background: var(--primary-fixed); color: var(--primary-dark);
      border-radius: 100px; padding: 4px 13px;
      font-size: 0.72rem; font-weight: 700;
      margin: 4px 3px 0 0;
    }

    /* ABOUT SECTION */
    .about-sec {
      padding: 80px 0;
      background: var(--surface-container-lowest);
    }
    .eyebrow {
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--primary); margin-bottom: 10px;
    }
    .sec-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3.5vw, 2.3rem);
      font-weight: 700; color: var(--on-surface);
      line-height: 1.28; margin-bottom: 18px;
    }
    .accent-bar {
      width: 50px; height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--tertiary-container));
      border-radius: 2px; margin-bottom: 26px;
    }
    .body-p {
      font-size: 0.96rem;
      color: var(--on-surface-variant);
      line-height: 1.88; margin-bottom: 16px;
    }

    /* HIGHLIGHT CARDS */
    .hl-card {
      background: var(--surface-container-low);
      border: 1px solid var(--outline-variant);
      border-radius: 18px;
      padding: 28px 24px;
      height: 100%;
      position: relative; overflow: hidden;
      transition: transform 0.35s, box-shadow 0.35s, background 0.3s;
    }
    .hl-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--tertiary-container));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.35s;
    }
    .hl-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 48px rgba(0,70,144,0.14);
      background: var(--surface-container-lowest);
    }
    .hl-card:hover::before { transform: scaleX(1); }
    .hl-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
    .hl-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 700;
      color: var(--on-surface); margin-bottom: 10px;
    }
    .hl-desc {
      font-size: 0.875rem;
      color: var(--on-surface-variant);
      line-height: 1.75;
    }

    /* ASSOCIATIONS */
    .assoc-sec {
      padding: 70px 0;
      background: var(--surface);
    }
    .assoc-card {
      background: var(--surface-container-lowest);
      border: 1px solid var(--outline-variant);
      border-radius: 18px;
      padding: 30px 26px;
      text-align: center;
      height: 100%;
      box-shadow: 0 4px 16px rgba(0,70,144,0.08), 0 1px 3px rgba(0,0,0,0.05);
      transition: transform 0.35s, box-shadow 0.35s;
    }
    .assoc-card:hover {
      transform: translateY(-10px) rotateX(4deg);
      box-shadow: 0 22px 52px rgba(0,70,144,0.18);
    }
    .assoc-icon {
      width: 58px; height: 58px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      font-size: 1.55rem;
      box-shadow: 0 6px 18px rgba(0,70,144,0.28);
    }
    .assoc-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 700;
      color: var(--on-surface); margin-bottom: 8px;
    }
    .assoc-role {
      font-size: 0.82rem;
      color: var(--primary); font-weight: 600; margin-bottom: 10px;
    }
    .assoc-desc {
      font-size: 0.83rem;
      color: var(--on-surface-variant); line-height: 1.7;
    }

    /* SPECIALIZATIONS */
    .spec-sec {
      padding: 70px 0;
      background: var(--surface-container-lowest);
    }
    .spec-card {
      background: var(--surface-container-low);
      border: 1px solid var(--outline-variant);
      border-radius: 18px;
      padding: 28px 22px;
      height: 100%;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .spec-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 18px 44px rgba(0,70,144,0.14);
      background: var(--surface-container-lowest);
    }
    .spec-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1; margin-bottom: 10px;
    }
    .spec-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 700;
      color: var(--on-surface); margin-bottom: 8px;
    }
    .spec-desc { font-size: 0.86rem; color: var(--on-surface-variant); line-height: 1.72; }

    /* ACADEMIC */
    .acad-sec {
      padding: 70px 0;
      background: var(--surface);
    }
    .tl-item {
      display: flex; gap: 20px;
      margin-bottom: 38px;
      opacity: 0;
      animation: slideIn 0.6s ease forwards;
    }
    .tl-item:nth-child(1) { animation-delay: 0.1s; }
    .tl-item:nth-child(2) { animation-delay: 0.25s; }
    .tl-item:nth-child(3) { animation-delay: 0.4s; }
    @keyframes slideIn {
      from { opacity:0; transform:translateX(-22px); }
      to   { opacity:1; transform:translateX(0); }
    }
    .tl-dot {
      flex-shrink: 0;
      width: 50px; height: 50px; border-radius: 14px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: #fff;
      box-shadow: 0 4px 14px rgba(0,70,144,0.3);
      position: relative;
    }
    .tl-dot::after {
      content: '';
      position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
      width: 2px; height: 26px; background: var(--outline-variant);
    }
    .tl-item:last-child .tl-dot::after { display: none; }
    .tl-body h5 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 700;
      color: var(--on-surface); margin-bottom: 5px;
    }
    .tl-body p {
      font-size: 0.875rem; color: var(--on-surface-variant); line-height: 1.7;
    }

    /* QUOTE */
    .quote-sec {
      padding: 70px 0;
      background: var(--surface-container-lowest);
    }
    .quote-box {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
      border-radius: 24px;
      padding: 56px 48px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0,70,144,0.24);
    }
    .quote-box::before {
      content: '\201C';
      position: absolute; top: -20px; left: 24px;
      font-family: 'Playfair Display', serif;
      font-size: 14rem; font-weight: 900;
      color: rgba(255,255,255,0.07); line-height: 1;
      pointer-events: none;
    }
    .quote-text {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.25rem, 2.8vw, 1.7rem);
      font-weight: 700; color: #fff;
      line-height: 1.55; margin-bottom: 28px;
      position: relative;
    }
    .quote-author { color: var(--tertiary-fixed); font-weight: 600; font-size: 0.95rem; }
    .quote-role { color: rgba(255,255,255,0.65); font-size: 0.82rem; }

    /* CTA */
    .cta-sec {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
      text-align: center; position: relative; overflow: hidden;
    }
    .cta-sec::before {
      content: '👁';
      position: absolute; font-size: 22rem; opacity: 0.04;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
      pointer-events: none; line-height: 1;
    }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 4vw, 2.7rem);
      color: #fff; font-weight: 900; margin-bottom: 14px;
    }
    .cta-sub {
      color: rgba(255,255,255,0.75); font-size: 0.98rem;
      max-width: 480px; margin: 0 auto 36px; line-height: 1.75;
    }
    .btn-outline-w {
      background: transparent; color: #fff;
      font-weight: 600; font-size: 0.92rem;
      padding: 12px 30px; border-radius: 100px;
      border: 2px solid rgba(255,255,255,0.5);
      text-decoration: none; display: inline-block;
      transition: all 0.25s;
    }
    .btn-outline-w:hover {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.85);
      color: #fff; transform: translateY(-3px);
    }

    @media (max-width: 767px) {
      .doc-card img { height: 320px; }
      .quote-box { padding: 36px 24px; }
      .hero { padding: 60px 0 56px; }
    }