/* Color Palette: Child-Friendly Pastel Colors */
:root {
  --pastel-pink: #FFF0F5;      /* Lavender Blush / Soft Pink */
  --pastel-green: #E8F8F5;     /* Mint/Light Green */
  --soft-yellow: #FFF9E6;      /* Creamy Warm Yellow */
  --sky-blue: #EBF5FB;         /* Soft Sky Blue */
  --primary-pink: #FF6B8B;     /* Vibrant Friendly Pink */
  --primary-blue: #00A8E8;     /* Playful Sky Blue */
  --text-dark: #2C3E50;        /* Readable Soft Charcoal */
  --text-muted: #607D8B;
}

* { margin:0; padding:0; box-sizing:border-box; font-family: 'Poppins', sans-serif; }
body { 
  color: var(--text-dark); 
  line-height: 1.6; 
  background-color: var(--pastel-green);
  /* Playful Background Graphics: Grass & Soft Clouds */
  background-image: radial-gradient(#d2f5e3 1.5px, transparent 1.5px), radial-gradient(#d2f5e3 1.5px, #e8f8f5 1.5px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}
a { text-decoration: none; }

.container { width: 90%; max-width: 1200px; margin: auto; }
.section-padding { padding: 75px 0; position: relative; }

/* Background Theme Colors */
.bg-pink { 
  background-color: var(--pastel-pink) !important;
  border-top: 5px dashed var(--primary-pink);
  border-bottom: 5px dashed var(--primary-pink);
}
.bg-green { 
  background-color: var(--pastel-green) !important; 
}
.bg-yellow { 
  background-color: var(--soft-yellow) !important; 
}
.bg-sky { 
  background-color: var(--sky-blue) !important; 
}

.text-center { text-align: center; }
.mt-4 { margin-top: 25px; }

/* Top Contact Bar */
.top-bar { 
  background: linear-gradient(90deg, #FF9A9E 0%, #FECFEF 99%, #FECFEF 100%); 
  color: #2C3E50; 
  font-size: 13px; 
  padding: 10px 0; 
  font-weight: 600;
}
.top-bar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar a { color: #2C3E50; }
.top-badges .badge { background: var(--primary-blue); color:#fff; padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.top-badges .badge-pink { background: var(--primary-pink); }

/* Navigation Header */
.header { background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.06); position: sticky; top:0; z-index: 1000; border-bottom: 3px solid #00A8E8; }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.logo-container { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 55px; border-radius: 10px; }
.logo-text h1 { color: var(--primary-blue); font-size: 22px; font-weight: 700; line-height: 1; }
.logo-text small { color: var(--primary-pink); font-size: 12px; font-weight: 600; display: block; margin-top: 3px; }

.nav-menu { display: flex; align-items: center; gap: 20px; }
.nav-menu a { color: var(--text-dark); font-weight: 600; font-size: 14px; transition: 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary-pink); }
.btn-nav-book { background: var(--primary-pink); color: #fff !important; padding: 9px 20px; border-radius: 25px; font-weight: 600; box-shadow: 0 4px 10px rgba(255,107,139,0.3); }
.hamburger { display: none; font-size: 22px; cursor: pointer; color: var(--text-dark); }

/* Hero Section with Playful Overlay */
.hero-section { position: relative; height: 82vh; min-height: 520px; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero-bg-video { position: absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; z-index: 1; }
.hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(135deg, rgba(0, 168, 232, 0.65), rgba(255, 107, 139, 0.65)); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 720px; }
.hero-subtitle { background: #FFD166; color: #2C3E50; padding: 6px 18px; border-radius: 20px; font-size: 13px; font-weight: 700; display: inline-block; margin-bottom: 15px; }
.hero-content h2 { font-size: 44px; font-weight: 700; line-height: 1.2; margin-bottom: 15px; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.hero-content p { font-size: 17px; color: #ffffff; margin-bottom: 20px; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

/* Buttons */
.btn { padding: 12px 28px; border-radius: 30px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; border:none; cursor: pointer; transition: 0.3s; }
.btn-primary { background: var(--primary-blue); color: #fff; box-shadow: 0 4px 12px rgba(0,168,232,0.3); }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
.btn-google { background: #4285F4; color: #fff; }
.btn-pink { background: var(--primary-pink); color: #fff; box-shadow: 0 4px 12px rgba(255,107,139,0.3); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* Colorful Stats Banner */
.stats-banner { background: linear-gradient(90deg, #A8EDEA 0%, #FED6E3 100%); color: var(--text-dark); padding: 35px 0; border-bottom: 4px solid #FFD166; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); text-align: center; gap: 20px; }
.stat-item i { font-size: 36px; margin-bottom: 10px; color: var(--primary-pink); }
.stat-item h3 { font-size: 25px; font-weight: 700; color: var(--text-dark); }

/* Section Titles */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; align-items: center; }
.section-title { text-align: center; margin-bottom: 45px; }
.section-title span { color: var(--primary-pink); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; display: block; margin-bottom: 5px; }
.section-title h2 { color: var(--text-dark); font-size: 32px; font-weight: 700; }

/* Child & Giraffe / Cute Graphics Badges */
.about-img-box { position: relative; }
.main-about-img { width: 100%; border-radius: 20px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); border: 5px solid #fff; }
.badge-img { position: absolute; bottom: -20px; right: -20px; width: 160px; border: 5px solid #fff; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.15); }
.check-list { list-style: none; margin-top: 18px; }
.check-list li { margin-bottom: 12px; font-weight: 600; color: #34495E; }
.check-list i { color: #2ECC71; margin-right: 10px; font-size: 18px; }

/* Doctor Profile Cards */
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 30px; }
.doctor-card { background: #fff; color: var(--text-dark); border-radius: 20px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.06); text-align: center; border: 3px solid #E2E8F0; }
.doc-img-box img { width: 100%; height: 280px; object-fit: cover; }
.doc-info { padding: 25px; }
.doc-info h3 { font-size: 20px; color: var(--text-dark); margin-bottom: 5px; }
.doc-info .spec { color: var(--primary-blue); font-weight: 700; display: block; margin-bottom: 12px; font-size: 14px; }
.doc-info .spec-pink { color: var(--primary-pink); }
.doc-info p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

/* Facilities Card */
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.facility-card { position: relative; height: 240px; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); border: 4px solid #fff; }
.facility-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.facility-card:hover img { transform: scale(1.08); }
.facility-overlay { position: absolute; bottom: 0; background: linear-gradient(transparent, rgba(44, 62, 80, 0.9)); color: #fff; width: 100%; padding: 20px; }
.facility-overlay h3 { font-size: 16px; font-weight: 600; }
.facility-overlay p { font-size: 12px; color: #FFEAA7; }

/* Patient Tracker Box */
.tracker-box { 
  background: #ffffff; 
  padding: 40px; 
  border-radius: 25px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
  max-width: 800px; 
  margin: auto; 
  border: 4px dashed var(--primary-blue);
}
.tracker-form { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.tracker-form input { flex: 1; min-width: 260px; padding: 12px 20px; border: 2px solid #E2E8F0; border-radius: 30px; outline: none; font-size: 14px; }
.tracker-form input:focus { border-color: var(--primary-blue); }
.track-card-empty { background: #FFF9E6; border-left: 5px solid #FFD166; padding: 15px; border-radius: 12px; color: #7F6000; font-size: 14px; }

/* Reviews Cards */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.review-card { background: #fff; padding: 25px; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-top: 5px solid var(--primary-pink); }
.review-card .stars { color: #FFC107; font-size: 18px; margin-bottom: 12px; }
.review-card p { font-size: 13px; color: var(--text-muted); font-style: italic; margin-bottom: 15px; }
.review-card h4 { font-size: 14px; color: var(--text-dark); font-weight: 700; }

/* Appointment Form */
.appointment-form-box { 
  background: #ffffff; 
  color: var(--text-dark); 
  padding: 35px; 
  border-radius: 25px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
  border: 4px solid var(--pastel-pink);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 13px; color: var(--text-dark); }
.form-group input, .form-group select { width: 100%; padding: 11px; border: 2px solid #E2E8F0; border-radius: 10px; outline: none; font-size: 14px; }
.form-row { display: flex; gap: 15px; }
.direct-contact p { margin-top: 15px; font-size: 15px; font-weight: 500; }

/* Footer */
.footer { background: #2C3E50; color: #fff; padding-top: 50px; border-top: 6px solid var(--primary-pink); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 35px; padding-bottom: 40px; }
.footer-col h3, .footer-col h4 { margin-bottom: 18px; color: #FFD166; font-weight: 700; }
.footer-col p { font-size: 14px; color: #BDC3C7; margin-bottom: 8px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #BDC3C7; font-size: 14px; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--primary-pink); }
.footer-bottom { background: #1A252F; text-align: center; padding: 18px; font-size: 13px; color: #7F8C8D; }

/* Mobile Responsive */
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .hamburger { display: block; }
  .nav-menu { display: none; flex-direction: column; width: 100%; background: #fff; padding: 20px; position: absolute; top: 100%; left: 0; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
  .nav-menu.active { display: flex; }
  .hero-content h2 { font-size: 30px; }
  .form-row { flex-direction: column; }
}

/* ==========================================
   Gallery Page Stylesheet
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-img-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img-box img {
  transform: scale(1.06);
}

.gallery-info {
  padding: 15px;
  text-align: center;
}

.gallery-info h3 {
  font-size: 16px;
  color: #2C3E50;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-info p {
  font-size: 12px;
  color: #607D8B;
  line-height: 1.4;
}

/* Lightbox Modal Overlay */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(5px);
}

/* Modal Content Image */
.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

/* Caption Text Below Image */
.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ffffff;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 600;
}

/* Close Button (X) */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: #FF6B8B;
}

/* Cursor Pointer for Gallery Cards */
.gallery-card {
  cursor: pointer;
}
/* Sadguru Hospital Heading Styling */
.logo-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.logo-title-hi {
  font-size: 28px;
  font-weight: 700;
  color: #27AE60; /* एम्बुलेंस / हेल्थकेयर ग्रीन टोन */
  line-height: 1.2;
}

.logo-title-en {
  font-size: 16px;
  font-weight: 600;
  color: #1A365D;
  margin-top: 2px;
}
/* Combined Services & Facilities Grid */
.mb-5 { margin-bottom: 40px !important; }
.mt-5 { margin-top: 40px !important; }

.services-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-dept-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 2px solid #E2E8F0;
  transition: transform 0.3s ease;
}

.service-dept-card:hover {
  transform: translateY(-5px);
}

.dept-header {
  padding: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dept-dental {
  background: linear-gradient(135deg, #FF6B8B 0%, #FF8E9E 100%);
}

.dept-peds {
  background: linear-gradient(135deg, #00A8E8 0%, #00C6FF 100%);
}

.dept-header i { font-size: 28px; }
.dept-header h3 { font-size: 20px; font-weight: 700; margin: 0; }

.dept-list {
  list-style: none;
  padding: 20px 25px;
}

.dept-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #E2E8F0;
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dept-list li:last-child {
  border-bottom: none;
}

.dept-list i {
  color: #2ECC71;
  font-size: 16px;
}


/* ==========================================
   DOCTORS PAGE STYLES (MATCHING PASTEL THEME)
   ========================================== */

.doctors-header {
  background: linear-gradient(90deg, #FF9A9E 0%, #FECFEF 100%);
  color: #2C3E50;
  padding: 40px 20px 70px;
  text-align: center;
  position: relative;
  border-bottom: 4px solid #FFD166;
}

.doctors-header h1 {
  font-size: 32px;
  margin: 0 0 8px;
  font-weight: 700;
  color: #2C3E50;
}

.doctors-header p {
  font-size: 15px;
  color: #555555;
  margin: 0 0 20px;
}

.back-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-blue);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 168, 232, 0.3);
  transition: all 0.2s ease;
}

.back-nav-btn:hover {
  background: var(--primary-pink);
  color: #ffffff;
}

.doctors-profile-container {
  max-width: 1000px;
  margin: -40px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.dr-detail-card {
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 4px solid var(--pastel-pink);
  padding: 35px;
}

.dr-top-section {
  display: flex;
  gap: 30px;
  align-items: center;
  border-bottom: 2px dashed #E2E8F0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.dr-avatar {
  width: 150px;
  height: 185px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.dr-basic-info h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin: 0 0 6px;
  font-weight: 700;
}

.dr-tag {
  display: inline-block;
  background: var(--pastel-pink);
  color: var(--primary-pink);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.dr-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14.5px;
  color: var(--text-muted);
}

.dr-highlights li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dr-highlights li i {
  color: var(--primary-blue);
  font-size: 15px;
  width: 18px;
}

.dr-grid-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.dr-section-box {
  border-radius: 18px;
  padding: 24px;
}

.dr-section-box.box-yellow {
  background: var(--soft-yellow);
  border: 2px solid #FFEAA7;
}

.dr-section-box.box-green {
  background: var(--pastel-green);
  border: 2px solid #A3E4D7;
}

.dr-section-box.box-pink {
  background: var(--pastel-pink);
  border: 2px solid #FADBD8;
}

.dr-section-box h3 {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  border-bottom: 2px dashed #E2E8F0;
  padding-bottom: 8px;
}

.dr-section-box h3 i {
  color: var(--primary-pink);
}

.dr-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--text-dark);
}

.dr-detail-list li {
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dr-detail-list li i.fa-check {
  color: #2ECC71;
  margin-top: 4px;
  font-size: 14px;
  flex-shrink: 0;
}

.dr-detail-list .star-icon {
  color: #F39C12;
}

.action-btn-wrapper {
  margin-top: 35px;
  text-align: center;
}

.whatsapp-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-booking-btn:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
}

.doctors-footer {
  background: #2C3E50;
  color: #ffffff;
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
}

.doctors-footer p {
  margin: 0;
}