/* ================================================
   GLOBAL RESET & BASE
================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #1a1a2e; background: #fff; overflow-x: hidden;}

/* ================================================
   CUSTOM CURSOR
================================================ */


/* ================================================
   SCROLL REVEAL
================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.card-container .reveal:nth-child(1) { transition-delay:.05s; }
.card-container .reveal:nth-child(2) { transition-delay:.10s; }
.card-container .reveal:nth-child(3) { transition-delay:.15s; }
.card-container .reveal:nth-child(4) { transition-delay:.20s; }
.reviews-grid .reveal:nth-child(1) { transition-delay:.05s; }
.reviews-grid .reveal:nth-child(2) { transition-delay:.10s; }
.reviews-grid .reveal:nth-child(3) { transition-delay:.15s; }
.reviews-grid .reveal:nth-child(4) { transition-delay:.20s; }
.reviews-grid .reveal:nth-child(5) { transition-delay:.25s; }
.reviews-grid .reveal:nth-child(6) { transition-delay:.30s; }
.stats-grid .reveal:nth-child(1) { transition-delay:.05s; }
.stats-grid .reveal:nth-child(2) { transition-delay:.12s; }
.stats-grid .reveal:nth-child(3) { transition-delay:.19s; }
.stats-grid .reveal:nth-child(4) { transition-delay:.26s; }

/* ================================================
   SHARED SECTION STYLES
================================================ */
.section-heading { text-align: center; margin-bottom: 16px; padding: 0 20px; }
.section-tag { font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #db2020; margin-bottom: 6px; }
.section-heading h2 { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.underline-bar { display: inline-block; width: 60px; height: 4px; background: linear-gradient(90deg,#1a6fc4,#1a2e5e); border-radius: 2px; margin-bottom: 12px; }
.section-sub { font-size: 15px; color: #64748b; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-divider { width: 90%; max-width: 1200px; height: 1px; background: linear-gradient(90deg,transparent,#cbd5e1,transparent); margin: 20px auto 0; }

/* ================================================
   FLOATING BUTTONS
================================================ */
.floating-buttons { position: fixed; left: 20px; bottom: 30px; display: flex; flex-direction: column; gap: 14px; z-index: 999; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 12px 30px rgba(0,0,0,0.25); position: relative; transition: all 0.3s ease; }
.float-btn svg { width: 26px; height: 26px; }
.float-btn:hover { transform: translateY(-6px) scale(1.1); }
.call-btn { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.whatsapp-btn { background: linear-gradient(135deg, #25D366, #1ebe5d); }
.float-btn::before { content: ""; position: absolute; width: 100%; height: 100%; border-radius: 50%; background: inherit; opacity: 0.5; animation: pulse 2s infinite; z-index: -1; }
.call-btn svg { animation: callShake 2.5s infinite; }
@keyframes callShake { 0%, 100% { transform: rotate(0); } 10% { transform: rotate(15deg); } 20% { transform: rotate(-10deg); } 30% { transform: rotate(15deg); } 40% { transform: rotate(-5deg); } 50% { transform: rotate(10deg); } }
.whatsapp-btn { animation: waBounce 2.5s infinite; }
@keyframes waBounce { 0%, 100% { transform: translateY(0); } 30% { transform: translateY(-8px); } 50% { transform: translateY(0); } }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 70% { transform: scale(1.7); opacity: 0; } 100% { transform: scale(1.7); opacity: 0; } }

@media (max-width: 480px) {
  .float-btn { width: 55px; height: 55px; }
  .float-btn svg { width: 24px; height: 24px; }
}

/* ================================================
   SOCIAL ICON DROPDOWN
================================================ */
.social-icon-wrap { position: relative; display: inline-block; }

.owner-dropdown { display: none; position: absolute; top: calc(100% + 10px); right: 0; background: #fff; border: 1px solid #e0e0e0; border-radius: 10px; min-width: 200px; box-shadow: 0 12px 32px rgba(0,0,0,.13); z-index: 9999; overflow: hidden; animation: ddFadeIn .2s ease; }
.owner-dropdown.open { display: block; }

@keyframes ddFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.owner-dropdown-header { padding: 8px 14px 6px; font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 1px solid #f0f0f0; font-family: 'Poppins', sans-serif; }

.owner-dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; text-decoration: none; color: #1a2e5e; font-size: 13px; border-bottom: 1px solid #f5f5f5; transition: background .15s; font-family: 'Poppins', sans-serif; }
.owner-dropdown-item:last-child { border-bottom: none; }
.owner-dropdown-item:hover { background: #fff5f5; color: #db2020; }

.owner-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; flex-shrink: 0; }
.av-blue { background: #e8ecf7; color: #1a2e5e; }
.av-pink { background: #fce8e8; color: #db2020; }

.owner-name { font-size: 13px; font-weight: 600; color: inherit; line-height: 1.3; }
.owner-handle { font-size: 11px; color: #999; line-height: 1.3; }
.owner-dropdown-item:hover .owner-name { color: #db2020; }

/* ================================================
   MAIN HEADER
================================================ */
.main-header {
  background: #fff;
  display: flex;
  align-items: stretch;
  border-bottom: 2px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.main-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.12); }
 
/* ── LOGO ── */
.logo-area {
  display: flex;
  align-items: center;
  padding: 8px 0 8px 26px;
  border-right: 2px solid #e0e0e0;
  flex-shrink: 0;
}
.logo-area img { height: 91px; width: 223px; object-fit: contain; }
 
.header-right { flex: 1; display: flex; flex-direction: column; overflow: visible; }
 
/* ── TOP BAR ── */
.top-bar {
  background: #fff;
  padding: 8px 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  border-bottom: 1px solid #e8e8e8;
}
.top-bar .info-item { display: flex; align-items: center; gap: 6px; color: #333; font-weight: 500; }
.top-bar .info-item svg { width: 15px; height: 15px; fill: #db2020; flex-shrink: 0; }
.top-divider { width: 1px; height: 20px; background: #ddd; }
 
/* ── SOCIAL ICONS ── */
.social-icons { display: flex; gap: 8px; align-items: center; }
.social-icon-wrap { position: relative; }
.social-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  transition: background .25s, border-color .25s, transform .2s;
  text-decoration: none;
}
.social-icon:hover { background: #ffeaea; border-color: #db2020; transform: translateY(-2px); }
.social-icon svg { width: 15px; height: 15px; fill: #1a2e5e; transition: fill .2s; }
.social-icon:hover svg { fill: #db2020; }
 
/* Owner dropdown */
.owner-dropdown {
  position: fixed;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
  min-width: 215px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.owner-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.owner-dropdown-header {
  padding: 10px 14px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #999;
  border-bottom: 1px solid #f0f0f0;
}
.owner-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: #1a2e5e;
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
  transition: background .15s;
}
.owner-dropdown-item:last-child { border-bottom: none; border-radius: 0 0 10px 10px; }
.owner-dropdown-item:hover { background: #fff5f5; color: #db2020; }
.owner-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.av-blue { background: #e8eef8; color: #1a2e5e; }
.av-pink { background: #fdeaea; color: #db2020; }
.owner-name { font-weight: 600; font-size: 13px; }
.owner-handle { font-size: 11px; color: #888; margin-top: 1px; }
 
/* ── NAV BAR ── */
.nav-bar {
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 2px;
  flex: 1;
}
nav { display: flex; align-items: center; gap: 2px; flex: 1; flex-wrap: nowrap; }
.nav-item { position: relative; display: inline-block; }
 
.nav-link {
  color: #1a2e5e;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  padding: 16px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-link:hover, .nav-link.active { color: #db2020; border-bottom-color: #db2020; }
 
/* ── STANDARD DROPDOWN ── */
.dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,.13);
  min-width: 210px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  overflow: hidden;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 11px 18px;
  font-size: 13px; color: #1a2e5e;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: all .18s; font-weight: 500;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: #fff5f5; color: #db2020; padding-left: 26px; }
 
/* ── WIDE TWO-COLUMN DROPDOWN ── */
.dropdown-wide {
  min-width: 600px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  border-radius: 0 0 12px 12px;
}
.nav-item:hover .dropdown-wide { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-two-col { display: grid; grid-template-columns: 1fr 1fr; }
.dropdown-col { display: flex; flex-direction: column; }
.dropdown-col:first-child { border-right: 1px solid #f0f0f0; }
.dropdown-col a {
  padding: 12px 20px; font-size: 13px;
  color: #1a2e5e; text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  font-weight: 500; line-height: 1.5;
  transition: all .18s; display: block;
}
.dropdown-col a:last-child { border-bottom: none; }
.dropdown-col a:hover { background: #fff5f5; color: #db2020; padding-left: 28px; }
 
/* ── BOOK BUTTON ── */
.book-btn {
  background: #1a2e5e; color: white;
  border: none; padding: 10px 18px;
  border-radius: 6px; font-size: 12px;
  font-weight: 700; font-family: 'Poppins', sans-serif;
  cursor: pointer; text-transform: uppercase;
  letter-spacing: 1px; white-space: nowrap;
  margin-left: auto; flex-shrink: 0;
  transition: background .25s, transform .2s, box-shadow .2s;
}
.book-btn:hover { background: #db2020; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(219,32,32,.3); }
 
/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px 16px;
  margin-left: auto;
  background: none; border: none;
  flex-shrink: 0; align-self: center;
}
.hamburger span { display: block; width: 26px; height: 2.5px; background: #1a2e5e; transition: all .35s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
 
/* ================================================
   MOBILE MENU
================================================ */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 3px solid #db2020;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  position: relative; z-index: 998;
}
.mobile-menu.open { display: block; }
.mobile-nav-item { border-bottom: 1px solid #f0f0f0; }
.mobile-nav-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; color: #1a2e5e;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  cursor: pointer; text-decoration: none;
  transition: background .2s, color .2s;
}
.mobile-nav-link:hover { background: #fff5f5; color: #db2020; }
.mobile-nav-link .arrow { transition: transform .3s; font-size: 11px; }
.mobile-nav-link.dd-open .arrow { transform: rotate(180deg); }
 
.mobile-dropdown { display: none; background: #fafafa; border-top: 1px solid #f0f0f0; }
.mobile-dropdown.open { display: block; }
.mobile-dropdown a {
  display: block; padding: 11px 32px;
  font-size: 13px; color: #444;
  text-decoration: none; border-bottom: 1px solid #f0f0f0;
  font-weight: 500; transition: all .15s; line-height: 1.5;
}
.mobile-dropdown a:last-child { border-bottom: none; }
.mobile-dropdown a:hover { color: #db2020; background: #fff5f5; padding-left: 40px; }
 
.mobile-bottom {
  padding: 16px 20px; border-top: 2px solid #e5e5e5;
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-contact { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #333; font-weight: 500; }
.mobile-contact svg { width: 15px; height: 15px; fill: #db2020; flex-shrink: 0; }
 
/* ================================================
   RESPONSIVE BREAKPOINTS
================================================ */
 
/* ── LARGE LAPTOP (1200px tak) ── */
@media (max-width: 1200px) {
  .nav-link { font-size: 11.5px; padding: 16px 8px; letter-spacing: .3px; }
  .book-btn { padding: 9px 14px; font-size: 11px; }
  .dropdown-wide { min-width: 520px; }
}
 
/* ── LAPTOP / SMALL LAPTOP (1024px tak) ── */
@media (max-width: 1024px) {
  .logo-area img { height: 75px; width: 180px; }
  .logo-area { padding: 8px 0 8px 16px; }
  .top-bar { padding: 6px 16px; gap: 12px; font-size: 12px; }
  .top-bar .info-item a,
  .top-bar .info-item span { font-size: 11.5px; }
  .nav-link { font-size: 11px; padding: 14px 7px; }
  .nav-bar { padding: 0 12px; }
  .book-btn { padding: 8px 12px; font-size: 10.5px; letter-spacing: .5px; }
  .dropdown-wide { min-width: 480px; }
}
 
/* ── TABLET (1023px se 768px) — Hamburger dikhao ── */
@media (max-width: 1023px) {
  /* Header layout */
  .main-header { align-items: center; height: 70px; }
 
  /* Logo */
  .logo-area { border-right: none; padding: 8px 16px; height: 100%; }
  .logo-area img { height: 52px; width: auto; max-width: 160px; }
 
  /* Header right aur nav band karo */
  .header-right { display: none; }
 
  /* Hamburger dikhao */
  .hamburger { display: flex; margin-right: 12px; }
 
  /* Mobile menu sticky */
  .mobile-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
  }
 
  /* Body scroll band karo jab menu khula ho */
  body.menu-open { overflow: hidden; }
}
 
/* ── MOBILE (767px tak) ── */
@media (max-width: 767px) {
  .main-header {
    position: fixed; top: 0; left: 0; right: 0;
    height: 64px; z-index: 1000;
  }
  body { padding-top: 64px; }
 
  .logo-area img { height: 45px; max-width: 140px; }
  .logo-area { padding: 8px 12px; }
 
  .hamburger { margin-right: 10px; padding: 8px; }
  .hamburger span { width: 22px; }
 
  .mobile-menu {
    top: 64px;
    max-height: calc(100vh - 64px);
  }
 
  .mobile-nav-link { padding: 15px 20px; font-size: 13px; }
  .mobile-dropdown a { padding: 11px 28px; font-size: 12.5px; }
}
 
/* ── SMALL MOBILE (479px tak) ── */
@media (max-width: 479px) {
  .logo-area img { height: 40px; max-width: 130px; }
  .mobile-nav-link { font-size: 12.5px; padding: 13px 16px; }
  .mobile-dropdown a { padding: 10px 24px; font-size: 12px; }
  .mobile-bottom { padding: 12px 16px; }
  .book-btn { padding: 11px; font-size: 12px; width: 100%; }
}
 
/* Edge overflow fix for wide dropdown */
@media (max-width: 1150px) {
  .dropdown-wide {
    min-width: 440px;
    left: auto; right: 0;
    transform: translateY(10px);
  }
  .nav-item:hover .dropdown-wide { transform: translateY(0); }
}

















/* ================================================
   HERO SLIDER
================================================ */
 
.slider-wrapper { position: relative; width: 100%; overflow: hidden; }
.slides-track { display: flex; transition: transform .6s cubic-bezier(.77,0,.175,1); will-change: transform; }
.slide { min-width: 100%; width: 100%; flex-shrink: 0; overflow: hidden; }
.slide-content { opacity: 0; transform: translateX(30px); transition: opacity .6s ease .35s, transform .6s ease .35s; }
.slide-content.in-view { opacity: 1; transform: translateX(0); }
 
/* ── Dots ── */
.slider-dots { display: flex; justify-content: center; gap: 8px; padding: 14px 0 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #c9d9ee; cursor: pointer; border: none; padding: 0; transition: background .3s, transform .3s; }
.dot.active { background: #1a2e5e; transform: scale(1.3); }
 
/* ── Arrows ── */
.slider-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; pointer-events: none; padding: 0 14px; box-sizing: border-box; z-index: 10; }
.arrow-btn { pointer-events: all; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.92); border: 1.5px solid #c8daf0; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s; box-shadow: 0 2px 12px rgba(0,0,0,.1); }
.arrow-btn:hover { background: #fff; transform: scale(1.1); }
.arrow-btn svg { width: 18px; height: 18px; stroke: #1a2e5e; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
 
/* ================================================
   SLIDE 1 & 3 — Heart / Doctor Section
================================================ */
.heart-section {
  background-image: url('../img/Hero1.png');
  background-size: cover; background-repeat: no-repeat; background-position: center;
  display: flex; align-items: stretch; width: 100%; min-height: 520px;
  font-family: 'Inter', sans-serif; overflow: hidden; position: relative;
}
.heart-section::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(255,255,255,.404); z-index: 1;
}
.heart-left {
  width: 48%; min-width: 340px; flex-shrink: 0;
  overflow: hidden; position: relative; z-index: 2;
}
.heart-left img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.heart-right {
  flex: 1; padding: 52px 100px 52px 40px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 52%; position: relative; z-index: 2;
}
 
.doctor-section {
  background-image: url('../img/Background.png');
  background-size: cover; background-repeat: no-repeat; background-position: center;
  display: flex; align-items: stretch; width: 100%; min-height: 520px;
  font-family: 'Inter', sans-serif; overflow: hidden; position: relative;
}
.doctor-section::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(255,255,255,.404); z-index: 1;
}
.doc-left {
  flex: 1; padding: 52px 40px 52px 100px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 52%; position: relative; z-index: 2;
}
.doc-right {
  width: 48%; min-width: 340px; flex-shrink: 0;
  overflow: hidden; position: relative; z-index: 2;
}
.doc-right img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
 
/* ── Shared text styles ── */
.heart-label, .doc-label { font-size: 18px; font-weight: 600; color: #1a2e5e; margin-bottom: 8px; }
.heart-heading, .doc-heading { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: #0f172a; line-height: 1.2; margin-bottom: 8px; }
.heart-heading .blue, .doc-heading .blue { color: #0f172a; display: block; }
.heart-subtitle, .doc-subtitle { font-size: 14px; color: #64748b; margin-bottom: 20px; }
.heart-divider, .doc-divider { width: 40px; height: 3px; background: #1a2e5e; border-radius: 2px; margin-bottom: 18px; }
.heart-desc, .doc-desc { font-size: 14.5px; color: #475569; line-height: 1.85; margin-bottom: 22px; max-width: 520px; }
.heart-items, .doc-items { display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.heart-item, .doc-item { display: flex; gap: 13px; align-items: flex-start; }
.heart-icon, .doc-icon { width: 38px; height: 38px; border-radius: 10px; background: #EAF4FF; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.heart-icon svg, .doc-icon svg { width: 18px; height: 18px; stroke: #1a2e5e; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.heart-item-text h4, .doc-item-text h4 { font-size: 13px; font-weight: 600; color: #0f172a; }
.heart-item-text p, .doc-item-text p { font-size: 12px; color: #64748b; margin-top: 2px; }
.heart-stats, .doc-stats { display: flex; margin-bottom: 28px; border: 1px solid #7ca0cf; border-radius: 12px; overflow: hidden; }
.heart-stat, .doc-stat { flex: 1; padding: 14px; text-align: center; border-right: 1px solid #a1b5ce; }
.heart-stat:last-child, .doc-stat:last-child { border-right: none; }
.num { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #1a2e5e; line-height: 1; }
.lbl { font-size: 10.5px; color: #94a3b8; margin-top: 4px; }
.heart-btns, .doc-btns { display: flex; gap: 14px; flex-wrap: wrap; }
 
/* ── Buttons ── */
.btn-primary { background: #1a2e5e; color: #fff; border: none; padding: 13px 26px; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .25s, transform .2s, box-shadow .2s; white-space: nowrap; }
.btn-primary:hover { background: #db2020; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(219,32,32,.25); }
.btn-outline { background: transparent; color: #1a2e5e; border: 2px solid #1a2e5e; padding: 12px 26px; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .25s; white-space: nowrap; }
.btn-outline:hover { background: #1a2e5e; color: #fff; transform: translateY(-2px); }
 
/* ================================================
   SLIDE 2 & 4 — Banner Section (Mobile style)
================================================ */
.banner-section {
  display: flex; align-items: center; width: 100%; min-height: 720px;
  background-size: cover; background-repeat: no-repeat; background-position: center;
  position: relative; font-family: 'Inter', sans-serif; overflow: hidden;
}
.banner-section::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(255,255,255,0.5); z-index: 1;
}
.banner-sanjeev { background-image: url('../img/Hero1.png'); }
.banner-ankita  { background-image: url('../img/Background.png'); }
 
.banner-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 40px;
  padding: 52px 60px; width: 100%; box-sizing: border-box;
}
 
.banner-doc-img {
  width: 150px; height: 150px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; border: 4px solid #ffffff;
  box-shadow: 0 4px 24px rgba(26,46,94,0.20);
  background: #eaf4ff; align-self: flex-start; margin-top: 10px;
}
.banner-doc-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
 
.banner-info { display: flex; flex-direction: column; gap: 5px; flex: 1; max-width: 560px; }
.banner-tag { font-size: 13px; font-weight: 700; color: #1a2e5e; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 2px; }
.banner-name { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: #0f172a; line-height: 1.15; margin-bottom: 6px; }
.banner-line { font-size: 14px; color: #475569; line-height: 1.65; }
.banner-exp { font-size: 14.5px; color: #0f172a; margin: 10px 0 4px; }
.banner-desc { font-size: 14px; color: #475569; line-height: 1.85; max-width: 520px; margin-bottom: 20px; }
.banner-btns { display: flex; gap: 14px; flex-wrap: wrap; }
 
.banner-right-img { flex-shrink: 0; width: 320px; display: flex; align-items: center; justify-content: center; }
.banner-right-img img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 8px 32px rgba(26,46,94,0.15)); }
 
/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
  .heart-right { padding: 40px 40px 40px 30px; }
  .doc-left { padding: 40px 30px 40px 40px; }
  .heart-heading, .doc-heading { font-size: 30px; }
  .banner-right-img { width: 220px; }
  .banner-inner { padding: 40px 36px; gap: 28px; }
}
 
@media (max-width: 768px) {
  .heart-section, .doctor-section { flex-direction: column; min-height: unset; overflow: visible; }
  .heart-left { display: none; }
  .doc-right { display: none; }
  .heart-right { width: 100%; max-width: 100%; padding: 28px 20px 32px; }
  .doctor-section { flex-direction: column; }
  .doc-left { width: 100%; max-width: 100%; padding: 28px 20px 24px; order: 1; }
  .slider-arrows { top: 45%; }
  .banner-right-img { display: none; }
  .banner-inner { flex-direction: column; padding: 36px 24px; text-align: center; align-items: center; }
  .banner-name { font-size: 26px; }
  .banner-btns { justify-content: center; }
  .banner-doc-img { align-self: center; margin-top: 0; }
}
 
@media (max-width: 480px) {
  .heart-right, .doc-left { padding: 22px 16px 26px; }
  .heart-heading, .doc-heading { font-size: 21px; }
  .heart-label, .doc-label { font-size: 14px; }
  .slider-arrows { top: 45%; }
}
 
@media (max-width: 360px) {
  .heart-heading, .doc-heading { font-size: 19px; }
  .slider-arrows { top: 45%; }
}




/* ================================================
   TICKER
================================================ */
.ticker-wrap { background: #1a2e5e; overflow: hidden; padding: 10px 0; border-top: 2px solid #db2020; }
.ticker-track { display: flex; gap: 50px; animation: ticker 30s linear infinite; white-space: nowrap; }
.ticker-track span { font-size: 13px; font-weight: 500; color: #fff; letter-spacing: .5px; flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }




/* ================================================
   SYMPTOMS SECTION
================================================ */
/* .symptoms-section {
  padding: 60px 40px;
  background: #fff;
}

.symptoms-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 10px;
}

.symptom-card {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform .35s, box-shadow .35s, border-color .3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.symptom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(219,32,32,.12);
  border-color: #fecaca;
}

.symptom-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #fff0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background .3s;
}

.symptom-card:hover .symptom-icon {
  background: #ffe0e0;
}

.symptom-icon svg {
  width: 28px;
  height: 28px;
}

.symptom-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.symptom-card p {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.7;
}


@media (max-width: 1024px) {
  .symptoms-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .symptoms-section { padding: 40px 20px; }
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .symptom-card { padding: 20px 14px; }
  .symptom-icon { width: 52px; height: 52px; }
  .symptom-icon svg { width: 22px; height: 22px; }
  .symptom-card h4 { font-size: 13px; }
}
@media (max-width: 360px) {
  .symptoms-grid { grid-template-columns: 1fr; }
} */






/* ================================================
   SERVICES (Cards)
================================================ */
.services-section { padding: 50px 0 20px; }
.card-container { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 20px 40px 10px; justify-items: center; }
.hero { position: relative; width: 100%; max-width: 304px; height: 400px; border-radius: 20px; overflow: hidden; box-shadow: 0 6px 28px rgba(0,0,0,.13); transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s; cursor: pointer; }
.hero:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,.22); }
.hero-profile-img { width: 100%; height: 70%; object-fit: cover; transition: transform .5s; }
.hero:hover .hero-profile-img { transform: scale(1.08); }
.hero-description-bk { background-image: linear-gradient(0deg,#23355f); border-radius: 20px; position: absolute; top: 59%; left: -4px; height: 70%; width: 110%; transform: skew(19deg,-9deg); }
.second .hero-description-bk { background-image: linear-gradient(-20deg,#23355f); }
.hero-logo { width: 52px; height: 52px; border-radius: 14px; background: #fff; position: absolute; top: 54%; left: 18px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,.15); z-index: 2; transition: transform .3s; }
.hero:hover .hero-logo { transform: scale(1.1) rotate(-5deg); }
.hero-logo svg { width: 26px; height: 26px; }
.hero-description { position: absolute; color: #fff; left: 11px; top: 70%; right: 12px; z-index: 2; }
.hero-description h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.hero-description p { font-size: 12px; color: #e7eaef; line-height: 1.5; }
.hero-btn { position: absolute; right: 16px; bottom: 14px; padding: 6px 14px; border: 1.5px solid rgba(255,255,255,.75); border-radius: 6px; font-size: 11px; z-index: 2; background: rgba(255,255,255,.1); transition: background .25s; }
.hero:hover .hero-btn { background: rgba(255,255,255,.25); }
.hero-btn a { color: #fff; text-decoration: none; font-weight: 500; }
.hidden-card { display: none; opacity: 0; transform: translateY(30px) scale(.97); }
@keyframes cardReveal { 0% { opacity:0; transform:translateY(30px) scale(.96); } 100% { opacity:1; transform:translateY(0) scale(1); } }
.card-reveal { animation: cardReveal .5s cubic-bezier(.22,1,.36,1) forwards; }
.card-reveal:nth-child(5) { animation-delay:.00s; } .card-reveal:nth-child(6) { animation-delay:.08s; }
.card-reveal:nth-child(7) { animation-delay:.16s; } .card-reveal:nth-child(8) { animation-delay:.24s; }
.controls-wrap { text-align: center; padding: 20px 0 14px; min-height: 64px; }
.show-more-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid #23355f; color: #23355f; padding: 10px 28px; border-radius: 50px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .25s; box-shadow: 0 2px 10px rgba(35,53,95,.1); }
.show-more-btn:hover { background: #23355f; color: #fff; transform: translateY(-2px); }
.show-more-btn .arrow { transition: transform .3s; }
.view-more-btn { display: none; align-items: center; justify-content: center; gap: 10px; margin: 0 auto; background: #1a2e5e; color: #fff; border: none; padding: 13px 28px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .25s; }
.view-more-btn:hover { background: #db2020; transform: translateY(-2px); }
.view-more-btn.show { display: inline-flex; animation: fadeSlideUp .4s ease forwards; }
@keyframes fadeSlideUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

/* --- SERVICES RESPONSIVE --- */
@media (max-width: 1024px) {
  .card-container { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 820px) {
  .card-container { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .card-container { grid-template-columns: 1fr; padding: 20px; }
  .hero-logo { width: 44px; height: 44px; }
  .hero-description h4 { font-size: 14px; }
}

/* ================================================
   RESULTS SLIDER + LIGHTBOX
================================================ */
.results-section { padding: 50px 0 40px; background: #f8fafc; }
.slider-row { display: flex; align-items: center; padding: 0 16px; gap: 0; }
.s-arrow { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1.5px solid #ddd; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, border-color .2s, transform .15s; z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.s-arrow:hover { background: #7c6fcf; border-color: #7c6fcf; transform: scale(1.08); }
.s-arrow:hover svg { stroke: #fff; }
.s-arrow svg { width: 18px; height: 18px; stroke: #555; }
.slider-outer { overflow: hidden; flex: 1; padding: 0 10px; }
.slider-track { display: flex; gap: 18px; transition: transform .45s ease; will-change: transform; }

/* ✅ 4 cards + kam height */
.slide-item { flex: 0 0 calc(25% - 14px); min-width: 0; height: 289px; background-size: contain; background-position: center; background-repeat: no-repeat; background-color: #111; cursor: pointer; position: relative; overflow: hidden; border-radius: 12px; transition: transform .35s; box-shadow: 0 4px 18px rgba(0,0,0,.12); }

.slide-item:hover { transform: scale(1.02); }
.slide-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .3s; border-radius: 12px; }
.slide-item:hover::after { background: rgba(0,0,0,.22); }
.zoom-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.7); z-index: 2; opacity: 0; transition: opacity .25s, transform .25s; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; }
.slide-item:hover .zoom-icon { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.zoom-icon svg { width: 24px; height: 24px; stroke: white; }
.ba-bar { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 14px 14px; background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,0) 100%); display: flex; justify-content: space-between; align-items: flex-end; z-index: 3; border-radius: 0 0 12px 12px; }
.ba-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 13px; border-radius: 5px; line-height: 1; }
.ba-before { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(2px); }
.ba-after { background: #7c6fcf; color: #fff; box-shadow: 0 2px 10px rgba(124,111,207,.55); }
.lb-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.93); z-index: 9999; align-items: center; justify-content: center; }
.lb-overlay.active { display: flex; }
.lb-img { max-width: 88vw; max-height: 80vh; object-fit: contain; border-radius: 10px; display: block; user-select: none; }
.lb-close { position: fixed; top: 18px; right: 22px; width: 44px; height: 44px; background: rgba(255,255,255,.15); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lb-close svg { width: 18px; height: 18px; stroke: #fff; }
.lb-prev,.lb-next { position: fixed; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: rgba(255,255,255,.15); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lb-prev { left: 18px; } .lb-next { right: 18px; }
.lb-prev svg,.lb-next svg { width: 22px; height: 22px; stroke: #fff; }
.lb-counter { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.65); font-size: 13px; }
.lb-thumbs { position: fixed; bottom: 44px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.lb-thumb { width: 56px; height: 40px; border-radius: 6px; background-size: cover; background-position: center; cursor: pointer; border: 2px solid transparent; opacity: .5; flex-shrink: 0; transition: border-color .2s, opacity .2s; }
.lb-thumb.active { border-color: #fff; opacity: 1; }

/* --- RESULTS SLIDER RESPONSIVE --- */
@media (max-width: 1024px) {
  .slide-item { flex: 0 0 calc(50% - 9px); height: 280px; }
}
@media (max-width: 768px) {
  .slide-item { flex: 0 0 calc(50% - 8px); height: 220px; }
}
@media (max-width: 640px) {
  .slide-item { flex: 0 0 100%; height: 260px; }
  .slider-row { padding: 0 8px; }
  .s-arrow { width: 38px; height: 38px; }
}
@media (max-width: 480px) {
  .slide-item { flex: 0 0 100%; height: 240px; }
}








/* =======================================
    Certifications Section
======================================== */
/* ===== Slider width increase ===== */
/* ===== Certifications Heading ===== */
/* ===== Certifications Heading ===== */
.certifications-heading {
  text-align: center;
  padding: 60px 20px 10px;
  max-width: 1400px;
  margin: 0 auto;
}

.cert-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
      font-family: 'Playfair Display', serif;
}

.cert-subtitle {
      font-size: 15px;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.cert-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(to right, #1a3c5e, #4a90d9);
  margin: 0 auto;
  border-radius: 2px;
}

/* ===== Pro Slider ===== */
.pro-slider {
  position: relative;
  width: 95%;
  max-width: 1400px;
  margin: 50px auto;
  display: flex;
  align-items: center;
}

.slider-window {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* ===== Card ===== */
.card {
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ===== Card Image ===== */
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.card:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

/* ===== Nav Buttons ===== */
.nav {
  background: #ffffff;
  color: #665f5f;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 1px 0px 3px 0px;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}










/* ================================================
   WHY CHOOSE US
================================================ */
.wcu-wrapper { background: #f7f9fc; padding: 60px 20px; }
.wcu-page { max-width: 1100px; margin: auto; }
.wcu-main-divider { width: 70px; height: 4px; background: #1a2e5e; margin: 10px auto 1.6rem; border-radius: 2px; }
.wcu-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 2.5rem; align-items: start; }
.wcu-img-box { border-radius: 14px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,.13); height: 100%; min-height: 300px; max-height: 540px; }
.wcu-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.wcu-img-box:hover img { transform: scale(1.04); }
.accordion-list { display: flex; flex-direction: column; gap: 10px; }
.acc-item { background: #fff; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,.06); overflow: hidden; transition: box-shadow .25s ease, transform .2s ease; }
.acc-item:hover { box-shadow: 0 6px 22px rgba(0,0,0,.11); transform: translateY(-1px); }
.acc-btn { width: 100%; padding: 15px 18px; border: none; display: flex; align-items: center; gap: 12px; font-weight: 600; cursor: pointer; color: #fff; font-size: 13.5px; font-family: 'Poppins', sans-serif; border-radius: 10px; text-align: left; line-height: 1.4; transition: filter .2s ease; }
.acc-btn:hover { filter: brightness(1.08); }
.heart-btn { background: linear-gradient(135deg, #db2020); }
.skin-btn { background: linear-gradient(135deg, #1a2e5e); }
.acc-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 400; line-height: 1; transition: transform .35s cubic-bezier(.4,0,.2,1), background .2s; }
.acc-btn.open .acc-icon { transform: rotate(45deg); background: rgba(255,255,255,.35); }
.acc-body-wrap { max-height: 0; overflow: hidden; transition: max-height .42s cubic-bezier(.4,0,.2,1), opacity .3s ease; opacity: 0; }
.acc-body-wrap.open { max-height: 220px; opacity: 1; }
.acc-body-pad { padding: 14px 18px 16px 20px; font-size: 13.5px; color: #555; border-left: 4px solid; line-height: 1.75; font-family: 'Poppins', sans-serif; }
.heart-border { border-color: #db2020; }
.skin-border { border-color: #1a2e5e; }

/* --- WHY CHOOSE US RESPONSIVE --- */
@media (max-width: 900px) {
  .wcu-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .wcu-img-box { height: 320px; min-height: unset; max-height: unset; width: 100%; }
  .wcu-img-box img { object-position: center top; }
}
@media (max-width: 820px) {
  .wcu-grid { grid-template-columns: 1fr; }
  .wcu-img-box { height: 280px; }
}
@media (max-width: 600px) {
  .wcu-wrapper { padding: 40px 16px; }
  .wcu-img-box { height: 240px; border-radius: 10px; }
  .acc-btn { font-size: 13px; padding: 13px 14px; gap: 10px; }
  .acc-body-pad { font-size: 13px; padding: 12px 14px 14px 16px; }
  .accordion-list { gap: 8px; }
  .acc-item { border-radius: 8px; }
}
@media (max-width: 380px) {
  .wcu-img-box { height: 200px; }
  .acc-btn { font-size: 12.5px; }
}


























/* ================================================
   STATS
================================================ */
.stats-section { background: linear-gradient(135deg,#1a2e5e 0%,#0f1f45 100%); padding: 60px 40px; }
.stats-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat-item { text-align: center; color: #fff; padding: 30px 20px; border-radius: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); transition: transform .3s, background .3s; }
.stat-item:hover { transform: translateY(-6px); background: rgba(255,255,255,.13); }
.stat-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.stat-number { font-family: 'Playfair Display',serif; font-size: 46px; font-weight: 700; color: #fff; line-height: 1; display: inline-block; }
.stat-plus { font-size: 28px; font-weight: 700; color: #db2020; display: inline-block; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 8px; }

/* --- STATS RESPONSIVE --- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .stat-number { font-size: 36px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (max-width: 360px) {
  .stats-grid { grid-template-columns: 1fr; }
}


















.gautam-slider {
  position: relative;
  overflow: hidden;
  padding: 50px 0px 50px 0px;
}

.gautam-track {
  display: flex;
  transition: 0.5s;
}

.gautam-slide {
  min-width: 100%;
  padding: 50px 20px;
  color: #fff;
  text-align: center;
}

.gautam-heart {
  background: #1a2e5e;
}

.gautam-skin {
  background: #1a2e5e;
}

.gautam-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.gautam-left,
.gautam-right {
  width: 30%;
  list-style: none;
  padding: 0;
  text-align: left;
}

.gautam-left li,
.gautam-right li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.gautam-left li::before,
.gautam-right li::before {
  content: "›";
  position: absolute;
  left: 0;
}

.gautam-center {
  width: 30%;
}

.gautam-center img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
}

/* Buttons */
.gautam-prev,
.gautam-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
}

.gautam-prev { left: 10px; }
.gautam-next { right: 10px; }

/* Responsive */
@media (max-width: 768px) {
  .gautam-content {
    flex-direction: column;
  }

  .gautam-left,
  .gautam-right,
  .gautam-center {
    width: 100%;
    text-align: center;
  }
}








/* ================================================
   EXPERTISE SLIDER
================================================ */
.exp-slider { position: relative; overflow: hidden; }
.exp-track { display: flex; transition: transform .5s cubic-bezier(.77,0,.175,1); }
.exp-slide { flex: 0 0 100%; display: flex; min-height: 380px; position: relative; overflow: hidden; }
.heart-slide { background: url('../img/Hero1.png') center/cover no-repeat; }
.skin-slide { background: url('../img/Background.png') center/cover no-repeat; }
.exp-slide::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.42); }
.exp-text { position: relative; z-index: 1; width: 55%; padding: 44px 32px 44px 70px; display: flex; flex-direction: column; justify-content: center; }
.exp-label { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 6px; font-weight: 500; }
.exp-text h2 { font-size: 26px; font-weight: 600; color: #fff; margin-bottom: 18px; }
.exp-text ul { list-style: none; padding: 0; display: flex; flex-direction: column; }
.exp-text li { font-size: 15px; color: rgba(255,255,255,.9); padding: 7px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.exp-text li::before { content: '›'; font-size: 18px; color: #db2020; flex-shrink: 0; }
.exp-prev,.exp-next { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4); background: rgba(0,0,0,.3); color: #fff; cursor: pointer; z-index: 10; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.exp-prev:hover,.exp-next:hover { background: rgba(0,0,0,.6); }
.exp-prev { left: 12px; } .exp-next { right: 12px; }
.exp-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.edot { width: 8px; height: 8px; background: rgba(255,255,255,.4); border-radius: 50%; cursor: pointer; transition: all .25s; }
.edot.on { background: #fff; width: 22px; border-radius: 4px; }
.exp-counter { position: absolute; top: 14px; right: 16px; font-size: 11px; color: rgba(255,255,255,.55); z-index: 10; }

/* --- EXPERTISE SLIDER RESPONSIVE --- */
@media (max-width: 768px) {
  .exp-text { width: 100%; padding: 28px 20px; }
}

































/* ================================================
   DOCTORS SECTION
================================================ */
/* ================================================
   DOCTORS SECTION — FULL FIXED CSS
================================================ */

.doctors-section { padding: 60px 0; background: #fff; }

.doctor-profile-row {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}
.doctor-profile-row.reverse { grid-template-columns: 1fr 420px; }
.doctor-profile-row.reverse .dp-image-side { order: 2; }
.doctor-profile-row.reverse .dp-detail-side { order: 1; }

.dp-separator {
  max-width: 900px;
  margin: 50px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

/* ── Image Side ── */
.dp-image-side { display: flex; flex-direction: column; gap: 16px; }

.dp-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 460px;
}
.dp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s;
}
.dp-img-wrap:hover img { transform: scale(1.04); }

.heart-border-img { border: 3px solid #db2020; box-shadow: 0 20px 60px rgba(139,0,0,.2); }
.skin-border-img  { border: 3px solid #1a2e5e; box-shadow: 0 20px 60px #002988; }

.dp-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 13px; font-weight: 700; letter-spacing: .5px;
}
.heart-tag { background: #db2020; color: #fff; }
.skin-tag  { background: #1a2e5e; color: #fff; }

/* ── Stats below image ── */
.dp-img-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dp-istat {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}
.dp-num { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #1a2e5e; display: block; }
.dp-lbl { font-size: 10.5px; color: #94a3b8; margin-top: 2px; display: block; }
.skin-stats .dp-num { color: #1a2e5e; }

/* ── Detail Side ── */
.dp-tag-line { font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.heart-tagline { color: #db2020; }
.skin-tagline  { color: #1a2e5e; }

.dp-name { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: #0f172a; margin-bottom: 6px; line-height: 1.2; }
.dp-qual { font-size: 13.5px; color: #64748b; margin-bottom: 14px; }

.dp-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.dp-badge { font-size: 12px; padding: 5px 14px; border-radius: 20px; font-weight: 600; white-space: nowrap; }
.heart-badge { background: #fff0f0; color: #db2020; border: 1px solid #fecaca; }
.skin-badge  { background: #e0f2ee; color: #1a2e5e; border: 1px solid #a7f3d0; }

.dp-divider { height: 2px; background: linear-gradient(90deg, #db2020, transparent); margin: 16px 0; border-radius: 2px; }
.dp-divider.skin-divider { background: linear-gradient(90deg, #1a2e5e, transparent); }

.dp-bio { font-size: 14.5px; color: #475569; line-height: 1.85; margin-bottom: 20px; }
.dp-highlights { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.dp-hl { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #334155; }

.dp-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.dp-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 13.5px; font-weight: 600;
  text-decoration: none; text-align: center;
  transition: background .25s, transform .2s, box-shadow .2s;
  cursor: pointer; border: none;
}
.heart-dp-btn { background: #db2020; color: #fff; }
.heart-dp-btn:hover { background: #db2020; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(219,32,32,.25); }
.skin-dp-btn  { background: #1a2e5e; color: #fff; }
.skin-dp-btn:hover { background: #1a2e5e; transform: translateY(-2px); box-shadow: 0 6px 20px #022474; }

.dp-btn-outline {
  background: transparent; color: #1a2e5e;
  border: 2px solid #1a2e5e;
  padding: 11px 22px; border-radius: 8px;
  font-size: 13.5px; font-weight: 600;
  text-decoration: none; display: inline-block;
  transition: all .25s;
}
.dp-btn-outline:hover { background: #1a2e5e; color: #fff; }


/* ================================================
   RESPONSIVE
================================================ */

/* ── Large Laptop (1200px) ── */
@media (max-width: 1200px) {
  .doctor-profile-row,
  .doctor-profile-row.reverse {
    grid-template-columns: 360px 1fr;
    gap: 44px;
    padding: 0 32px;
  }
  .doctor-profile-row.reverse { grid-template-columns: 1fr 360px; }
  .dp-img-wrap { height: 430px; }
}

/* ── Laptop (1024px) ── */
@media (max-width: 1024px) {
  .doctor-profile-row,
  .doctor-profile-row.reverse {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  /* Image full dikhne ke liye height badhayi aur aspect ratio fix */
  .dp-img-wrap {
    height: 0;
    padding-bottom: 110%; /* aspect ratio — image puri dikhegi */
  }
  .dp-img-wrap img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .dp-name { font-size: 26px; }
  .dp-bio  { font-size: 14px; }
}

/* ── Tablet (820px tak) ── */
@media (max-width: 820px) {
  .doctor-profile-row,
  .doctor-profile-row.reverse {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 24px;
  }
  .doctor-profile-row.reverse .dp-image-side { order: 1; }
  .doctor-profile-row.reverse .dp-detail-side { order: 2; }

  /* Single column mein image ko natural height do */
  .dp-img-wrap {
    height: 0;
    padding-bottom: 65%; /* landscape feel, puri image dikhegi */
  }
  .dp-name { font-size: 26px; }
}

/* ── Mobile (768px) ── */
@media (max-width: 768px) {
  .doctors-section { padding: 40px 0; }

  .doctor-profile-row,
  .doctor-profile-row.reverse {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 20px;
  }
  .doctor-profile-row .dp-image-side,
  .doctor-profile-row.reverse .dp-image-side { order: 1; }
  .doctor-profile-row .dp-detail-side,
  .doctor-profile-row.reverse .dp-detail-side { order: 2; }

  .dp-img-wrap {
    height: 0;
    padding-bottom: 70%;
    border-radius: 16px;
  }
  .dp-img-stats { gap: 8px; }
  .dp-istat { padding: 10px 6px; }
  .dp-num  { font-size: 17px; }
  .dp-name { font-size: 24px; }
  .dp-bio  { font-size: 14px; }
  .dp-hl   { font-size: 13px; }
  .dp-separator { margin: 36px auto; }
}

/* ── Small Mobile (540px) ── */
@media (max-width: 540px) {
  .doctor-profile-row,
  .doctor-profile-row.reverse { padding: 0 16px; gap: 16px; }

  .dp-img-wrap {
    padding-bottom: 80%;
    border-radius: 14px;
  }
  .dp-name   { font-size: 22px; }
  .dp-qual   { font-size: 13px; }
  .dp-bio    { font-size: 13.5px; line-height: 1.75; }
  .dp-badge  { font-size: 11.5px; padding: 4px 12px; }
  .dp-btn    { font-size: 13px; padding: 11px 20px; }
  .dp-btn-outline { font-size: 13px; padding: 10px 18px; }
  .dp-img-stats { gap: 6px; }
  .dp-num { font-size: 16px; }
  .dp-lbl { font-size: 10px; }
  .dp-separator { margin: 28px auto; }
}

/* ── Very Small Mobile (380px) ── */
@media (max-width: 380px) {
  .dp-img-wrap { padding-bottom: 90%; }
  .dp-name { font-size: 20px; }
  .dp-btns { flex-direction: column; }
  .dp-btn, .dp-btn-outline { width: 100%; text-align: center; }
}


































/* ================================================
   PATIENT REVIEWS SLIDER
================================================ */
.reviews-section { padding: 60px 40px; background: #f8fafc; overflow: hidden; }
.reviews-slider-wrapper { position: relative; max-width: 1200px; margin: 0 auto; }
.reviews-track-outer { overflow: hidden; }
.reviews-track { display: flex; gap: 28px; transition: transform .5s cubic-bezier(.77,0,.175,1); will-change: transform; }
.review-card { background: #fff; border-radius: 18px; padding: 30px 28px; box-shadow: 0 4px 20px rgba(0,0,0,.07); border: 1px solid #e8ecf0; position: relative; display: flex; flex-direction: column; gap: 14px; transition: transform .35s, box-shadow .35s; flex: 0 0 calc(33.333% - 19px); min-width: 0; }
.review-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,.13); }
.review-quote { font-family: 'Playfair Display',serif; font-size: 80px; color: #e2e8f0; line-height: .7; position: absolute; top: 20px; right: 24px; }
.review-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: #475569; line-height: 1.8; flex: 1; font-style: italic; }
.review-footer { display: flex; align-items: center; gap: 12px; border-top: 1px solid #f0f4f8; padding-top: 16px; margin-top: auto; flex-wrap: wrap; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; flex-shrink: 0; }
.heart-av { background: linear-gradient(135deg,#8b0000,#db2020); color: #fff; }
.skin-av  { background: linear-gradient(135deg,#1a2e5e); color: #fff; }
.review-name { font-weight: 600; font-size: 13.5px; color: #1a2e5e; }
.review-loc  { font-size: 11.5px; color: #94a3b8; }
.review-badge { margin-left: auto; font-size: 10.5px; padding: 4px 12px; border-radius: 20px; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.hbadge { background: #fff0f0; color: #8b0000; border: 1px solid #fecaca; }
.sbadge { background: #e0f2ee; color: #1a2e5e; border: 1px solid #a7f3d0; }
.reviews-slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.rev-arrow { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 2px solid #e2e8f0; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.rev-arrow:hover { background: #1a2e5e; border-color: #1a2e5e; }
.rev-arrow:hover svg { stroke: #fff; }
.rev-arrow svg { width: 18px; height: 18px; stroke: #1a2e5e; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.rev-dots { display: flex; gap: 8px; }
.rev-dot { width: 9px; height: 9px; border-radius: 50%; background: #cbd5e1; border: none; cursor: pointer; transition: all .3s; padding: 0; }
.rev-dot.active { background: #1a2e5e; transform: scale(1.3); }

/* --- REVIEWS RESPONSIVE --- */
@media (max-width: 1024px) {
  .review-card { flex: 0 0 calc(50% - 14px); }
}
@media (max-width: 768px) {
  .reviews-section { padding: 40px 20px; }
  .review-card { flex: 0 0 calc(100%); }
}
@media (max-width: 480px) {
  .review-card { padding: 20px 16px; flex: 0 0 100%; }
}






/* ================================================
   VIDEO SECTION
================================================ */



/* ── Section Wrapper ── */
.video-player-wrapper {
  width: 100%;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center;
  padding: 70px 20px;
  box-sizing: border-box;
  background: #f8fafc;
}
 
/* ── Heading ── */
.vpw-heading {
  text-align: center;
  width: 100%;
  margin-bottom: 36px;
}
.vpw-top-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #db2020;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  display: block;
}
.vpw-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.15;
  margin: 0 0 10px 0;
}
.vpw-bottom-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #aaa;
  text-transform: uppercase;
  margin: 0;
  display: block;
}
 
/* ── Player Box ── */
.vpw-player {
  width: 820px;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 25px 70px rgba(0,0,0,0.22);
  display: block;
}
 
/* ── Video Tag — NO browser controls ── */
.vpw-player video {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: contain;
  /* browser default controls bilkul nahi dikhenge */
  pointer-events: none;
}
 
/* ── Center Play Button ── */
.vpw-center-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, opacity 0.3s;
  z-index: 2;
  user-select: none;
}
.vpw-center-play:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: rgba(219,32,32,0.6);
}
.vpw-player.vpw-playing .vpw-center-play {
  opacity: 0;
  pointer-events: none;
}
 
/* ── Controls Bar ── */
.vpw-controls {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 14px 14px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
  transition: opacity 0.3s;
  z-index: 3;
}
.vpw-player.vpw-hide-controls .vpw-controls {
  opacity: 0;
}
 
/* ── Controls Row ── */
.vpw-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vpw-left-controls,
.vpw-right-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
 
/* ── Player Buttons (scoped — poore page ke buttons affect nahi honge) ── */
.vpw-player .vpw-btn {
  background: none !important;
  border: none !important;
  color: #fff !important;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s;
  padding: 0;
  line-height: 1;
  box-shadow: none !important;
  outline: none;
}
.vpw-player .vpw-btn:hover {
  transform: scale(1.18);
  background: none !important;
}
 
/* ── Progress Bar ── */
.vpw-progress-container {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.28);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.vpw-progress {
  height: 100%;
  width: 0%;
  background: #db2020;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.vpw-buffer {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,0.35);
  border-radius: 10px;
}
 
/* ── Volume Slider ── */
.vpw-volume {
  width: 72px;
  cursor: pointer;
  accent-color: #db2020;
}
 
/* ── Time Labels ── */
.vpw-time {
  font-size: 13px;
  color: #e5e7eb;
  font-family: system-ui, sans-serif;
}
 
/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 900px) {
  .vpw-title { font-size: 36px; }
  .vpw-player { border-radius: 16px; }
}
 
@media (max-width: 600px) {
  .video-player-wrapper { padding: 50px 16px; }
  .vpw-heading { margin-bottom: 22px; }
  .vpw-title { font-size: 28px; }
  .vpw-top-label { font-size: 11px; }
  .vpw-bottom-label { font-size: 11px; }
  .vpw-player { border-radius: 12px; }
  .vpw-player video { max-height: 220px; }
  .vpw-center-play { width: 56px; height: 56px; font-size: 20px; }
  .vpw-volume { width: 52px; }
  .vpw-time { font-size: 11px; }
  .vpw-player .vpw-btn { font-size: 13px; }
  .vpw-controls { padding: 8px 8px 6px; gap: 6px; }
}
 
@media (max-width: 400px) {
  .vpw-title { font-size: 24px; }
  .vpw-volume { display: none; }
}








/* ================================================
   GALLERY SECTION
================================================ */
.gallery-section { padding: 3rem 1.5rem; background: #fff; font-family: 'DM Sans', sans-serif; }
.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-header h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 600; color: #0f172a; letter-spacing: -0.5px; }
.gallery-header p { font-size: 14px; color: #888; margin-top: 0.4rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 300; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; max-width: 1150px; margin: 0 auto; }
.gallery-card {
  border-radius: 1px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 3/4;
  border: 0.5px solid rgba(0,0,0,0.1);
  transition: transform 0.25s ease;
  background: #f5f5f5; /* ← light grey background jab image contain ho */
}.gallery-card:hover { transform: translateY(-4px); }
.gallery-card .img-wrap { width: 100%; height: 100%; position: relative; overflow: hidden; }
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* ← yahi main fix hai */
  object-position: center;
  transition: transform 0.35s ease;
  display: block;
}

/* CHANGE 3: Hover pe scale thoda kam karo (contain mein zyada scale odd lagta hai) */
.gallery-card:hover img {
  transform: scale(1.03); /* pehle 1.05 tha */
}

/* CHANGE 4: Lightbox image bhi contain karo */

.gallery-card .overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.25); opacity: 0; transition: opacity 0.25s ease; }
.gallery-card:hover .overlay { opacity: 1; }
.overlay-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); border: 0.5px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; }
.view-all-wrap { text-align: center; margin-top: 2.5rem; }
.view-all-btn { display: inline-flex; align-items: center; gap: 8px; background: #1a2e5e; color: #fff; border: none; padding: 13px 32px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .25s; font-family: 'Poppins', sans-serif; text-decoration: none; }
.view-all-btn:hover { background: #db2020; }
.view-all-btn:hover svg { transform: translateX(3px); }
.view-all-btn svg { transition: transform 0.2s ease; }
.lb-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.88); align-items: center; justify-content: center; padding: 1rem; }
.lb-overlay.open { display: flex; }
.lb-box {
  max-width: 750px; /* pehle 620px tha */
  width: 100%;
  position: relative;
  border-radius: 1px;
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.12);
  animation: lbFadeIn 0.22s ease;
}
@keyframes lbFadeIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
/* CHANGE 1: lb-image ka aspect-ratio hatao, height auto karo */
.lb-image {
  width: 100%;
  /* aspect-ratio: 4/3;  ← YE HATAO */
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80vh; /* screen se bahar na jaye */
}

.lb-image img {
  width: 100%;
  height: auto;        /* ← height auto rakho */
  max-height: 80vh;    /* ← screen height se zyada na ho */
  object-fit: contain; /* ← poori image dikhe */
  display: block;
}
.lb-footer { padding: 0.75rem 1.25rem; background: rgba(20,20,20,0.95); display: flex; align-items: center; justify-content: flex-end; }
.lb-counter { font-size: 13px; color: rgba(255,255,255,0.5); font-family: 'DM Sans', sans-serif; }
.lb-close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,0.5); border: 0.5px solid rgba(255,255,255,0.25); color: #fff; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: background 0.15s; }
.lb-close:hover { background: rgba(255,255,255,0.15); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; background: rgba(0,0,0,0.4); border: 0.5px solid rgba(255,255,255,0.25); color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; z-index: 10; }
.lb-nav:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 10px; }
.lb-next { right: 10px; }

/* --- GALLERY RESPONSIVE --- */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .gallery-header h2 { font-size: 2rem; }
}
@media (max-width: 768px) {
  .gallery-section { padding: 2.5rem 1.2rem; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .gallery-header h2 { font-size: 1.8rem; }
  .gallery-header p { font-size: 12px; letter-spacing: 2px; }
  .view-all-btn { padding: 11px 24px; font-size: 13px; }
  .overlay-icon { width: 34px; height: 34px; }
}
@media (max-width: 480px) {
  .gallery-section { padding: 2rem 1rem; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .gallery-card { aspect-ratio: 1/1.2; }
  .gallery-header h2 { font-size: 1.5rem; }
  .gallery-header p { font-size: 11px; letter-spacing: 1.5px; }
  .view-all-btn { width: 100%; justify-content: center; padding: 12px; font-size: 13px; }
  .lb-box { max-width: 95%; }
   .lb-image {
    /* aspect-ratio: 1/1;  ← YE BHI HATAO */
    max-height: 70vh;
  }
  .lb-image img {
    max-height: 70vh;
  }
  .lb-nav { width: 32px; height: 32px; font-size: 16px; }
  .lb-close { width: 30px; height: 30px; font-size: 14px; }
}
@media (max-width: 360px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card { aspect-ratio: 3/4; }
}

































/* ================================================
   BLOG SECTION
================================================ */
.blog-section { padding: 70px 40px; background: #fff; }
.blog-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.blog-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); border: 1px solid #e8ecf0; transition: transform .35s, box-shadow .35s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,.14); }
.blog-card-img { position: relative; height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-category { position: absolute; top: 14px; left: 14px; padding: 5px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.cat-heart { background: rgba(139,0,0,.9); color: #fff; }
.cat-skin  { background: rgba(15,110,86,.9); color: #fff; }
.cat-hair  { background: rgba(26,46,94,.9); color: #fff; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #94a3b8; margin-bottom: 12px; flex-wrap: wrap; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-title { font-family: 'Playfair Display',serif; font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 10px; line-height: 1.4; }
.blog-card-excerpt { font-size: 13.5px; color: #64748b; line-height: 1.7; flex: 1; margin-bottom: 18px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; text-decoration: none; transition: gap .25s; margin-top: auto; }
.blog-read-more.heart-link { color: #8b0000; }
.blog-read-more.skin-link  { color: #1a2e5e; }
.blog-read-more.hair-link  { color: #1a2e5e; }
.blog-read-more:hover { gap: 10px; }
.blog-view-all { text-align: center; margin-top: 40px; }
.blog-view-all-btn { display: inline-flex; align-items: center; gap: 8px; background: #1a2e5e; color: #fff; border: none; padding: 13px 32px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .25s; font-family: 'Poppins',sans-serif; text-decoration: none; }
.blog-view-all-btn:hover { background: #db2020; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(219,32,32,.25); }

/* --- BLOG RESPONSIVE --- */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
}
@media (max-width: 820px) {
  .blog-section { padding: 50px 24px; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-section { padding: 40px 16px; }
}
@media (max-width: 480px) {
  .blog-card-img { height: 180px; }
}














.ds-wrapper {
  padding: 60px 20px;
  background: #f4f7fb;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.ds-container {
  max-width: 1200px;
  margin: auto;
}

.ds-tag {
  color: #e63946;
  font-weight: 600;
  letter-spacing: 1px;
}

.ds-title {
  font-size: 32px;
  margin: 10px 0;
  color: #1e3a5f;
}

.ds-subtitle {
  max-width: 700px;
  margin: auto;
  color: #666;
  margin-bottom: 40px;
}

/* SCROLL AREA */
.ds-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.ds-scroll::-webkit-scrollbar {
  display: none;
}

/* CARD */
.ds-card {
  min-width: 260px;
  max-width: 260px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.ds-card:hover {
  transform: translateY(-8px);
}

.ds-card img {
  width: 100%;
  height: 289px;
}

.ds-card-body {
  padding: 15px;
  text-align: left;
}

.ds-date {
  font-size: 13px;
  color: #999;
}

.ds-card-body h3 {
  font-size: 16px;
  margin-top: 5px;
  color: #222;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ds-title {
    font-size: 24px;
  }

  .ds-card {
    min-width: 220px;
  }
}



.sh-wrapper {
  padding: 60px 20px;
  background: #fff7f5; /* soft skin tone */
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.sh-container {
  max-width: 1200px;
  margin: auto;
}

.sh-tag {
  color: #ff4d6d;
  font-weight: 600;
  letter-spacing: 1px;
}

.sh-title {
  font-size: 32px;
  margin: 10px 0;
  color: #5a2a27;
}

.sh-subtitle {
  max-width: 700px;
  margin: auto;
  color: #777;
  margin-bottom: 40px;
}

/* SCROLL */
.sh-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.sh-scroll::-webkit-scrollbar {
  display: none;
}

/* CARD */
.sh-card {
  min-width: 260px;
  max-width: 260px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.sh-card:hover {
  transform: translateY(-8px);
}

.sh-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.sh-card-body {
  padding: 15px;
  text-align: left;
}

.sh-date {
  font-size: 13px;
  color: #aaa;
}

.sh-card-body h3 {
  font-size: 16px;
  margin-top: 5px;
  color: #222;
}

/* MOBILE */
@media (max-width: 768px) {
  .sh-title {
    font-size: 24px;
  }

  .sh-card {
    min-width: 220px;
  }
}















/* ================================================
   APPOINTMENT SECTION
================================================ */
/* .appointment-section { padding: 60px 40px; background: #fff; }
.appt-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 36px; border: 2px solid #e2e8f0; border-radius: 12px; overflow: hidden; max-width: 600px; margin-left: auto; margin-right: auto; }
.appt-tab { flex: 1; padding: 14px 20px; border: none; background: #f8fafc; font-size: 14px; font-weight: 600; font-family: 'Poppins',sans-serif; cursor: pointer; transition: all .25s; color: #64748b; border-right: 1px solid #e2e8f0; }
.appt-tab:last-child { border-right: none; }
.appt-tab.active { background: #1a2e5e; color: #fff; }
.appt-tab:hover:not(.active) { background: #eef4ff; color: #1a2e5e; }
.appt-cards-wrap { max-width: 860px; margin: 0 auto; }
.appt-card { display: none; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.1); border: 1px solid #e2e8f0; animation: fadeSlideUp .35s ease forwards; }
.appt-card.active { display: block; }
.appt-card-header { display: flex; align-items: center; gap: 16px; padding: 24px 32px; }
.heart-card-header { background: linear-gradient(135deg,#db2020); color: #fff; }
.skin-card-header  { background: linear-gradient(135deg,#1a2e5e); color: #fff; }
.contact-card-header { background: linear-gradient(135deg,#1a2e5e); color: #fff; }
.appt-card-icon { font-size: 32px; }
.appt-card-header h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.appt-card-header p { font-size: 13px; color: rgba(255,255,255,.85); }
.appt-form { padding: 28px 32px 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: #374151; }
.form-group input,.form-group select,.form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-size: 14px; font-family: 'Poppins',sans-serif; color: #1a1a2e; background: #f8fafc; outline: none; transition: border-color .2s, box-shadow .2s; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: #1a2e5e; box-shadow: 0 0 0 3px rgba(26,46,94,.08); background: #fff; }
.form-group textarea { resize: vertical; min-height: 80px; }
.appt-submit { width: 100%; padding: 14px; border: none; border-radius: 10px; font-size: 15px; font-weight: 700; font-family: 'Poppins',sans-serif; cursor: pointer; transition: all .25s; margin-top: 4px; }
.heart-submit { background: linear-gradient(135deg,#8b0000,#db2020); color: #fff; }
.heart-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(219,32,32,.35); }
.skin-submit  { background: linear-gradient(135deg,#1a2e5e); color: #fff; }
.skin-submit:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,185,129,.35); }
.contact-submit { background: linear-gradient(135deg,#1a2e5e,#2563eb); color: #fff; }
.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.35); }
.contact-body { padding: 24px 32px 32px; }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 12px; background: #f8fafc; padding: 14px; border-radius: 10px; border: 1px solid #e2e8f0; }
.cinfo-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.phone-icon { background: #fff0f0; } .phone-icon svg { fill: #db2020; }
.mail-icon  { background: #eff6ff; } .mail-icon svg  { fill: #2563eb; }
.time-icon  { background: #f0fdf4; } .time-icon svg  { fill: #16a34a; }
.loc-icon   { background: #fef3c7; } .loc-icon svg   { fill: #d97706; }
.cinfo-label { font-size: 11px; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.cinfo-val { font-size: 13px; color: #334155; font-weight: 500; }
.cinfo-val a { color: #1a2e5e; text-decoration: none; }
.cinfo-val a:hover { color: #db2020; }
.map-wrap { border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.quick-msg { display: flex; flex-direction: column; gap: 10px; }
.quick-msg input,.quick-msg textarea { width: 100%; padding: 11px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-size: 14px; font-family: 'Poppins',sans-serif; color: #1a1a2e; background: #f8fafc; outline: none; transition: border-color .2s; }
.quick-msg input:focus,.quick-msg textarea:focus { border-color: #1a2e5e; background: #fff; }
.quick-msg textarea { resize: vertical; min-height: 60px; }
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(80px); background: #1a2e5e; color: #fff; padding: 14px 28px; border-radius: 50px; font-size: 14px; font-weight: 600; z-index: 9000; opacity: 0; transition: all .4s; box-shadow: 0 8px 24px rgba(0,0,0,.2); pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 820px) {
  .appt-tabs { flex-direction: column; border-radius: 12px; }
  .appt-tab { border-right: none; border-bottom: 1px solid #e2e8f0; }
  .appt-tab:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .appointment-section { padding: 40px 20px; }
  .appt-form,.contact-body { padding: 20px; }
  .appt-card-header { padding: 20px; }
} */

 @keyframes ag-fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  .appointment-section {
    all: initial;
    font-family: 'DM Sans', sans-serif;
    background: #0f2d5e;
    display: block;
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
  }
 
  .appointment-section * {
    box-sizing: border-box;
  }
 
  .appointment-section .ag-wrapper {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    animation: ag-fadeUp 0.7s ease both;
  }
 
  /* ── Header ── */
  .appointment-section .ag-header {
    text-align: center;
    margin-bottom: 28px;
  }
 
  .appointment-section .ag-label {
    display: inline-block;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    color: #8fa3c3;
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
  }
 
  .appointment-section .ag-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.9rem);
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 16px 0;
    padding: 0;
  }
 
  .appointment-section .ag-desc {
    font-size: 0.97rem;
    color: #8fa3c3;
    max-width: 712px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'DM Sans', sans-serif;
  }
 
  /* ── Legend ── */
  .appointment-section .ag-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    justify-content: center;
    margin-bottom: 36px;
    padding: 16px 28px;
    background: rgba(255,255,255,0.07);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
 
  .appointment-section .ag-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
 
  .appointment-section .ag-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
  }
 
  .appointment-section .ag-legend-dot.s { background: #60a5fa; }
  .appointment-section .ag-legend-dot.a { background: #fbbf24; }
 
  .appointment-section .ag-legend-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.3;
  }
 
  .appointment-section .ag-legend-text span {
    font-size: 0.75rem;
    color: #8fa3c3;
    font-family: 'DM Sans', sans-serif;
  }
 
  /* ── Grid ── */
  .appointment-section .ag-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
  }
 
  @media (max-width: 960px) {
    .appointment-section .ag-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
 
  @media (max-width: 600px) {
    .appointment-section .ag-grid {
      grid-template-columns: 1fr;
    }
 
    .appointment-section {
      padding: 40px 16px;
    }
 
    .appointment-section .ag-legend {
      padding: 14px 18px;
    }
  }
 
  /* ── Clinic Card ── */
  .appointment-section .ag-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(9,30,66,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
 
  .appointment-section .ag-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 55px rgba(9,30,66,0.35);
  }
 
  .appointment-section .ag-img-placeholder {
    width: 100%;
    height: 190px;
    background: linear-gradient(135deg, #c8d8f0 0%, #a8c0e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
  }
 
  .appointment-section .ag-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
  }
 
  .appointment-section .ag-card-body {
    padding: 24px 24px 28px;
  }
 
  .appointment-section .ag-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1a2e5e;
    margin: 0 0 4px 0;
    padding: 0;
    line-height: 1.3;
  }
 
  /* ── Doctor Badges ── */
  .appointment-section .ag-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0 18px;
  }
 
  .appointment-section .ag-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 20px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
 
  .appointment-section .ag-badge-sanjeev {
    background: #dbeafe;
    color: #1e3a8a;
    border: 1px solid #93c5fd;
  }
 
  .appointment-section .ag-badge-ankita {
    background: #fef3c7;
    color: #78350f;
    border: 1px solid #fcd34d;
  }
 
  .appointment-section .ag-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
  }
 
  .appointment-section .ag-badge-dot.s { background: #2563eb; }
  .appointment-section .ag-badge-dot.a { background: #d97706; }
 
  /* ── Info List ── */
  .appointment-section .ag-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
  }
 
  .appointment-section .ag-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.5;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
  }
 
  .appointment-section .ag-info-list li .ag-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    color: #1a2e5e;
  }
 
  .appointment-section .ag-info-list a {
    color: #1a2e5e;
    text-decoration: none;
    font-weight: 500;
  }
 
  .appointment-section .ag-info-list a:hover {
    text-decoration: underline;
  }
 
  .appointment-section .ag-info-list span {
    color: #4a5568;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
  }





/* ================================================
   FAQ SECTION
================================================ */
.faq-section { padding: 70px 40px; background: linear-gradient(180deg,#f8fafc 0%,#fff 100%); }
.faq-inner { max-width: 1100px; margin: 0 auto; }
.faq-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.faq-tab-btn { display: flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 50px; font-size: 13.5px; font-weight: 600; font-family: 'Poppins',sans-serif; cursor: pointer; border: 2px solid transparent; transition: all .25s; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.07); }
.faq-tab-btn.active-heart { background: #8b0000; color: #fff; border-color: #8b0000; }
.faq-tab-btn.active-skin  { background: #1a2e5e; color: #fff; border-color: #1a2e5e; }
.faq-tab-btn.active-hair  { background: #1a2e5e; color: #fff; border-color: #1a2e5e; }
.faq-tab-btn:not([class*="active"]) { color: #334155; border-color: #e2e8f0; }
.faq-tab-btn:not([class*="active"]):hover { border-color: #1a2e5e; color: #1a2e5e; }
.faq-panel { display: none; }
.faq-panel.active { display: block; animation: fadeSlideUp .35s ease forwards; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,.06); border: 1px solid #e8ecf0; overflow: hidden; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.faq-question { width: 100%; padding: 18px 22px; border: none; background: none; font-size: 14.5px; font-weight: 600; font-family: 'Poppins',sans-serif; color: #0f172a; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; transition: color .2s; }
.faq-question:hover { color: #db2020; }
.faq-q-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; font-weight: 400; transition: transform .3s, background .2s; }
.faq-heart-icon { background: #fff0f0; color: #8b0000; }
.faq-skin-icon  { background: #e0f2ee; color: #1a2e5e; }
.faq-hair-icon  { background: #eff6ff; color: #1a2e5e; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 13.5px; color: #475569; line-height: 1.8; border-left: 4px solid; }
.faq-heart-answer { border-color: #8b0000; }
.faq-skin-answer  { border-color: #1a2e5e; }
.faq-hair-answer  { border-color: #1a2e5e; }
.faq-item.open .faq-answer { max-height: 300px; }

/* --- FAQ RESPONSIVE --- */
@media (max-width: 820px) {
  .faq-section { padding: 50px 24px; }
}
@media (max-width: 768px) {
  .faq-section { padding: 40px 16px; }
  .faq-tabs { gap: 8px; }
  .faq-tab-btn { padding: 10px 16px; font-size: 12.5px; }
}
@media (max-width: 480px) {
  .faq-question { font-size: 13.5px; padding: 16px; }
  .faq-answer-inner { padding: 0 16px 16px; }
}



/* ================================================
   FOOTER
================================================ */
.site-footer { background: #0a1628; }
.footer-top-strip { background: linear-gradient(135deg,#1a2e5e); padding: 28px 40px; }
.footer-strip-inner { max-width: 1200px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-strip-text h3 { font-family: 'Playfair Display',serif; font-size: 22px; color: #fff; margin-bottom: 4px; }
.footer-strip-text p { font-size: 14px; color: rgba(255,255,255,.8); }
.footer-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.fstrip-btn { padding: 11px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .2s; white-space: nowrap; }
.fstrip-call { background: rgba(255,255,255,.15); color: #fff; border: 2px solid rgba(255,255,255,.5); }
.fstrip-call:hover { background: rgba(255,255,255,.28); }
.fstrip-book { background: #fff; color: #8b0000; }
.fstrip-book:hover { background: #f5f5f5; transform: translateY(-2px); }
.footer-main { padding: 56px 40px 40px; }
.footer-grid { max-width: 1200px; margin: auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr; gap: 40px; }
.footer-logo { height: 70px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .9; display: block; }
.footer-about-col p { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.footer-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.rating-stars { color: #f59e0b; font-size: 16px; }
.footer-rating span { font-size: 12.5px; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 10px; }
.f-social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all .25s; }
.f-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,.75); }
.f-social.insta:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.f-social.fb:hover  { background: #1877f2; }
.f-social.wa:hover  { background: #25d366; }
.f-social.yt:hover  { background: #ff0000; }
.f-social:hover svg { fill: #fff; }
.footer-heading { font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid rgba(255,255,255,.1); display: block; letter-spacing: .3px; }
.heart-head { border-bottom-color: #db2020; }
.skin-head  { border-bottom-color: #1a2e5e; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links li a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color .2s, padding-left .2s; }
.footer-links li a::before { content: '›'; color: #db2020; font-size: 15px; }
.footer-links li a:hover { color: #fff; padding-left: 5px; }
.footer-cinfo { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.fcinfo { display: flex; align-items: flex-start; gap: 10px; }
.fcinfo svg { fill: #db2020; flex-shrink: 0; margin-top: 2px; }
.fcinfo p, .fcinfo a { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; text-decoration: none; }
.fcinfo a:hover { color: #fff; }
.footer-timing-box { background: rgba(255,255,255,.05); border-radius: 10px; padding: 14px; margin-bottom: 14px; border: 1px solid rgba(255,255,255,.08); }
.timing-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.timing-row:last-child { border-bottom: none; }
.timing-day { font-size: 12.5px; color: rgba(255,255,255,.5); }
.timing-hrs { font-size: 12.5px; color: rgba(255,255,255,.85); font-weight: 500; }
.footer-emergency { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-emergency a { color: #db2020; text-decoration: none; font-weight: 600; white-space: nowrap; }.emg-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: emgPulse 1.5s infinite; flex-shrink: 0; }
@keyframes emgPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }
.footer-bottom-links span { color: rgba(255,255,255,.2); }


.social-icon-wrap,
.f-social-wrap {
  position: relative;
  display: inline-block;
}
 
.f-social-wrap .f-social {
  cursor: pointer;
}
 
/* Base dropdown — JS position set karega */
.owner-dropdown {
  display: none;
  position: fixed;        /* fixed rakhne se viewport overflow problem nahi aayegi */
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  min-width: 215px;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  z-index: 99999;
  overflow: hidden;
  animation: ddFadeIn .18s ease;
}
 
.owner-dropdown.open {
  display: block;
}
 
@keyframes ddFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.owner-dropdown-header {
  padding: 8px 14px 6px;
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'Poppins', sans-serif;
}
 
.owner-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: #1a2e5e;
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
  transition: background .15s;
  font-family: 'Poppins', sans-serif;
}
 
.owner-dropdown-item:last-child {
  border-bottom: none;
}
 
.owner-dropdown-item:hover {
  background: #fff5f5;
  color: #db2020;
}
 
.owner-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}
 
.av-blue { background: #e8ecf7; color: #1a2e5e; }
.av-pink { background: #fce8e8; color: #db2020; }
 
.owner-name {
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  line-height: 1.3;
}
 
.owner-handle {
  font-size: 11px;
  color: #999;
  line-height: 1.3;
}
 
.owner-dropdown-item:hover .owner-name { color: #db2020; }
 
.wa-chat-label {
  color: #25D366 !important;
  font-weight: 600;
}

/* --- FOOTER RESPONSIVE --- */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; }
  .footer-about-col { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .footer-about-col { grid-column: 1 / -1; display: block; }
  .footer-contact-col { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .footer-main { padding: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top-strip { padding: 24px 20px; }
  .footer-strip-inner { flex-direction: column; text-align: center; }
  .footer-strip-actions { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 16px 20px; }
}

/* ================================================
   BACK TO TOP
================================================ */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; background: #1a2e5e; color: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 900; box-shadow: 0 4px 16px rgba(0,0,0,.2); opacity: 0; visibility: hidden; transform: translateY(20px); transition: opacity .35s, visibility .35s, transform .35s, background .2s; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #db2020; transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* --- BACK TO TOP RESPONSIVE --- */
@media (max-width: 480px) {
  .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }
}