/* ==========================================================================
   Netra Dham Hospital - Modern Clinical CSS Design System
   Color Tokens, Glassmorphism, Floating Booking Form & Components
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-navy: #0a2540;
  --primary-navy-light: #16385c;
  --medical-teal: #00d4b2;
  --medical-teal-dark: #00b396;
  --accent-blue: #0284c7;
  --accent-red: #e63946;
  --bg-light: #f8fafc;
  --card-bg: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.05);
  --shadow-md: 0 10px 30px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 20px 40px rgba(10, 37, 64, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ==========================================================================
   1. TOP EMERGENCY BAR & HEADER
   ========================================================================== */

.top-bar {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-info i {
  color: var(--medical-teal);
}

.emergency-tag {
  background-color: var(--accent-red);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(230, 57, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

.main-header {
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

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

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-navy), var(--medical-teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 212, 178, 0.3);
}

.logo-text h1 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--medical-teal-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--medical-teal-dark);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--medical-teal);
  border-radius: 2px;
}

.btn-header {
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(10, 37, 64, 0.2);
}

.btn-header:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--medical-teal-dark), var(--primary-navy));
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* ==========================================================================
   2. HERO SLIDER SECTION
   ========================================================================== */

.hero-slider {
  position: relative;
  background: linear-gradient(135deg, #0a2540 0%, #07192c 100%);
  color: #ffffff;
  padding: 80px 0 130px 0;
  overflow: hidden;
}

.hero-slider::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 212, 178, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 212, 178, 0.15);
  border: 1px solid rgba(0, 212, 178, 0.3);
  color: var(--medical-teal);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-content h2 span {
  color: var(--medical-teal);
}

.hero-content p {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 30px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--medical-teal), var(--medical-teal-dark));
  color: var(--primary-navy);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 212, 178, 0.3);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 212, 178, 0.4);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.hero-image-wrap {
  position: relative;
  text-align: center;
}

.hero-image-wrap img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-stats-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: rgba(10, 37, 64, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 178, 0.3);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-stats-badge i {
  font-size: 2rem;
  color: var(--medical-teal);
}

.hero-stats-badge h4 {
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-stats-badge p {
  font-size: 0.8rem;
  color: #cbd5e1;
  margin: 0;
}

/* ==========================================================================
   3. FLOATING QUICK APPOINTMENT FORM SECTION
   ========================================================================== */

.quick-booking-container {
  margin-top: -70px;
  position: relative;
  z-index: 90;
  margin-bottom: 60px;
}

.booking-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 35px 40px;
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.15);
  border: 1px solid var(--border-light);
}

.booking-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.booking-card-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-card-header h3 i {
  color: var(--medical-teal-dark);
}

.booking-card-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.quick-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 180px;
  gap: 16px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background-color: #f8fafc;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--medical-teal);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 212, 178, 0.2);
}

.btn-block {
  width: 100%;
  height: 48px;
  justify-content: center;
}

#booking-alert {
  margin-top: 15px;
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
}

.alert-success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-danger {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ==========================================================================
   4. SECTION HEADINGS & COMMON STYLES
   ========================================================================== */

.section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  color: var(--medical-teal-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  letter-spacing: -0.5px;
}

/* ==========================================================================
   5. SERVICES & SPECIALIZATIONS
   ========================================================================== */

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

.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  top: 0;
}

.service-card:hover {
  top: -8px;
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 212, 178, 0.4);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 212, 178, 0.1);
  color: var(--medical-teal-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-link {
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link i {
  color: var(--medical-teal-dark);
  transition: var(--transition);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ==========================================================================
   6. ABOUT US & ACHIEVEMENTS COUNTER
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-navy);
  color: #ffffff;
  padding: 24px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--medical-teal);
}

.experience-badge h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--medical-teal);
  line-height: 1;
}

.experience-badge p {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
}

.about-content h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--border-light);
}

.achievement-box h4 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--medical-teal-dark);
}

.achievement-box p {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0;
}

/* ==========================================================================
   7. DOCTOR PROFILES / OUR TEAM
   ========================================================================== */

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

.doctor-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.doctor-img-wrap {
  height: 260px;
  background: linear-gradient(135deg, #0a2540, #16385c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 4rem;
  position: relative;
}

.doctor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-info {
  padding: 24px;
}

.doctor-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.doctor-qual {
  color: var(--medical-teal-dark);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.doctor-spec {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 15px;
}

.doctor-opd {
  background-color: #f1f5f9;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.doctor-opd i {
  color: var(--primary-navy);
}

/* ==========================================================================
   8. TESTIMONIALS & REVIEWS
   ========================================================================== */

.testimonials-section {
  background-color: #f1f5f9;
}

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

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 0.98rem;
  font-style: italic;
  margin-bottom: 20px;
}

.patient-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.patient-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   9. HOW TO REACH US (BHILWARA LOCATION)
   ========================================================================== */

.reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.reach-info-card {
  background: #ffffff;
  padding: 35px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.reach-item {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
}

.reach-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(10, 37, 64, 0.08);
  color: var(--primary-navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.reach-details h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.reach-details p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.map-container iframe {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: none;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */

.footer {
  background-color: var(--primary-navy);
  color: #cbd5e1;
  padding: 70px 0 25px 0;
  border-top: 3px solid var(--medical-teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--medical-teal);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.footer-contact i {
  color: var(--medical-teal);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-social-wrap {
  margin-top: 20px;
}

.footer-social-wrap h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--medical-teal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--medical-teal);
  color: var(--primary-navy);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 212, 178, 0.4);
}

.footer-social-link.fb:hover {
  background: #1877F2;
  color: #ffffff;
}

.footer-social-link.ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
  color: #ffffff;
}

.footer-social-link.yt:hover {
  background: #FF0000;
  color: #ffffff;
}

.footer-social-link.wa:hover {
  background: #25D366;
  color: #ffffff;
}


/* Doctor Profile Card (About Page) */
.doctor-profile-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 40px;
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: center;
}

.doctor-photo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #ffffff;
  background: #0a2540;
}

.doctor-photo-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.doctor-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.95), transparent);
  padding: 20px 15px;
  color: #fff;
  text-align: center;
}

.doctor-photo-overlay h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.doctor-photo-overlay span {
  color: var(--medical-teal);
  font-size: 0.88rem;
  font-weight: 700;
}

.doctor-badge {
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 15px;
}

.doctor-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.doctor-credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.credential-box {
  background: #f1f5f9;
  padding: 12px 16px;
  border-radius: 10px;
}

.credential-label {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
}

.credential-value {
  font-weight: 700;
  color: #0a2540;
  font-size: 0.95rem;
}

/* ==========================================================================
   11. RESPONSIVE BREAKPOINTS (Mobile & Tablet Optimization)
   ========================================================================== */

@media (max-width: 992px) {
  .hero-grid, .about-grid, .reach-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .doctor-profile-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 24px;
  }

  .doctor-photo-wrap img {
    height: 320px;
  }

  .quick-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 25px;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .btn-header {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .top-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 0.8rem;
  }

  .pr-highlight-grid,
  .gallery-grid-responsive {
    grid-template-columns: 1fr !important;
  }

  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .experience-badge {
    right: 10px;
    bottom: -15px;
    padding: 14px 20px;
  }

  .experience-badge h3 {
    font-size: 1.7rem;
  }

  .hero-content h2 {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section {
    padding: 45px 0;
  }
}

@media (max-width: 600px) {
  .doctor-profile-card {
    padding: 20px 15px;
    border-radius: 14px;
  }

  .doctor-photo-wrap img {
    height: 260px;
  }

  .doctor-heading {
    font-size: 1.35rem;
  }

  .doctor-credentials-grid {
    grid-template-columns: 1fr;
  }

  .doctor-consult-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-slider {
    padding: 40px 0 60px 0;
  }

  .hero-content h2 {
    font-size: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .quick-form-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-card {
    padding: 20px 16px;
  }

  .booking-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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


