/* ==========================================================================
   VASHU HOSPITAL - PREMIUM MODERN MEDICAL STYLESHEET
   Laser & Laparoscopic Center | Urology & ENT Care Patna
   ========================================================================== */

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

:root {
  --primary-navy: #092c4c;
  --primary-dark: #061c31;
  --primary-blue: #0284c7;
  --primary-cyan: #06b6d4;
  --accent-teal: #0d9488;
  --accent-emerald: #10b981;
  --accent-gold: #f59e0b;
  --accent-red: #ef4444;
  --accent-rose: #be185d;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --border-color: #e2e8f0;
  --border-focus: #38bdf8;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  max-width: 100vw;
  width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: #f8fafc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.25;
}

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

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

/* ==========================================================================
   TOP BAR & EMERGENCY BANNER
   ========================================================================== */
.topbar {
  background: linear-gradient(90deg, #05182a 0%, #092c4c 50%, #061c31 100%);
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  position: relative;
  z-index: 1025;
}

.topbar-item {
  color: #94a3b8;
  font-size: 0.82rem;
}

.topbar-link {
  color: #e2e8f0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.topbar-link:hover {
  color: #38bdf8;
  transform: translateY(-1px);
}

.topbar-badge {
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
}

.topbar-badge .pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 1.8s infinite;
}

.topbar-rating-badge {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.topbar-pill-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.topbar-pill-btn:hover {
  background: #0284c7;
  border-color: #38bdf8;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: inline-block;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1020;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.brand-logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(2, 132, 199, 0.08);
}

.brand-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-navy);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-title span {
  color: var(--primary-blue);
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-teal);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  display: block;
}

.brand-desc {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.2;
}

.navbar-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-blue);
  background-color: #f0f9ff;
}

.dropdown-menu {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  animation: fadeInDown 0.2s ease;
}

.dropdown-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: #f0f9ff;
  color: var(--primary-blue);
  padding-left: 18px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary-custom {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(2, 132, 199, 0.4);
  color: #ffffff !important;
}

.nav-appointment-btn {
  padding: 8px 18px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.btn-whatsapp-custom {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-whatsapp-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(37, 211, 102, 0.4);
  color: #ffffff !important;
}

.btn-call-custom {
  background: linear-gradient(135deg, #092c4c 0%, #0f4c81 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 3px 10px rgba(9, 44, 76, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-call-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(9, 44, 76, 0.4);
  color: #ffffff !important;
}

.btn-outline-custom {
  background: #ffffff;
  color: var(--primary-navy) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue) !important;
  background: #f0f9ff;
  transform: translateY(-2px);
}

/* ==========================================================================
   INTERACTIVE HORIZONTAL SLIDING CAROUSEL (LEFT-TO-RIGHT SLIDE TRANSITIONS)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 0;
  margin: 0;
}

.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.slide-item {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  display: block !important;
  opacity: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.slide-item img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Navigation Controls */
.slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.slider-arrow-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-btn.prev-btn {
  left: 20px;
}

.slider-arrow-btn.next-btn {
  right: 20px;
}

/* Bottom Pill Indicators */
.slider-pill-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(15, 23, 42, 0.5);
  padding: 6px 14px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

.slider-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-pill-dot.active {
  width: 28px;
  border-radius: 12px;
  background: #ffffff;
}

/* ==========================================================================
   MOBILE & SCREENSHOT 2 FEATURE CONTAINER & STATS GRID
   ========================================================================== */
.feature-hub-container {
  background: var(--feature-hub-bg, linear-gradient(145deg, var(--primary-navy, #092c4c) 0%, #06192d 100%));
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-hub-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-hub-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.feature-hub-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-color, #0284c7);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-hub-icon.icon-pink {
  color: var(--accent-color, #0284c7);
}

.feature-hub-item:hover .feature-hub-icon {
  background: var(--accent-color, #0284c7);
  color: #ffffff;
  border-color: var(--accent-color, #0284c7);
  box-shadow: 0 6px 16px rgba(0, 168, 234, 0.35);
  transform: scale(1.05);
}

.feature-hub-content h4 {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.feature-hub-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  margin-bottom: 0;
  line-height: 1.4;
}

/* 2x2 Dark Stats Grid (Screenshot 2 Match) */
.dark-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dark-stat-card {
  background: linear-gradient(145deg, var(--primary-navy, #092c4c) 0%, #051424 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.dark-stat-card:hover {
  border-color: var(--accent-color, #0284c7);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.dark-stat-card .stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-color, #0284c7);
  transition: all 0.3s ease;
}

.dark-stat-card:hover .stat-icon {
  background: var(--accent-color, #0284c7);
  color: #ffffff;
  border-color: var(--accent-color, #0284c7);
  box-shadow: 0 6px 16px rgba(0, 168, 234, 0.35);
  transform: scale(1.06);
}

.dark-stat-card .stat-val {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 800;
  color: var(--accent-color, #0284c7);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.dark-stat-card .stat-desc {
  font-size: 0.88rem;
  color: #ffffff;
  opacity: 0.9;
  font-weight: 600;
  margin-bottom: 0;
}

/* ==========================================================================
   SECTION HEADINGS & BASICS
   ========================================================================== */
.section-padding {
  padding: 54px 0;
}

.section-tag {
  color: var(--primary-blue);
  font-size: 0.80rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
  margin-bottom: 6px;
  background: #e0f2fe;
  padding: 3px 12px;
  border-radius: 20px;
}

.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ==========================================================================
   SPECIALTIES CARDS (UROLOGY & ENT)
   ========================================================================== */
.specialty-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: #bae6fd;
}

.specialty-header {
  padding: 30px;
  color: #ffffff;
  position: relative;
}

.specialty-header.urology-theme {
  background: linear-gradient(135deg, #092c4c 0%, #0369a1 100%);
}

.specialty-header.ent-theme {
  background: linear-gradient(135deg, #0f4c81 0%, #0d9488 100%);
}

.specialty-header-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}

.specialty-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.specialty-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.specialty-checklist li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.specialty-checklist li i {
  color: var(--accent-emerald);
  margin-top: 4px;
  font-size: 0.9rem;
}

/* ==========================================================================
   TREATMENT / SERVICE CARDS
   ========================================================================== */
.treatment-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.treatment-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
}

.treatment-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f0f9ff;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.treatment-card:hover .treatment-icon {
  background: var(--primary-blue);
  color: #ffffff;
}

.treatment-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.treatment-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 16px;
  flex-grow: 1;
}

.treatment-tags {
  font-size: 0.78rem;
  color: var(--primary-blue);
  font-weight: 600;
  background: #f0f9ff;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

/* ==========================================================================
   DOCTORS CARDS
   ========================================================================== */
.doctor-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: #bae6fd;
}

.doctor-img-box {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.doctor-card:hover .doctor-img-box img {
  transform: scale(1.04);
}

.doctor-exp-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(9, 44, 76, 0.85);
  color: #ffffff;
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.doctor-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.doctor-name {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.doctor-qual {
  font-size: 0.86rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 8px;
}

.doctor-dept {
  font-size: 0.84rem;
  color: #475569;
  margin-bottom: 14px;
}

.doctor-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 0.83rem;
  color: #64748b;
}

.doctor-highlights li {
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.doctor-highlights li i {
  color: var(--accent-emerald);
  font-size: 0.8rem;
}

/* ==========================================================================
   FACILITIES & TECH SHOWCASE
   ========================================================================== */
.facility-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.facility-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.facility-caption {
  padding: 18px;
}

.facility-caption h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.facility-caption p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0;
}

.facility-badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.facility-pill {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.facility-pill i {
  color: var(--primary-blue);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.testimonial-text {
  font-size: 0.95rem;
  color: #475569;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e0f2fe;
  color: var(--primary-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-info h5 {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.author-info span {
  font-size: 0.78rem;
  color: #64748b;
  display: block;
}

/* ==========================================================================
   APPOINTMENT CTA & FORM
   ========================================================================== */
.cta-appointment-box {
  background: linear-gradient(135deg, #092c4c 0%, #0c3e6b 100%);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-appointment-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, rgba(2, 132, 199, 0) 70%);
  border-radius: 50%;
}

.appointment-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--text-dark);
  box-shadow: var(--shadow-xl);
}

.form-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.form-control, .form-select {
  border-radius: var(--radius-md);
  border: 1.5px solid #cbd5e1;
  padding: 11px 16px;
  font-size: 0.92rem;
  color: #0f172a;
  background-color: #ffffff;
  transition: all 0.25s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
  outline: none;
}

.input-group {
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.input-group .input-group-text {
  border: 1.5px solid #cbd5e1;
  border-right: none;
  background-color: #f8fafc;
  border-top-left-radius: var(--radius-md);
  border-bottom-left-radius: var(--radius-md);
  color: #64748b;
  padding: 10px 14px;
}

.input-group .form-control {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left: none !important;
}

.input-group:focus-within .input-group-text {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background-color: #f0f9ff;
}

.input-group:focus-within .form-control {
  border-color: var(--primary-blue);
}

.transition-all {
  transition: all 0.25s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #061c31;
  color: #94a3b8;
  font-size: 0.9rem;
  padding: 70px 0 25px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-widget h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  margin-top: 50px;
  font-size: 0.84rem;
}

/* ==========================================================================
   FLOATING ACTION BAR (MOBILE ACTION DOCK)
   ========================================================================== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  z-index: 1050;
  padding: 8px 12px;
  border-top: 1px solid #e2e8f0;
}

.mobile-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 8px;
}

.mobile-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.mobile-action-btn i {
  font-size: 1.15rem;
  margin-bottom: 3px;
}

.mobile-action-btn.btn-m-call {
  background: #092c4c;
  color: #ffffff;
}

.mobile-action-btn.btn-m-whatsapp {
  background: #25D366;
  color: #ffffff;
}

.mobile-action-btn.btn-m-book {
  background: var(--primary-blue);
  color: #ffffff;
}

/* ==========================================================================
   PAGE BANNER / BREADCRUMBS
   ========================================================================== */
.page-banner {
  background: linear-gradient(135deg, #092c4c 0%, #0f4c81 100%);
  padding: 36px 0 32px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-banner h1 {
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 4px;
}

.page-banner p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.breadcrumb-custom {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  font-size: 0.85rem;
}

.breadcrumb-custom .breadcrumb-item a {
  color: #bae6fd;
  text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
  color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE DESIGN RULES
   ========================================================================== */
@media (max-width: 991.98px) {
  .topbar {
    display: none;
  }
  .site-header .navbar > .container {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .site-header .navbar-brand {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    margin-right: 6px !important;
  }
  .site-header .brand-logo-text {
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .mobile-action-bar {
    display: block;
  }
  .floating-whatsapp-btn {
    display: none !important;
  }
  body {
    padding-bottom: 60px;
  }
  .hero-slider-section {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .slider-container {
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }
  .slide-item {
    padding: 0 !important;
    margin: 0 !important;
  }
  .slide-item img {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 34px 0 !important;
  }
  .page-banner {
    padding: 10px 0 8px !important;
    background: linear-gradient(135deg, #092c4c 0%, #0369a1 100%) !important;
  }
  .page-banner .badge {
    display: none !important;
  }
  .page-banner h1 {
    font-size: 1.15rem !important;
    margin: 0 0 2px 0 !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    color: #ffffff !important;
    letter-spacing: -0.2px;
  }
  .page-banner p {
    display: none !important;
  }
  .breadcrumb-custom {
    font-size: 0.68rem !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0.85;
  }
  .breadcrumb-custom .breadcrumb-item,
  .breadcrumb-custom .breadcrumb-item a {
    color: #bae6fd !important;
    font-size: 0.68rem !important;
  }
  .breadcrumb-custom .breadcrumb-item.active {
    color: #ffffff !important;
    font-weight: 600;
  }
  .slide-heading-main {
    font-size: 1.95rem;
  }
  .slide-stat-num {
    font-size: 2rem;
  }
  .brand-title {
    font-size: 1.12rem !important;
  }
  .brand-sub {
    font-size: 0.63rem !important;
  }
  .brand-desc {
    display: none;
  }
  .brand-logo-icon {
    width: 40px !important;
    height: 40px !important;
  }
  .slider-arrow-btn {
    display: none;
  }
  .slider-pill-dots {
    bottom: 8px;
    padding: 3px 8px;
    gap: 5px;
  }
  .slider-pill-dot {
    width: 6px;
    height: 6px;
  }
  .slider-pill-dot.active {
    width: 18px;
    border-radius: 8px;
  }
  
  /* Ultra-Compact Mobile 2-in-a-row Feature Hub */
  .feature-hub-container {
    padding: 10px 8px;
    border-radius: 12px;
  }
  .feature-hub-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 6px 5px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    height: 100%;
  }
  .feature-hub-icon {
    width: 26px;
    height: 26px;
    font-size: 0.80rem;
    border-radius: 6px;
  }
  .feature-hub-content h4 {
    font-size: 0.72rem;
    line-height: 1.15;
    margin-bottom: 1px;
    font-weight: 700;
  }
  .feature-hub-content p {
    font-size: 0.58rem;
    line-height: 1.2;
    color: #94a3b8;
    margin-bottom: 0;
  }

  /* Mobile 4-sided Compact Dark Stats Grid */
  .dark-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .dark-stat-card {
    padding: 12px 6px;
    border-radius: 12px;
  }
  .dark-stat-card .stat-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
    margin-bottom: 6px;
    border-radius: 8px;
  }
  .dark-stat-card .stat-val {
    font-size: 1.35rem;
    margin-bottom: 2px;
  }
  .dark-stat-card .stat-desc {
    font-size: 0.72rem;
    line-height: 1.15;
  }
}

/* ==========================================================================
   THEME TOGGLE BUTTON (LIGHT / DARK MODE SWITCHER)
   ========================================================================== */
.site-theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  color: var(--primary-navy, #092c4c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.site-theme-btn:hover {
  background: #e0f2fe;
  color: var(--primary-blue, #0284c7);
  border-color: #bae6fd;
  transform: scale(1.05);
}

/* ==========================================================================
   COMPREHENSIVE MEDICAL DARK THEME (DARK MODE)
   ========================================================================== */
[data-theme="dark"], body.dark-mode {
  --bg-light: #070d1e;
  --bg-card: #0f1c38;
  --text-dark: #f8fafc;
  --text-muted: #94a3b8;
  --text-light: #070d1e;
  --border-color: #1e2e4e;
  background-color: #070d1e !important;
  color: #f1f5f9 !important;
}

[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3, 
[data-theme="dark"] h4, [data-theme="dark"] h5, [data-theme="dark"] h6 {
  color: #ffffff !important;
}

[data-theme="dark"] .site-header {
  background-color: #0c1833 !important;
  border-bottom: 1px solid #1e2e4e !important;
}

[data-theme="dark"] .site-header.scrolled {
  background-color: rgba(12, 24, 51, 0.95) !important;
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .brand-title {
  color: #ffffff !important;
}

[data-theme="dark"] .nav-link {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .nav-link:hover, [data-theme="dark"] .nav-link.active {
  color: #38bdf8 !important;
}

[data-theme="dark"] .dropdown-menu {
  background-color: #0f1c38 !important;
  border-color: #1e2e4e !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .dropdown-item {
  color: #e2e8f0 !important;
}

[data-theme="dark"] .dropdown-item:hover {
  background-color: #1a2c54 !important;
  color: #38bdf8 !important;
}

[data-theme="dark"] .bg-white {
  background-color: #0f1c38 !important;
}

[data-theme="dark"] .bg-light, [data-theme="dark"] .section-padding:nth-child(even) {
  background-color: #070d1e !important;
}

[data-theme="dark"] .border, [data-theme="dark"] .border-top, [data-theme="dark"] .border-bottom {
  border-color: #1e2e4e !important;
}

[data-theme="dark"] .card,
[data-theme="dark"] .doctor-profile-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .facility-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .accordion-item,
[data-theme="dark"] .login-box-card,
[data-theme="dark"] .modal-content {
  background-color: #0f1c38 !important;
  border-color: #1e2e4e !important;
  color: #f1f5f9 !important;
}

[data-theme="dark"] .text-dark {
  color: #ffffff !important;
}

[data-theme="dark"] .text-muted, [data-theme="dark"] .text-secondary {
  color: #94a3b8 !important;
}

[data-theme="dark"] .site-theme-btn {
  background: #1a2c54 !important;
  border-color: #2a3f6f !important;
  color: #fde047 !important;
}

[data-theme="dark"] .form-control, [data-theme="dark"] .form-select {
  background-color: #070d1e !important;
  border-color: #1e2e4e !important;
  color: #ffffff !important;
}

[data-theme="dark"] .form-control:focus, [data-theme="dark"] .form-select:focus {
  background-color: #0c1833 !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2) !important;
}

/* Sleek Luxury Mobile Offcanvas Drawer */
.mobile-offcanvas-menu {
  border-radius: 0 20px 20px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
  border: none;
  width: 290px !important;
  max-width: 82vw !important;
}

.mobile-offcanvas-header {
  background: #ffffff;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-scroll {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  padding: 10px 12px 85px 12px !important;
  overflow-y: auto;
}

.mobile-nav-scroll::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  text-decoration: none;
  margin-bottom: 2px;
}

.mobile-nav-link:hover {
  background: #f8fafc;
  color: #0284c7;
}

.mobile-nav-link.active {
  background: #f0f9ff;
  color: #0284c7;
  font-weight: 700;
  border-left: 3px solid #0284c7;
}

.mobile-nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.mobile-nav-link:hover .mobile-nav-icon {
  transform: scale(1.05);
}

.mobile-subnav-list {
  list-style: none;
  padding-left: 14px;
  margin: 2px 0 6px 14px;
  border-left: 2px solid #e2e8f0;
}

.mobile-subnav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  color: #475569;
  font-size: 0.80rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-subnav-link:hover,
.mobile-subnav-link.active {
  color: #0284c7;
  background: #f0f9ff;
  padding-left: 12px;
}

[data-theme="dark"] .offcanvas {
  background-color: #0c1833 !important;
  color: #f1f5f9 !important;
}

[data-theme="dark"] .mobile-offcanvas-header,
[data-theme="dark"] .offcanvas-header, 
[data-theme="dark"] .offcanvas-body {
  background-color: #0c1833 !important;
  color: #f1f5f9 !important;
  border-color: #1e2e4e !important;
}

[data-theme="dark"] .mobile-nav-link {
  color: #e2e8f0;
}

[data-theme="dark"] .mobile-nav-link:hover,
[data-theme="dark"] .mobile-nav-link.active {
  background: #1a2c54;
  color: #38bdf8;
}

[data-theme="dark"] .mobile-subnav-list {
  border-color: #1e2e4e;
}

[data-theme="dark"] .mobile-subnav-link {
  color: #94a3b8;
}

[data-theme="dark"] .mobile-subnav-link:hover {
  color: #38bdf8;
  background: #101f42;
}

[data-theme="dark"] .btn-close {
  filter: invert(1);
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP QUICK CHAT & SCROLL TO TOP)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 82px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 995;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}

.floating-whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.6;
  z-index: -1;
  animation: wa-pulse-glow 2.2s infinite ease-out;
}

@keyframes wa-pulse-glow {
  0% { transform: scale(1); opacity: 0.7; }
  60% { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

.scroll-to-top-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  background: var(--primary-navy, #092c4c);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(9, 44, 76, 0.3);
  z-index: 994;
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  background: var(--primary-blue, #0284c7);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.45);
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
    bottom: 84px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
  .scroll-to-top-btn {
    bottom: 24px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
}
