:root {
  --navy: #0b2d6b;
  --navy-mid: #1a4a9e;
  --navy-dark: #071b45;
  --sky-bg: #eef4ff;
  --sky-line: #c8d9f5;
  --white: #ffffff;
  --teal: #00897b;
  --teal-light: #e0f2ef;
  --orange: #f5821f;
  --orange-light: #fff1e4;
  --slate: #314155;
  --muted: #6b7a8d;
  --line: #dde4ef;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(11,45,107,.06), 0 2px 8px rgba(11,45,107,.05);
  --shadow-md: 0 10px 28px rgba(11,45,107,.12);
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; cursor: pointer; }

.wrap {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}
section[id] { scroll-margin-top: 126px; }

.topbar {
  background: var(--navy-dark);
  color: #a8c0e8;
  font-size: 12.5px;
  padding: 7px 0;
}
.topbar .wrap,
.topbar-items,
.socials {
  display: flex;
  align-items: center;
}
.topbar .wrap { justify-content: space-between; gap: 20px; }
.topbar-items { gap: 22px; flex-wrap: wrap; }
.socials { gap: 8px; }
.socials a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #d6e5ff;
  font-size: 10px;
  font-weight: 800;
}
.socials a:hover { background: var(--orange); color: var(--white); }
.socials .social-wa {
  background: #25d366;
  color: var(--white);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(11,45,107,.06);
  backdrop-filter: blur(12px);
}
.site-nav .wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.brand-title {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
.brand-sub {
  font-size: 9.5px;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-strip {
  position: sticky;
  top: 68px;
  z-index: 99;
  padding: 7px 24px;
  border-bottom: 1px solid var(--line);
  background: #f7fbff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.blink-update {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  animation: blinkPulse 1.15s ease-in-out infinite;
}
@keyframes blinkPulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: .42; transform: translateY(-1px); }
}
.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 1px;
}
.nav-links a {
  display: inline-flex;
  padding: 6px 7px;
  border-radius: 7px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--sky-bg);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 11px 16px;
  box-shadow: 0 8px 20px rgba(245,130,31,.24);
}
.btn-primary:hover { background: #df7016; }
.btn-outline {
  border: 1.5px solid var(--line);
  color: var(--navy);
  background: transparent;
  padding: 9px 14px;
}
.btn-outline:hover { border-color: var(--navy); background: var(--sky-bg); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--sky-bg);
  color: var(--navy);
}
.menu-toggle svg,
.close-menu svg { width: 22px; height: 22px; }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--white);
}
.close-menu {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-radius: var(--radius-sm);
}
.mobile-nav a {
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-family: var(--font-display);
  font-size: 20px;
}

.hero {
  min-height: clamp(560px, calc(100vh - 154px), 760px);
  display: block;
  background: #edf5ff;
  overflow: hidden;
}
.hero-visual {
  position: relative;
  min-height: clamp(560px, calc(100vh - 154px), 760px);
  overflow: hidden;
  background: #edf5ff;
}
.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slider {
  z-index: 0;
}
.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0;
  transform: none;
  animation: heroSlide 15s infinite;
}
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}
.hero-dots span {
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(11,45,107,.25);
  animation: heroDot 15s infinite;
}
.hero-dots span:nth-child(2) { animation-delay: 5s; }
.hero-dots span:nth-child(3) { animation-delay: 10s; }

@keyframes heroSlide {
  0%, 30% { opacity: 1; }
  36%, 100% { opacity: 0; }
}

@keyframes heroDot {
  0%, 30% { background: var(--orange); }
  36%, 100% { background: rgba(11,45,107,.25); }
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #edf5ff;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
}

.about-hero {
  padding: 86px 0 72px;
  background:
    linear-gradient(135deg, rgba(237,245,255,.98), rgba(255,255,255,.92)),
    url('img/foundation-front.jpg') center/cover no-repeat;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: 52px;
  align-items: center;
}
.about-hero h1 {
  max-width: 760px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
}
.about-hero p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.7;
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.founder-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.founder-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.founder-card figcaption {
  padding: 24px;
}
.founder-card span,
.mission-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.founder-card strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 24px;
}
.founder-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 44px;
  align-items: start;
}
.about-story-grid h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.14;
}
.about-story-grid p {
  max-width: 820px;
  margin-bottom: 14px;
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.75;
}
.mission-panel {
  display: grid;
  gap: 14px;
}
.mission-panel article,
.impact-list-card,
.about-feature-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.mission-panel article {
  padding: 22px;
}
.mission-panel p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.about-feature-grid article {
  padding: 24px;
}
.about-feature-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}
.about-feature-grid span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}
.impact-list-card {
  padding: 28px;
}
.impact-list-card h3 {
  margin-bottom: 16px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 24px;
}
.impact-list-card ul {
  display: grid;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}
.impact-list-card li {
  position: relative;
  padding-left: 24px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
}
.impact-list-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
}

.about-home {
  background: var(--white);
}
.about-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 40px;
  align-items: center;
}
.about-home-copy h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.15;
}
.about-home-copy p {
  max-width: 820px;
  margin-bottom: 14px;
  color: var(--slate);
  font-size: 15.5px;
}
.about-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.about-home-panel {
  display: grid;
  gap: 14px;
}
.about-home-panel div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--sky-bg);
  box-shadow: var(--shadow-sm);
}
.about-home-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-home-panel p {
  color: var(--slate);
  font-size: 14px;
}

.stat-strip {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-stat {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 0 16px;
}
.strip-stat:last-child { border-right: 0; }
.strip-stat strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 31px;
  line-height: 1;
}
.strip-stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.section { padding: 76px 0; }
.section-sky { background: var(--sky-bg); }
.section-head {
  max-width: 660px;
  margin-bottom: 42px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.eyebrow {
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.section-head h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1.25;
}
.section-head p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
}
.ecg-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 0;
}
.section-head.center .ecg-divider { justify-content: center; }
.ecg-divider::before,
.ecg-divider::after {
  content: '';
  flex: 1;
  max-width: 190px;
  height: 1px;
  background: var(--line);
}
.ecg-divider svg { width: 54px; height: 16px; flex: none; }

.service-grid,
.doctor-grid,
.hospital-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-card,
.doctor-card,
.hospital-card,
.impact-card,
.govt-card,
.contact-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.service-card {
  padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover,
.doctor-card:hover,
.hospital-card:hover,
.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.service-icon,
.trust-icon,
.contact-icon,
.camp-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 11px;
  background: var(--sky-bg);
  color: var(--navy);
}
.service-icon svg,
.trust-icon svg,
.contact-icon svg,
.camp-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}
.service-card:nth-child(3n+2) .service-icon { background: var(--teal-light); color: var(--teal); }
.service-card:nth-child(3n) .service-icon { background: var(--orange-light); color: var(--orange); }
.service-photo {
  aspect-ratio: 16 / 10;
  margin: -6px -6px 16px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--sky-bg);
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.service-card h3,
.doctor-body h3,
.hospital-body h3 {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 15px;
}
.service-card p,
.doctor-body p,
.hospital-body p {
  color: var(--muted);
  font-size: 13px;
}

.doctor-grid { grid-template-columns: repeat(3, 1fr); }
.doctor-card {
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.doctor-photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, var(--sky-bg), var(--sky-line));
  overflow: hidden;
}
.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.doctor-photo-contain {
  background: #f7faff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doctor-photo-contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}
.doctor-body {
  padding: 18px 18px 20px;
  text-align: center;
}
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--sky-bg);
  color: var(--navy-mid);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 10px;
}
.doctor-body .tag { margin-bottom: 8px; }
.doctor-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 14px;
}
.doctor-actions .btn {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 12px;
}

.finder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  margin-top: 30px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.field label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 42px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--sky-bg);
  color: var(--navy);
  padding: 10px 12px;
  outline: none;
}
.field textarea {
  min-height: 96px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--navy-mid);
  background: var(--white);
}

.hospital-grid { grid-template-columns: repeat(5, 1fr); }
.hospital-card {
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.hospital-image {
  height: 150px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hospital-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hospital-body { padding: 14px; }
.hospital-title {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.hospital-title img {
  width: 54px;
  height: 34px;
  object-fit: contain;
  flex: none;
}
.hospital-title h3 { margin-bottom: 0; }
.hospital-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
}
.hospital-tags span {
  border-radius: 999px;
  background: var(--sky-bg);
  color: var(--navy-mid);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
}
.hospital-link {
  width: 100%;
  margin-top: 14px;
  min-height: 38px;
  font-size: 12px;
  border-color: var(--navy);
  color: var(--navy);
}

.pariwar-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pariwar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 34px;
  align-items: center;
}
.pariwar-copy h2 {
  max-width: 680px;
  margin-bottom: 14px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.16;
}
.pariwar-copy p {
  max-width: 640px;
  color: var(--slate);
  font-size: 15.5px;
}
.pariwar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.pariwar-card-details {
  display: grid;
  grid-template-columns: minmax(190px, .95fr) .85fr 1.1fr;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.pariwar-card-photo {
  min-height: 260px;
  background: var(--sky-bg);
  overflow: hidden;
}
.pariwar-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.pariwar-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: var(--navy);
  color: var(--white);
}
.pariwar-price span,
.pariwar-price small {
  color: #a8c0e8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pariwar-price strong {
  margin: 10px 0;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
}
.pariwar-benefits {
  display: grid;
}
.pariwar-benefits div {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.pariwar-benefits div:last-child { border-bottom: 0; }
.pariwar-scan {
  background:
    linear-gradient(90deg, rgba(13,148,136,.08), rgba(242,160,30,.1)),
    var(--white);
}
.pariwar-scan::before {
  content: '';
  width: 42px;
  height: 42px;
  display: block;
  margin-bottom: 10px;
  border: 2px solid var(--navy);
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--navy) 8px, transparent 8px 14px, var(--navy) 14px 22px, transparent 22px),
    linear-gradient(var(--navy) 8px, transparent 8px 14px, var(--navy) 14px 22px, transparent 22px);
  background-size: 22px 22px;
  background-color: var(--white);
}
.pariwar-benefits strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}
.pariwar-benefits span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12.5px;
}
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--sky-bg);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.trust-item {
  min-height: 96px;
  padding: 5px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-icon { margin: 0 auto 8px; width: 40px; height: 40px; }
.trust-item h3 {
  color: var(--navy);
  font-size: 13px;
}
.trust-item p {
  color: var(--muted);
  font-size: 11.5px;
}

.camp-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 52px;
  align-items: start;
}
.camp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.camp-service {
  min-height: 108px;
  padding: 13px 10px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.camp-icon { margin: 0 auto 8px; width: 42px; height: 42px; }
.camp-service p {
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.check-list li,
.govt-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--slate);
  font-size: 13px;
}
.check-list li::before,
.govt-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  flex: none;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.impact-card {
  padding: 20px;
  text-align: center;
}
.impact-card strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}
.impact-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}
.note-card {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid #b2dfdb;
  border-radius: var(--radius-md);
  background: var(--teal-light);
}
.note-card h3 {
  margin-bottom: 9px;
  color: var(--teal);
  font-size: 13.5px;
}

.govt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.govt-card { overflow: hidden; }
.govt-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 24px;
  color: var(--white);
  background: var(--navy);
}
.govt-card:nth-child(2) .govt-head { background: var(--teal); }
.govt-num {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  font-weight: 800;
}
.govt-head h3 {
  color: var(--white);
  font-size: 17px;
  line-height: 1.25;
}
.govt-head p {
  color: rgba(255,255,255,.74);
  font-size: 12px;
}
.govt-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--sky-bg);
  border-bottom: 1px solid var(--line);
}
.govt-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.govt-body { padding: 24px; }
.govt-body > p {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 18px;
}
.govt-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.govt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.govt-stat {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 0 8px;
}
.govt-stat:last-child { border-right: 0; }
.govt-stat strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
}
.govt-stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.gallery-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.gallery-filters button {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--slate);
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 16px;
}
.gallery-filters button.active,
.gallery-filters button:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-card {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--sky-bg);
  transition: transform .18s ease, box-shadow .18s ease;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  image-rendering: auto;
}
.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 30px 10px 10px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(7,27,69,.86));
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-card { padding: 18px; }
.contact-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.contact-card h3 {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.contact-card strong {
  display: block;
  color: var(--navy);
  font-size: 13.5px;
  line-height: 1.4;
}
.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 11.5px;
}
.map-card {
  min-height: 150px;
  display: grid;
  place-items: center;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--sky-bg);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}
.form-card { padding: 30px; }
.form-card h3 {
  margin-bottom: 20px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-card .field { margin-bottom: 14px; }
.form-status {
  min-height: 22px;
  margin-top: 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}
.form-status.error { color: #b42318; }

.cta-band {
  padding: 48px 0;
  background: var(--navy);
  color: var(--white);
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-band h2 {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 27px;
}
.cta-band p {
  color: #a8c0e8;
  font-size: 14px;
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 12px 18px;
}
.cta-band .btn-outline { border-color: rgba(255,255,255,.32); color: var(--white); }

.whatsapp-bot {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 180;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37,211,102,.32);
}
.whatsapp-bot span {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.whatsapp-bot svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}
.whatsapp-bot:hover {
  transform: translateY(-2px);
  background: #1fb85a;
}

.site-footer {
  background: var(--navy-dark);
  color: #a8c0e8;
  padding: 52px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}
.footer-brand span {
  color: #7ba3c8;
  font-size: 10px;
}
.footer-desc {
  max-width: 320px;
  color: #7ba3c8;
  font-size: 13px;
}
.footer-col h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-col a,
.footer-col li {
  display: block;
  margin-bottom: 9px;
  color: #a8c0e8;
  font-size: 12.5px;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(168,192,232,.6);
  font-size: 11.5px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1280px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .site-nav .wrap { justify-content: space-between; }
}

@media (max-width: 1120px) {
  .hospital-grid,
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .wrap { width: min(100% - 32px, 1200px); }
  section[id] { scroll-margin-top: 92px; }
  .service-strip { top: 68px; }
  .hero {
    min-height: auto;
  }
  .hero-visual {
    min-height: 360px;
  }
  .about-home-grid,
  .about-hero-grid,
  .about-story-grid,
  .pariwar-grid,
  .service-grid,
  .doctor-grid,
  .govt-grid,
  .camp-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .trust-grid,
  .stat-strip .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item,
  .strip-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px;
  }
  .trust-item:nth-last-child(-n+1),
  .strip-stat:nth-last-child(-n+2) { border-bottom: 0; }
  .finder {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-hero {
    padding: 62px 0 56px;
  }
  .about-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .brand-title { font-size: 13px; }
  .brand img { width: 38px; height: 38px; }
  .service-strip {
    top: 68px;
    padding: 6px 16px;
    font-size: 10.5px;
  }
  .nav-actions .btn-outline { display: none; }
  .nav-actions .btn-primary { display: none; }
  .hero-visual {
    min-height: 270px;
  }
  .pariwar-card-details,
  .camp-grid,
  .hospital-grid,
  .about-feature-grid,
  .contact-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card { aspect-ratio: 4 / 3; }
  .hero-dots {
    bottom: 14px;
  }
  .hero-dots span {
    width: 28px;
  }
  .pariwar-copy h2 { font-size: 29px; }
  .pariwar-price {
    min-height: 190px;
  }
  .pariwar-price strong {
    font-size: 46px;
  }
  .whatsapp-bot {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .about-home-copy h2 { font-size: 29px; }
  .section { padding: 58px 0; }
  .section-head h2 { font-size: 27px; }
  .about-hero {
    padding: 46px 0 42px;
  }
  .about-hero h1 {
    font-size: 34px;
  }
  .about-hero p {
    font-size: 15.5px;
  }
  .founder-card figcaption,
  .impact-list-card,
  .about-feature-grid article {
    padding: 20px;
  }
  .check-list,
  .govt-list,
  .govt-stats,
  .impact-grid { grid-template-columns: 1fr; }
  .cta-band .wrap,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
