/* ============================================
   SAINI HOSPITALS - MAIN STYLESHEET
   Light Blue Theme | Fully Responsive
============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Merriweather:wght@400;700&display=swap');

/* ============================================
   CSS VARIABLES
============================================ */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #bae6fd;
  --primary-xlight: #e0f4ff;
  --secondary: #06b6d4;
  --accent: #10b981;
  --accent-dark: #059669;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --white: #ffffff;
  --bg-light: #f0f9ff;
  --bg-section: #f8fcff;
  --border: #e0f2fe;
  --shadow: 0 4px 20px rgba(14, 165, 233, 0.12);
  --shadow-hover: 0 8px 40px rgba(14, 165, 233, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Outfit', sans-serif;
  --font-serif: 'Merriweather', serif;
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  outline: none;
}

input,
textarea,
select {
  font-family: var(--font);
  outline: none;
  border: none;
}

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

section {
  overflow: hidden;
}

/* ============================================
   TYPOGRAPHY
============================================ */
.section-label {
  display: inline-block;
  background: var(--primary-xlight);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title span {
  color: var(--primary);
  position: relative;
}

.section-desc {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.text-center .section-desc {
  margin: 0 auto;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #34d399);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

/* ============================================
   HEADER / NAVIGATION
============================================ */
.top-bar {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark-2));
  color: rgba(255, 255, 255, 0.9);
  padding: 9px 0;
  font-size: 0.82rem;
}

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

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-light);
}

.header {
  position: sticky;
  top: 0;
  z-index: 2000;
  /* Higher z-index */
  background: var(--white);
  box-shadow: 0 2px 20px rgba(14, 165, 233, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 20px;
}

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

.logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img img {
  height: 52px;
  width: auto;
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.logo-text h1 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}

.logo-text h1 span {
  color: var(--primary);
}

.logo-text p {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--primary-xlight);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: var(--primary-xlight);
  z-index: 1001;
  /* Above mobile nav */
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--nav-h));
  background: var(--white);
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.15);
  border-top: 1px solid var(--border);
  z-index: 1999;
  transition: all 0.3s ease-in-out;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav-inner {
  padding: 15px 15px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  background: var(--primary-xlight);
}

.mobile-nav-cta {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.mobile-nav-cta .btn {
  flex: 1;
  min-width: 130px;
  justify-content: center;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  min-height: calc(70vh - var(--nav-h) - 44px);
  background: linear-gradient(135deg, #e0f4ff 0%, #f0f9ff 50%, #e8f8f5 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--primary-light);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 18px;
}

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

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-main-img {
  width: 100%;
  border-radius: 30px 30px 80px 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.slider-container {
  width: 100%;
  height: 100%;
}

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slider-item.active {
  opacity: 1;
  z-index: 2;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-doctor-svg {
  width: 85%;
  height: 85%;
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card-1 {
  bottom: 40px;
  left: -30px;
  animation: float1 3.5s ease-in-out infinite;
}

.hero-card-2 {
  top: 30px;
  right: -30px;
  animation: float2 4s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.hero-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-icon.green {
  background: rgba(16, 185, 129, 0.12);
}

.hero-card-icon.blue {
  background: rgba(14, 165, 233, 0.12);
}

.hero-card-icon svg {
  width: 22px;
  height: 22px;
}

.hero-card-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  top: 1;
}

.hero-card-info p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================================
   SERVICES STRIP
============================================ */
.services-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 0;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-item {
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.strip-item:last-child {
  border-right: none;
}

.strip-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.strip-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strip-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.strip-text h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.strip-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  margin-top: 2px;
}

/* ============================================
   ABOUT SNIPPET (homepage)
============================================ */
.about-section {
  padding: 90px 0;
  background: var(--bg-section);
}

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

.about-img-side {
  position: relative;
  height: 100%;
}

.about-main-img {
  width: 100%;
  height: 100%;
  min-height: 450px; /* Prevent collapse */
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative; /* Added for slider */
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-hover);
  z-index: 10; /* Ensure it stays on top of slider */
}

@media (max-width: 768px) {
  .about-main-img {
    min-height: 300px;
  }
  .experience-badge {
    padding: 15px;
    bottom: -10px;
    right: -10px;
  }
}

.experience-badge .num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .label {
  font-size: 0.78rem;
  opacity: 0.9;
  margin-top: 4px;
  line-height: 1.3;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.af-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-xlight);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.af-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.af-text h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.af-text p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ============================================
   SERVICES SECTION
============================================ */
.services-section {
  padding: 90px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-xlight);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon svg {
  fill: var(--white);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
}

/* ============================================
   STATS SECTION
============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.stat-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(14, 165, 233, 0.15);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-light);
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num span {
  color: var(--primary);
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   DOCTORS SECTION
============================================ */
.doctors-section {
  padding: 90px 0;
  background: var(--bg-section);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.doctor-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.doctor-img {
  width: 100%;
  height: 260px;
  background: linear-gradient(160deg, var(--primary-xlight) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-avatar {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}

.doctor-avatar svg {
  width: 70px;
  height: 70px;
  fill: var(--white);
}

.doctor-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.doctor-info {
  padding: 24px;
}

.doctor-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.doctor-specialty {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.doctor-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.doctor-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-light);
  font-size: 0.78rem;
}

.doctor-meta svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-light);
}

.doctor-actions {
  display: flex;
  gap: 10px;
}

.doctor-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 10px 16px;
  font-size: 0.82rem;
}

/* ============================================
   WHY CHOOSE US
============================================ */
.why-section {
  padding: 90px 0;
  background: var(--white);
}

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

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: default;
}

.why-feature:hover {
  border-color: var(--primary-light);
  background: var(--primary-xlight);
  transform: translateX(6px);
}

.wf-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.wf-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.wf-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.why-visual {
  position: relative;
}

.why-img {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, var(--primary-xlight), #dbeafe);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-hover);
}

.why-floating-card.card-1 {
  bottom: -20px;
  left: -20px;
}

.why-floating-card.card-2 {
  top: -20px;
  right: -20px;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
  padding: 90px 0;
  background: var(--bg-section);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

/* Grids for Videos and Testimonials */
.video-slider,
.tslider {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  transform: none !important;
  transition: none !important;
}

.video-slide,
.testimonial-card {
  min-width: 0 !important;
  /* Reset slider min-width */
  width: 100% !important;
}

/* Hide Slider Controls */
.tslider-wrap .vslider-btn,
.video-slider-wrap .vslider-btn,
#tDots,
#videoDots {
  display: none !important;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.platform-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
}

.platform-icon svg {
  width: 100%;
  height: 100%;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.author-meta .review-date {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 2px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   APPOINTMENT SECTION (CTA)
============================================ */
.appointment-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.appointment-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.appointment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.apt-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.apt-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.apt-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.apt-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.apt-feature svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
}

.appointment-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.appointment-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand .logo-text h1 {
  color: var(--white);
}

.footer-brand .logo-text p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.8);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-link svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
  flex-shrink: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--primary-light);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 20px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
  color: var(--primary-light);
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-section {
  padding: 90px 0;
  background: var(--bg-section);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.cic-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cic-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.cic-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.cic-content p,
.cic-content a {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.5;
  display: block;
}

.cic-content a:hover {
  color: var(--primary);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  margin-top: 20px;
}

.map-embed iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-card>p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

/* ============================================
   ABOUT PAGE SECTIONS
============================================ */
.vision-section {
  padding: 90px 0;
  background: var(--white);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.vision-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.vision-card:hover {
  background: var(--white);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.vision-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.vision-icon svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
}

.vision-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.vision-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.7;
}

.team-section {
  padding: 90px 0;
  background: var(--bg-section);
}

/* ============================================
   SERVICES PAGE
============================================ */
.services-page-section {
  padding: 90px 0;
  background: var(--white);
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.service-page-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.service-page-card:hover {
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.spc-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spc-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.spc-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.spc-content p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.7;
}

.spc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.spc-tag {
  background: var(--primary-xlight);
  color: var(--primary-dark);
  font-size: 0.73rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================
   GALLERY SECTION ON ABOUT PAGE
============================================ */
.gallery-section {
  padding: 90px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, var(--primary-xlight), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 132, 199, 0.6), transparent);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item.tall {
  grid-row: span 2;
  height: 100%;
}

/* ============================================
   LOADING ANIMATION
============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BACK TO TOP
============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

/* ============================================
   WHATSAPP & CALL FLOAT
============================================ */
.whatsapp-float,
.call-float {
  position: fixed;
  bottom: 90px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
}

.whatsapp-float {
  right: 30px;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: wa-pulse 3s infinite;
}

.call-float {
  left: 30px;
  background: var(--primary);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
  animation: call-pulse 3s infinite;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

@keyframes call-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(14, 165, 233, 0.7);
  }
}

.whatsapp-float:hover,
.call-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg,
.call-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ============================================
   EMERGENCY BANNER
============================================ */
.emergency-banner {
  background: linear-gradient(90deg, #ef4444, #dc2626);
  color: var(--white);
  padding: 10px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.emergency-banner a {
  color: #fde68a;
  font-weight: 700;
}

/* ============================================
   GOVERNMENT SCHEMES SECTION
============================================ */
.scheme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.scheme-card {
  padding: 30px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}

.scheme-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* MODERN COMPONENTS */
/* Dropdown Menu Styles */
.nav {
  display: flex;
  align-items: center;
}

.nav-item {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 360px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  padding: 5px;
  border: 1px solid #f0f0f0;
}

.nav-item:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link,
.mobile-dropdown-link {
  display: block;
  padding: 12px 18px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  margin-bottom: 2px;
}

.dropdown-link:last-child {
  margin-bottom: 0;
}

.dropdown-link:hover,
.mobile-dropdown-link:hover {
  background: var(--primary-xlight);
  color: var(--primary);
  transform: translateX(5px);
}

/* Detail Pages Grid Responsiveness */
.profile-hero-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: center;
}

.detail-main-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
}

.expertise-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 992px) {
  .profile-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .profile-hero-grid .doctor-profile-img {
    max-width: 400px;
    margin: 0 auto;
  }

  .detail-main-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .doctor-sidebar {
    order: 2;
  }

  .doctor-main-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .expertise-grid-2 {
    grid-template-columns: 1fr;
  }

  .profile-hero-grid h1 {
    font-size: 2.2rem !important;
  }

  .profile-hero-grid .doctor-profile-info div {
    justify-content: center;
  }
}

/* Mobile Dropdown */
.mobile-dropdown {
  padding: 10px 0 10px 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8fafc;
  border-left: 3px solid var(--primary);
  margin: 5px 0 15px;
}

.mobile-dropdown-link {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
}

/* ============================================
   RESPONSIVE
============================================ */

/* ============================================
   RESPONSIVE DESIGN
============================================ */

/* TABLET & MOBILE (max-width: 1100px) */
@media (max-width: 1100px) {
  :root {
    --nav-h: 70px;
  }

  .top-bar {
    display: none;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header .container {
    padding: 0 20px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    gap: 30px;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
    margin-bottom: 20px;
  }

  .hero-desc,
  .hero-buttons {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

  .about-grid,
  .why-grid,
  .appointment-inner,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .services-grid,
  .doctors-grid,
  .stats-grid,
  .vision-grid,
  .gallery-grid,
  .scheme-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px;
  }

  .strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .video-slide,
  .testimonial-card {
    min-width: calc(50% - 12px) !important;
  }
}

/* MOBILE (max-width: 600px) */
@media (max-width: 600px) {
  .section-title {
    font-size: 1.8rem;
  }

  .emergency-banner {
    font-size: 0.72rem;
    padding: 8px 5px;
    line-height: 1.3;
  }

  .header .container {
    padding: 0 15px;
  }

  .logo-text h1 {
    font-size: 1.1rem;
  }

  .logo-text p {
    font-size: 0.6rem;
  }

  .logo-img img {
    height: 42px;
  }

  .stats-grid,
  .vision-grid,
  .gallery-grid,
  .scheme-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .facilities-grid,
  .consultants-grid,
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  .strip-inner {
    grid-template-columns: 1fr;
  }

  .hero-stat-num {
    font-size: 1.8rem;
  }

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

  .video-slide {
    min-width: 100% !important;
  }

  .video-slider {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    transform: none !important;
    transition: none !important;
  }

  .tslider {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    transform: none !important;
    transition: none !important;
  }

  .video-slider-wrap .vslider-btn,
  #videoDots,
  .tslider-wrap .vslider-btn,
  #tDots {
    display: none !important;
  }

  .video-slide div:first-child {
    height: 120px !important;
  }

  .testimonial-card {
    min-width: 100% !important;
  }

  .service-card {
    padding: 20px 15px;
  }

  .appointment-form {
    padding: 20px 15px;
  }

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

  /* Sticky Social for Mobile */
  .sticky-social {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .sticky-social a {
    width: 30px;
    height: 30px;
    border-radius: 0 6px 6px 0;
    margin-left: 0;
  }

  .sticky-social a:hover {
    width: 30px;
    transform: scale(1.05);
  }

  .sticky-social a span {
    display: none;
  }

  .sticky-social a svg {
    margin: 0 auto;
    width: 14px;
    height: 14px;
  }

  /* Marquee fix */
  .marquee-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .marquee-label {
    width: 100%;
    clip-path: none;
    padding: 8px 15px;
    font-size: 0.9rem;
    text-align: center;
  }

  .marquee-wrapper marquee {
    padding: 5px 0;
    font-size: 0.95rem;
  }

  /* Reduce Section Padding for Mobile */
  .about-section,
  .services-section,
  .doctors-section,
  .why-section,
  .testimonials-section,
  .appointment-section,
  .contact-section,
  .vision-section,
  .team-section,
  .services-page-section,
  .gallery-section,
  .stats-section {
    padding: 40px 0 !important;
  }
}

/* ============================================
   STICKY SOCIAL MEDIA
============================================ */
.sticky-social {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.sticky-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font, sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  overflow: hidden;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 0 8px 8px 0;
  margin-bottom: 6px;
  margin-left: 0;
}

.sticky-social a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sticky-social a svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
  margin: 0 9px;
}

.sticky-social a span {
  display: none;
}

.ss-fb {
  background: #3b5998;
}

.ss-tw {
  background: #00aced;
}

.ss-ig {
  background: #e1306c;
}

.ss-in {
  background: #007bb6;
}

.ss-yt {
  background: #ff0000;
}

/* ============================================
   MARQUEE SECTION RESPONSIVE
============================================ */
.marquee-wrapper {
  background: #7a0000;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.marquee-label {
  background: #fde047;
  color: #451a03;
  font-weight: 800;
  padding: 12px 20px 12px 30px;
  z-index: 2;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  width: 220px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .marquee-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .marquee-label {
    width: 100%;
    clip-path: none;
    padding: 8px 15px;
    font-size: 0.9rem;
    text-align: center;
  }

  .marquee-wrapper marquee {
    padding: 5px 0;
    font-size: 0.9rem;
  }
}


/* ============================================
   SERVICE DETAIL PAGES - APP-LIKE UX
============================================ */
.service-page-section {
  padding: 80px 0;
}

.journey-section {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.journey-item {
  text-align: center;
  position: relative;
}

.journey-step {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.journey-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: dashed var(--primary-light);
  z-index: -1;
}

.journey-text h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.journey-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .journey-grid::before {
    display: none;
  }

  .journey-item {
    display: flex;
    text-align: left;
    gap: 20px;
    align-items: center;
  }

  .journey-step {
    margin: 0;
    flex-shrink: 0;
  }

  .service-hero-content h1 {
    font-size: 2.2rem !important;
  }
}

@media (max-width: 600px) {
  .service-hero-section {
    padding: 40px 0;
  }

  .service-hero-content h1 {
    font-size: 1.8rem !important;
    margin-bottom: 15px;
  }

  .service-hero-content p {
    font-size: 0.95rem !important;
  }

  .cta-bar {
    padding: 20px 0;
  }

  .cta-bar h3 {
    font-size: 1.2rem !important;
  }

  .symptom-card {
    padding: 30px 20px;
  }
}

/* MOBILE APP FEEL ENHANCEMENTS */
@media (max-width: 600px) {
  body {
    font-size: 15px;
    /* Slightly larger for readability */
  }

  .container {
    padding: 0 20px;
    /* Consistent side padding */
  }

  .section-title {
    font-size: 2rem !important;
    margin-bottom: 15px !important;
  }

  .btn {
    width: 100%;
    /* Full width buttons for mobile app feel */
    margin-bottom: 10px;
    justify-content: center;
    padding: 14px 20px !important;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .top-bar {
    display: none;
    /* Keep it clean on very small screens */
  }

  .logo-text h1 {
    font-size: 1.2rem !important;
  }

  .service-card {
    border-radius: 20px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
  }
}

/* ============================================================
   MASTER MOBILE & SERVICE REDESIGN (APP-LIKE EXPERIENCE)
============================================================ */

/* 1. Mobile Navigation Overhaul */
@media (max-width: 992px) {
  .mobile-nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    left: auto !important;
    width: 85% !important;
    max-width: 320px !important;
    height: 100vh !important;
    background: #fff !important;
    z-index: 10000 !important;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    padding: 80px 20px 40px !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15) !important;
    transform: none !important;
  }

  .mobile-nav.active {
    right: 0 !important;
  }

  .mobile-nav-link {
    background: #f8fafc !important;
    margin-bottom: 8px !important;
    font-size: 1.05rem !important;
    padding: 14px 18px !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
  }

  .mobile-nav-link.active,
  .mobile-nav-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: #fff !important;
  }

  .mobile-dropdown {
    background: #f1f8ff !important;
    border-left: 4px solid var(--primary) !important;
    padding: 10px 15px 10px 30px !important;
    margin: -8px 0 15px !important;
    border-radius: 0 0 15px 15px !important;
    gap: 8px !important;
  }

  .mobile-dropdown-link,
  .dropdown-link {
    font-size: 0.95rem !important;
    padding: 12px 15px !important;
    display: block !important;
    color: var(--text-light) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
  }

  .mobile-nav-cta {
    margin-top: 30px !important;
    flex-direction: column !important;
  }
}

/* 2. Premium Service Page Improvements */
.service-hero-section {
  padding: 100px 0 60px !important;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
  position: relative !important;
}

.service-hero-content h1 {
  font-size: 3.2rem !important;
  font-weight: 800 !important;
  color: var(--dark) !important;
  line-height: 1.1 !important;
}

.service-hero-content h1 span {
  color: var(--primary) !important;
}

.symptom-card {
  background: #fff !important;
  padding: 40px 30px !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.08) !important;
  transition: var(--transition) !important;
  border: 1px solid #f1f5f9 !important;
  text-align: center !important;
}

.symptom-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15) !important;
}

.symptom-icon {
  font-size: 3rem !important;
  margin-bottom: 20px !important;
  display: inline-block !important;
}

/* 3. Global Section Enhancements */
.section-label {
  letter-spacing: 3px !important;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.1) !important;
  text-transform: uppercase !important;
}

.journey-section {
  background: #fff !important;
}

.journey-step {
  width: 70px !important;
  height: 70px !important;
  font-size: 1.8rem !important;
}

@media (max-width: 600px) {
  .service-hero-content h1 {
    font-size: 2.2rem !important;
  }
}

/* ============================================
   SERVICE PAGE REDESIGN PATTERNS
============================================ */
.service-page-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--primary-dark) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.service-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/pattern.png') center/cover;
  opacity: 0.1;
  pointer-events: none;
}

.service-page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
}

.service-page-hero .breadcrumb a:hover {
  text-decoration: underline;
}

.service-intro-section {
  padding: 80px 0;
}

.service-intro-section h2 {
  color: #ef4444;
  /* Inspiration red heading */
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.service-intro-section p {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.doctor-showcase {
  background: var(--bg-section);
  padding: 80px 0;
}

.doctor-grid-alt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.doctor-card-horizontal {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.doctor-card-horizontal .doctor-img {
  width: 200px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
}

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

.doctor-card-horizontal .doctor-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-card-horizontal .doctor-info h3 {
  color: #ef4444;
  /* Inspiration red name */
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.doctor-card-horizontal .doctor-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.doctor-card-horizontal .doctor-info .read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.details-dark-section {
  background: var(--dark);
  padding: 100px 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.details-dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hospital-bg-dark.jpg') center/cover;
  opacity: 0.1;
  pointer-events: none;
}

.details-dark-section h2 {
  color: #ef4444;
  /* Inspiration red */
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.details-dark-section h3 {
  color: #38bdf8;
  /* Inspiration light blue */
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 15px;
}

.details-dark-section p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-image-text {
  padding: 100px 0;
}

.content-grid-alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-image-text .content-img img {
  border-radius: 30px;
  box-shadow: var(--shadow-hover);
  width: 100%;
}

.content-image-text h2 {
  color: #ef4444;
  /* Inspiration red */
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.content-image-text p {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Responsive adjustments for new patterns */
@media (max-width: 992px) {

  .doctor-grid-alt,
  .content-grid-alt {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .doctor-card-horizontal {
    flex-direction: column;
  }

  .doctor-card-horizontal .doctor-img {
    width: 100%;
    height: 250px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}
/* ============================================
   GALLERY SECTION
============================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 1 / 1;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
