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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f7fb;
  color: #0f172a;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* TOP TEXT */
.top-text {
  text-align: center;
  font-size: 0.9rem;
  padding: 6px 12px;
  background: #fff;
  font-weight: 700;
  text-shadow: 0 1px 0 #e5e7eb;
}

/* EMERGENCY STRIP */
.emergency-strip {
  display: flex;
  justify-content: center;
  padding: 10px 16px 14px;
  background: #ffe4e6;
}

.emergency-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 999px;
  background: #fb2550;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
  border: 2px solid #fecaca;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.9);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
  }
}

/* HEADER / NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #041520;
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.5);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #e0f2fe, #22c1c3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.7);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* NAV */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
}

.main-nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-bottom-color: #22c55e;
}

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  width: 38px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #022c22;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  position: absolute;
  width: 18px;
  height: 2px;
  background: #f9fafb;
  border-radius: 999px;
  content: "";
}

.nav-toggle span::before {
  top: -5px;
}
.nav-toggle span::after {
  top: 5px;
}

/* HERO */
.hero-card {
  max-width: 1100px;
  margin: 18px auto 0;
  background: radial-gradient(circle at 20% 0%, #22c1c3, #0f766e 45%, #022c22 90%);
  border-radius: 24px;
  color: #ecfdf5;
  padding: 24px 16px 32px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.7);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 24px;
  align-items: center;
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding: 6px;
  background: radial-gradient(circle at 10% 0%, #fef9c3, #f97316);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.hero-text {
  padding-inline: 12px;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 4px;
}

.hero-subtitle {
  font-size: 1.4rem;
  text-align: center;
  color: #bbf7d0;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-description {
  font-size: 0.98rem;
  text-align: justify;
  margin-bottom: 12px;
}

.hero-points {
  list-style: none;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.hero-points li {
  margin-bottom: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #16a34a;
  color: #f9fafb;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.6);
}

.btn-outline {
  background: transparent;
  color: #ecfdf5;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.btn-primary:hover {
  background: #15803d;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.3);
}

/* STATS STRIP */
.stats {
  max-width: 1100px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 18px;
  padding: 14px 10px;
  color: #eff6ff;
  text-align: center;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.6);
}

.stat-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
}

.stat-label {
  font-size: 0.8rem;
}

/* GENERIC CARD */
.card {
  max-width: 1100px;
  margin: 18px auto 0;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 16px 22px;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.35);
}

.section-title {
  text-align: center;
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.section-text {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* SERVICE LIST */
.service-list {
  list-style: none;
  font-size: 0.95rem;
  max-width: 780px;
  margin: 0 auto;
}

.service-list li {
  margin-bottom: 4px;
}

/* CHECKUP GRID */
.checkup-section {
  /* already card class ke saath padding/margin le raha hai */
}

.checkup-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.checkup-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.checkup-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}

.checkup-card h3 {
  font-size: 0.98rem;
  margin: 4px 0 6px;
}

.checkup-card p {
  font-size: 0.8rem;
}

/* CONTACT */
.contact-card .contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 18px;
  align-items: flex-start;
}

.contact-info .section-text {
  text-align: left;
}

.contact-info a {
  color: #2563eb;
  text-decoration: none;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 4px;
  padding: 7px 8px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 0.9rem;
}

.contact-form textarea {
  resize: vertical;
}

.full-width {
  width: 100%;
  margin-top: 4px;
}

.small-note {
  font-size: 0.76rem;
  color: #64748b;
  margin-top: 4px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  background: #f9fafb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(148, 163, 184, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  font-size: 0.8rem;
  padding: 6px 8px 8px;
}

/* MAP */
.map-wrapper {
  margin-top: 10px;
}

/* FOOTER */
.site-footer {
  margin-top: 18px;
  padding: 14px 16px 22px;
  background: #000000;
  color: #ffffff;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 6px;
}

.footer-links a {
  color: #f9fafb;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-copy {
  font-size: 0.78rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    padding-inline: 0;
  }

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

  .contact-card .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .header-inner {
    padding-inline: 12px;
  }

  .main-nav {
    position: absolute;
    inset: 56px 12px auto 12px;
    background: #020617;
    border-radius: 16px;
    padding: 10px 12px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.9);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav.nav-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-card {
    margin-inline: 8px;
  }

  .stats,
  .card {
    margin-inline: 8px;
  }

  .hero-photo {
    width: 190px;
    height: 190px;
  }

  .hero-photo img {
    object-fit: cover;
    object-position: 50% 20%;
  }
}
