
:root {
  --forest: #080708;
  --forest-mid: #496738;
  --forest-light: #df2935;
  --gold: #c9a961;
  --gold-light: #e8cc8a;
  --gold-pale: #f5ead4;
  --cream: #fdf8f0;
  --white: #ffffff;
  --ink: #0f1f14;
  --muted: #6b7f73;
  --border: rgba(10,46,26,0.1);
  --shadow-sm: 0 2px 16px rgba(10,46,26,0.07);
  --shadow-md: 0 8px 40px rgba(10,46,26,0.12);
  --shadow-lg: 0 20px 80px rgba(10,46,26,0.18);
  --r: 16px;
  --r-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  padding: 0 5vw;
  background: rgb(254 244 232);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: var(--shadow-md); }

.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.logo-footer{width: 150px; border-radius: 5px;}
.nav-logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--forest);
  display:flex; align-items:center; justify-content:center;
  font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 1.4rem; font-weight: 700;
}
.nav-logo-text { display:flex; flex-direction:column; line-height:1.1; }
.header-logo{
    width: 100%;
    height: 100px;
    object-fit: contain;
}
.nav-logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--forest);
}
.nav-logo-text span:last-child {
  font-size: 0.65rem; letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; font-weight: 500;
}

.nav-contacts {
  display:flex; align-items:center; gap: 1.5rem;
}
.nav-phone {
  display:flex; align-items:center; gap: 6px;
  color: var(--forest-mid); font-weight: 500; font-size: 0.9rem;
  text-decoration: none;
  padding: 6px 14px; border-radius: 30px;
  background: rgba(10,46,26,0.06);
  transition: all .2s;
}
.nav-phone:hover { background: var(--forest); color: white; }
.nav-phone i { color: var(--gold); font-size: 0.8rem; }
.nav-phone:hover i { color: var(--gold-light); }

.nav-book {
  padding: 10px 24px;
  background: var(--forest);
  color: white; border: none; border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: all .3s;
  display:flex; align-items:center; gap: 8px;
  white-space: nowrap;
}
.nav-book:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,46,26,0.3);
}
.nav-book i { color: var(--gold); font-size: 0.85rem; }

/* ─── HERO ─── */
.hero {
    min-height: 100svh;
    background:linear-gradient(90deg, rgb(36 36 34 / 70%), rgb(181 136 57 / 62%)), url(../images/bg-box.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: flex;
    /* flex-direction: column; */
    justify-content: start;
    background-position: center;
    align-items: center;
    text-align: start;
    padding: 100px 5vw 60px;
    background-attachment: fixed;
}

.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
}

.hero-circles {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-circles span {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,169,97,0.12);
}
.hero-circles span:nth-child(1) { width:600px; height:600px; top:50%; left:50%; transform:translate(-50%,-50%); }
.hero-circles span:nth-child(2) { width:900px; height:900px; top:50%; left:50%; transform:translate(-50%,-50%); }
.hero-circles span:nth-child(3) { width:1200px; height:1200px; top:50%; left:50%; transform:translate(-50%,-50%); }

.hero-glow {
  position:absolute; width:500px; height:500px; border-radius:50%;
  background: radial-gradient(circle, rgba(201,169,97,0.12) 0%, transparent 70%);
  top:20%; left:50%; transform:translateX(-50%);
  pointer-events:none;
}

.hero-tag {
  display:inline-flex; align-items:center; gap:8px;
  padding: 6px 18px;
  border: 1px solid rgba(201,169,97,0.4);
  border-radius: 30px;
  color: var(--gold-light);
  font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
.hero-tag::before { content:''; width:6px; height:6px; background:var(--gold); border-radius:50%; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-content{
  width: 50%;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--forest) 0%, var(--ink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  max-width: 560px; 
  /* margin: 0 auto 2.5rem; */
  color: rgba(255,255,255,0.65); font-size: 1.05rem; font-weight: 300;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-videos{
  width: 50%;
    display: flex;
    justify-content: center;
}
.hero-videos iframe{
  height: 500px;
  border: none;
}
.hero-ctas {
  display:flex; gap: 1rem; 
  /* justify-content:center;  */
  margin-top: 15px;
  flex-wrap:wrap;
  animation: fadeUp 0.8s 0.3s ease both;
  margin-bottom: 4rem;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--forest); border: none; border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all .3s;
  display:flex; align-items:center; gap:8px;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201,169,97,0.4);
}

.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: white; border: 1px solid rgba(255,255,255,0.3); border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: all .3s;
  display:flex; align-items:center; gap:8px;
  text-decoration: none;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}
.btn-outline i { color: #25D366; }

/* Hero Stats strip */
.hero-stats {
  display:flex; gap: 0; flex-wrap: wrap;
  justify-content: center;
  border: 1px solid rgba(201,169,97,0.2);
  border-radius: var(--r-lg);
  overflow: hidden;
  animation: fadeUp 0.8s 0.4s ease both;
  backdrop-filter: blur(10px);
  
}
.hero-stat {
  padding: 20px 36px;
  border-right: 1px solid rgba(201,169,97,0.15);
  text-align:center;
  background: rgba(255,255,255,0.04);
  width: 25%;
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display:block; font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--cream); font-weight: 700;
}
.hero-stat span { font-size: 0.8rem; color: white; letter-spacing: 1px; }

/* ─── SECTION WRAPPER ─── */
.section { padding: 90px 5vw; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-label {
  display:inline-flex; align-items:center; gap:8px;
  padding: 5px 16px;
  background: rgba(10,46,26,0.07);
  border-radius: 20px;
  color: var(--forest-mid); font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 1rem;
}
.section-label::before { content:''; width:5px; height:5px; background:var(--gold); border-radius:50%; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--forest);
  line-height: 1.15; margin-bottom: 0.6rem;
}
.section-title em {
  font-style: normal; color: var(--gold);
}
.section-desc {
  color: var(--muted); font-size: 1rem; max-width: 500px;
  font-weight: 400;
}

/* ─── DOCTORS ─── */
.doctors-section { background: white; }

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.doctor-card {
  border-radius: var(--r-lg);
  background: var(--cream);
  overflow: hidden;
  transition: all .4s cubic-bezier(.23,1,.32,1);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 260px 1fr;
}
.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.doctor-photo {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  min-height: 420px;
}
.doctor-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display:block;
  transition: transform .5s ease;
}
.doctor-card:hover .doctor-photo img { transform: scale(1.05); }

.doctor-specialty-badge {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: var(--forest);
  color: var(--gold);
  padding: 8px 16px; border-radius: 10px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  text-align: center; text-transform: uppercase;
}

.doctor-details { padding: 2rem; display:flex; flex-direction:column; gap: 1rem; }

.doctor-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--forest);
  line-height: 1.2;
}
.doctor-role { color: var(--gold); font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }

.doctor-creds {
  display:flex; flex-direction:column; gap: 6px;
  padding: 1rem; background: white; border-radius: var(--r);
  margin: 0.2rem 0;
}
.doctor-cred {
  display:flex; align-items:flex-start; gap: 8px;
  font-size: 0.875rem; color: var(--ink); line-height: 1.4;
}
.doctor-cred::before {
  content: '✦'; color: var(--gold); font-size: 0.6rem; margin-top: 4px; flex-shrink: 0;
}

/* Doctor services chips */
.doctor-services-title {
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 0.4rem;
}
.doctor-chips { display:flex; flex-wrap: wrap; gap: 6px; }
.chip {
  padding: 5px 12px;
  background: var(--gold);
  color: rgba(255,255,255,0.85);
  border-radius: 20px; font-size: 0.78rem; font-weight: 500;
}
.chip-gold {
  background: var(--gold-pale);
  color: var(--forest);
}

.doctor-cta {
  padding: 12px 24px;
  background: var(--forest);
  color: white; border: none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: all .3s;
  display:flex; align-items:center; justify-content:center; gap: 8px;
  margin-top: auto;
}
.doctor-cta:hover {
  background: var(--forest-light);
  box-shadow: 0 8px 24px rgba(10,46,26,0.25);
}
.doctor-cta i { color: var(--gold); }

/* ─── SERVICES ─── */
.services-section { background: var(--cream); }

.services-header {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}

/* Doctor tabs */
.doctor-tabs {
  display:flex; gap: 8px;
  background: white;
  padding: 5px; border-radius: 30px;
  box-shadow: var(--shadow-sm);
}
.doctor-tab {
  padding: 8px 20px; border-radius: 25px;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.85rem;
  transition: all .25s;
  background: transparent; color: var(--muted);
}
.doctor-tab.active {
  background: var(--forest); color: white;
  box-shadow: 0 4px 12px rgba(10,46,26,0.2);
}

.services-panel { display:none; }
.services-panel.active { display:grid; }

/* Dr. Mohit services - Internal Medicine */
#services-mohit {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
/* Dr. Anee services - Physiotherapy */
#services-anee {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all .35s cubic-bezier(.23,1,.32,1);
  border: 1px solid transparent;
  position: relative; overflow: hidden;
}
.service-card::after {
  content:''; position:absolute;
  top:0; left:0; width:4px; height:0;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
  transition: height .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,97,0.2);
}
.service-card:hover::after { height: 100%; width: 4px; top: 0; }

.service-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 20px rgba(10,46,26,0.2);
}
.service-icon-wrap i { font-size: 1.4rem; color: var(--gold-light); }

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--forest);
  margin-bottom: 0.8rem;
}
.service-list { list-style:none; display:flex; flex-direction:column; gap: 5px; }
.service-list li {
  font-size: 0.875rem; color: var(--muted);
  display:flex; align-items:center; gap: 8px;
}
.service-list li::before { content:'→'; color: var(--gold); font-size: 0.85rem; }

/* ─── TIMING ─── */
.timing-section {
  background: var(--cream);
  position: relative; overflow: hidden;
}
.timing-section::before {
  content:''; position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a961' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.timing-inner { position:relative; z-index:1; }
.timing-header { text-align:center; margin-bottom: 3rem; }
.timing-header .section-label { background: rgba(201,169,97,0.15); color: var(--gold); }
.timing-header .section-title { color: var(--forest); }

.timing-cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

.timing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,97,0.2);
  border-radius: var(--r-lg); padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all .3s;
}
.timing-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.timing-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--gold); font-weight: 700;
  margin-bottom: 1.2rem;
  display:flex; align-items:center; gap: 10px;
}
.timing-day i { font-size: 1rem; }
.timing-slot {
  display:flex; align-items:center; gap: 10px;
  color: var(--forest); font-size: 0.95rem;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.timing-slot:last-child { border-bottom: none; }
.timing-slot i { color: var(--gold); width: 16px; text-align:center; }

/* ─── WHY US ─── */
.why-section { background: white; }
.why-grid {
  display:grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  padding: 2rem; border-radius: var(--r-lg);
  background: var(--cream);
  transition: all .35s ease;
  position: relative; overflow: hidden;
}
.why-card::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  opacity: 0; transition: opacity .35s;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover .why-icon { background: rgba(255,255,255,0.15); }
.why-card:hover .why-icon i { color: var(--gold); }
.why-card:hover .why-title { color: white; }
.why-card:hover .why-desc { color: rgba(255,255,255,0.7); }

.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--forest);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 1.2rem;
  position:relative; z-index:1;
  transition: background .35s;
}
.why-icon i { font-size: 1.5rem; color: var(--gold); }
.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--forest);
  margin-bottom: 0.5rem; position:relative; z-index:1;
  transition: color .35s;
}
.why-desc { font-size: 0.875rem; color: var(--muted); position:relative; z-index:1; transition: color .35s; }

/* ─── CONTACT STRIP ─── */
.contact-strip {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  padding: 60px 5vw;
}
.contact-inner {
  max-width: 1280px; margin: 0 auto;
  display:flex; align-items:center; justify-content:space-between;
  gap: 2rem; flex-wrap:wrap;
}
.contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); color: white; font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-left p { color: rgba(255,255,255,0.6); font-size: 1rem; }
.contact-cards { display:flex; gap: 1rem; flex-wrap:wrap; }
.contact-card {
  display:flex; align-items:center; gap: 12px;
  background: rgba(255,255,255,0.1);
  padding: 12px 20px; border-radius: 12px;
  border: 1px solid rgba(201,169,97,0.2);
  transition: all .3s;
  text-decoration: none;
}
.contact-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.contact-card i { color: var(--gold); font-size: 1.2rem; }
.contact-card div strong { display:block; color: white; font-size: 0.9rem; }
.contact-card div span { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--forest);
  padding: 60px 5vw 30px;
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display:flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,0.6); text-decoration:none;
  transition: all .3s; font-size: 0.9rem;
}
.social-btn:hover { background: var(--gold); color: var(--forest); }

.footer-col h5 {
  color: white; font-size: 0.85rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer-links { list-style:none; display:flex; flex-direction:column; gap: 8px; }
.footer-links li a {
  color: rgba(255,255,255,0.5); text-decoration:none;
  font-size: 0.875rem; transition: color .2s;
  display:flex; align-items:center; gap: 6px;
}
.footer-links li a:hover { color: var(--gold); }
.footer-links li a i { font-size: 0.7rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap: 1rem; font-size: 0.8rem;
}
.footer-bottom a { color: var(--gold); text-decoration:none; }

/* ─── APPOINTMENT DRAWER ─── */
.drawer-overlay {
  position:fixed; inset:0; background: rgba(10,46,26,0.6);
  backdrop-filter: blur(6px); z-index: 300;
  opacity:0; visibility:hidden; transition: all .35s;
}
.drawer-overlay.open { opacity:1; visibility:visible; }

.drawer {
  position:fixed; right:0; top:0; height:100%;
  width: min(480px, 100vw);
  background: white; z-index: 301;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.23,1,.32,1);
  display:flex; flex-direction:column;
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  background: var(--forest); padding: 2rem;
  display:flex; align-items:center; justify-content:space-between;
  flex-shrink: 0;
}
.drawer-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: white; font-weight: 700;
}
.drawer-close {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.15); border: none;
  color: white; font-size: 1.3rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: all .2s;
}
.drawer-close:hover { background: rgba(255,255,255,0.25); transform: rotate(90deg); }

.drawer-body { padding: 2rem; overflow-y: auto; flex:1; }

.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display:block; margin-bottom: 6px;
  font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 600; color: var(--muted);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #e5e7e5;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--ink);
  transition: all .2s; background: var(--cream);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline:none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.15);
  background: white;
}
.form-group textarea { resize:vertical; min-height: 90px; }

.submit-btn {
  width:100%; padding: 14px;
  background: var(--forest); color: white;
  border:none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700;
  cursor:pointer; transition: all .3s;
  display:flex; align-items:center; justify-content:center; gap: 8px;
}
.submit-btn:hover { background: var(--forest-light); box-shadow: 0 8px 24px rgba(10,46,26,0.3); }
.submit-btn i { color: var(--gold); }

/* ─── FLOATING BTNS ─── */
.fab-group {
  position:fixed; bottom: 28px; right: 28px;
  display:flex; flex-direction:column; gap: 12px; z-index: 200;
}
.fab {
  width: 58px; height: 58px; border-radius: 18px;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.5rem; text-decoration:none; color:white;
  transition: all .3s; box-shadow: var(--shadow-md);
}
.fab:hover { transform: scale(1.12) translateY(-3px); }
.fab-wa { background: #25D366; }
.fab-call { background: var(--forest); }
.fab-call i { color: var(--gold); }

/* ─── SUCCESS ─── */
.success-msg {
  display:none; text-align:center; padding: 2rem;
}
.success-msg .check {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 1.5rem;
}
.success-msg .check i { font-size: 2rem; color: var(--gold); }
.success-msg h4 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--forest); margin-bottom: 0.5rem; }
.success-msg p { color: var(--muted); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}




/* ── About Us Section ── */
.about-section {
  background: var(--cream, #fdf8f0);
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}
 
/* Decorative background arc */
.about-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,0.07) 0%, transparent 70%);
  pointer-events: none;
}
 
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
 
/* ── Left: Visual block ── */
.about-visual {
  position: relative;
}
 
.about-img-stack {
  position: relative;
  height: 520px;
}
 
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,46,26,0.18);
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
 
/* Fallback gradient if image missing */
.about-img-main .img-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0a2e1a 0%, #1a5c38 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.about-img-main .img-fallback i {
  font-size: 4rem; color: rgba(201,169,97,0.4);
}
.about-img-main .img-fallback span {
  color: rgba(255,255,255,0.4); font-size: 0.85rem; letter-spacing: 2px;
}
 
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(10,46,26,0.22);
  border: 5px solid var(--cream, #fdf8f0);
}
.about-img-secondary img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.about-img-secondary .img-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #12432a 0%, #c9a961 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img-secondary .img-fallback i {
  font-size: 2.5rem; color: rgba(255,255,255,0.5);
}
 
/* Gold accent badge */
.about-badge {
  position: absolute;
  top: 32px; right: 0;
  background: var(--forest, #0a2e1a);
  color: white;
  padding: 18px 22px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(10,46,26,0.3);
  z-index: 2;
}
.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold, #c9a961);
  line-height: 1;
}
.about-badge span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
 
/* Pill tag on image */
.about-img-tag {
  position: absolute;
  bottom: 268px; left: 20px;
  background: white;
  padding: 10px 18px;
  border-radius: 30px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  z-index: 2;
}
.about-img-tag .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
}
.about-img-tag span {
  font-size: 0.8rem; font-weight: 600; color: var(--forest, #0a2e1a);
}
 
/* ── Right: Content ── */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
 
.about-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 16px;
  background: rgba(10,46,26,0.07);
  border-radius: 20px;
  color: var(--forest-mid, #12432a);
  font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
  width: fit-content;
}
.about-label::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold, #c9a961);
  border-radius: 50%;
}
 
.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--forest, #0a2e1a);
  line-height: 1.15;
}
.about-heading em {
  font-style: normal;
  color: var(--gold, #c9a961);
}
 
.about-intro {
  font-size: 1rem;
  color: #4a6357;
  line-height: 1.8;
  font-weight: 400;
  padding-left: 1rem;
  border-left: 3px solid var(--gold, #c9a961);
}
 
.about-body {
  font-size: 0.95rem;
  color: #6b7f73;
  line-height: 1.8;
}
 
/* Feature pillars */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
 
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1.1rem 1.2rem;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(10,46,26,0.07);
  box-shadow: 0 2px 12px rgba(10,46,26,0.05);
  transition: all 0.3s ease;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(10,46,26,0.1);
  border-color: rgba(201,169,97,0.3);
}
.pillar-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--forest, #0a2e1a), #1a5c38);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-icon i { font-size: 1rem; color: var(--gold, #c9a961); }
.pillar-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest, #0a2e1a);
  margin-bottom: 2px;
}
.pillar-text span {
  font-size: 0.78rem;
  color: #6b7f73;
  line-height: 1.4;
}
 
/* Mission statement */
.about-mission {
  background: linear-gradient(135deg, var(--forest, #0a2e1a) 0%, #12432a 100%);
  border-radius: 18px;
  padding: 1.5rem 1.8rem;
  display: flex; align-items: flex-start; gap: 14px;
  margin-top: 0.5rem;
}
.about-mission i {
  font-size: 1.6rem;
  color: var(--gold, #c9a961);
  flex-shrink: 0;
  margin-top: 3px;
}
.about-mission p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
}
.about-mission p strong {
  color: var(--gold, #c9a961);
  font-style: normal;
}
 
.about-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 0.5rem;
}


/* ── Testimonials & Videos Section ── */
.social-proof-section {
  background: white;
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}
 
.social-proof-section::before {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,46,26,0.04) 0%, transparent 70%);
  pointer-events: none;
}
 
.sp-inner { max-width: 1280px; margin: 0 auto; }
 
.sp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.sp-header-left { max-width: 520px; }
 
/* ─────────────── VIDEOS ─────────────── */
.videos-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 16px;
  background: rgba(10,46,26,0.07);
  border-radius: 20px;
  color: #12432a;
  font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 1rem;
}
.videos-label::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold, #c9a961);
  border-radius: 50%;
}
 
.sp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--forest, #0a2e1a);
  line-height: 1.2;
}
.sp-title em { font-style: normal; color: var(--gold, #c9a961); }
 
.sp-desc {
  color: #6b7f73;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}
 
/* Videos Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 6rem;
}
 
.video-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--forest, #0a2e1a);
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(10,46,26,0.15);
  transition: all 0.35s cubic-bezier(.23,1,.32,1);
  aspect-ratio: 16/9;
}
.video-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(10,46,26,0.25);
}
 
/* YouTube thumbnail */
.video-thumb {
  position: absolute; inset: 0;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  opacity: 0.8;
}
.video-card:hover .video-thumb img { transform: scale(1.06); }
 
/* Gradient overlay */
.video-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,46,26,0.9) 0%,
    rgba(10,46,26,0.2) 50%,
    transparent 100%
  );
}
 
/* Placeholder when no image */
.video-thumb-placeholder {
  position: absolute; inset: 0;
  /* background: linear-gradient(135deg, #0a2e1a 0%, #1a5c38 100%); */
  display: flex; align-items: center; justify-content: center;
}
.video-thumb-placeholder i {
  font-size: 3rem;
  color: rgba(201,169,97,0.3);
}
 
/* Play button */
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold, #c9a961);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(201,169,97,0.5);
}
.video-play i { font-size: 1.1rem; color: var(--forest, #0a2e1a); margin-left: 3px; }
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 12px 36px rgba(201,169,97,0.7);
}
 
/* Video meta */
.video-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.4rem;
  z-index: 2;
}
.video-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold, #c9a961);
  color: var(--forest, #0a2e1a);
  border-radius: 20px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 6px;
}
.video-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; color: white; font-weight: 600;
  line-height: 1.3;
}
 
/* Video Lightbox */
.video-lightbox {
  position: fixed; inset: 0;
  background: rgba(5,15,9,0.95);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}
.video-lightbox.open { opacity: 1; visibility: visible; }
 
.lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 860px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(.23,1,.32,1);
}
.video-lightbox.open .lightbox-inner { transform: scale(1); }
 
.lightbox-inner iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}
 
.lightbox-close {
  position: absolute;
  top: -16px; right: -16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold, #c9a961);
  border: none; color: var(--forest, #0a2e1a);
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.lightbox-close:hover { transform: scale(1.1) rotate(90deg); }
 
/* ─────────────── TESTIMONIALS ─────────────── */
.testimonials-header {
  margin-bottom: 2.5rem;
}
 
.testimonials-track-wrapper {
  position: relative;
  overflow: hidden;
}
 
/* Fade edges */
.testimonials-track-wrapper::before,
.testimonials-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px; z-index: 2;
  pointer-events: none;
}
.testimonials-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.testimonials-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}
 
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(.23,1,.32,1);
  will-change: transform;
  padding: 10px 4px;
}
 
.testimonial-card {
  min-width: 360px;
  background: var(--cream, #fdf8f0);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(10,46,26,0.07);
  border: 1px solid rgba(10,46,26,0.06);
  display: flex; flex-direction: column; gap: 1rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(10,46,26,0.12);
  border-color: rgba(201,169,97,0.25);
}
 
/* Quote mark decoration */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: rgba(201,169,97,0.08);
  line-height: 1;
  pointer-events: none;
}
 
/* Star rating */
.t-stars { display: flex; gap: 3px; }
.t-stars i { color: var(--gold, #c9a961); font-size: 0.9rem; }
 
.t-text {
  font-size: 0.93rem;
  color: #4a6357;
  line-height: 1.75;
  flex: 1;
}
 
.t-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 1rem;
  border-top: 1px solid rgba(10,46,26,0.07);
}
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest, #0a2e1a), #1a5c38);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold, #c9a961);
  font-weight: 700;
  flex-shrink: 0;
}
.t-author-info strong {
  display: block;
  font-size: 0.9rem; font-weight: 700;
  color: var(--forest, #0a2e1a);
}
.t-author-info span {
  font-size: 0.78rem;
  color: #6b7f73;
}
.t-doctor-tag {
  margin-left: auto;
  padding: 4px 10px;
  background: rgba(10,46,26,0.07);
  border-radius: 20px;
  font-size: 0.7rem; font-weight: 600;
  color: var(--forest, #0a2e1a);
  white-space: nowrap;
}
 
/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(10,46,26,0.15);
  background: white;
  color: var(--forest, #0a2e1a);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(10,46,26,0.08);
}
.slider-btn:hover {
  background: var(--forest, #0a2e1a);
  color: white;
  border-color: var(--forest, #0a2e1a);
  transform: scale(1.08);
}
 
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(10,46,26,0.15);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.slider-dot.active {
  width: 24px; border-radius: 4px;
  background: var(--gold, #c9a961);
}
 
/* Google rating strip */
.rating-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 2rem;
  background: var(--cream);
  border-radius: 16px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.rating-strip .rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold, #c9a961);
  line-height: 1;
}
.rating-strip .rating-meta { flex: 1; }
.rating-strip .rating-meta strong {
  display: block; color: var(--forest);
  font-size: 0.9rem; margin-bottom: 4px;
}
.rating-strip .rating-meta span { color: var(--forest); font-size: 0.8rem; }
.rating-strip .rating-stars { display: flex; gap: 4px; margin-top: 4px; }
.rating-strip .rating-stars i { color: var(--gold, #c9a961); font-size: 1rem; }
.rating-strip .g-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px; color: var(--forest);
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none;
}
.rating-strip .g-badge i { color: #4285F4; }
 
.highlight{
    color:var(--gold);
}





/*===================

slider

==================*/

/* Wrapper alignment */
.gallery_slider {
  position: relative;
}

/* DOTS CENTER */
.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.slick-dots li {
  width: auto;
  height: auto;
}

/* Normal dots */
.slick-dots li button {
  width: 8px;
  height: 8px;
  background: #cfcfcf;
  border-radius: 50%;
  border: none;
  padding: 0;
  font-size: 0;
}

/* Active dot (pill style like your image) */
.slick-dots li.slick-active button {
  width: 24px;
  height: 8px;
  background: #c9a646; /* gold tone */
  border-radius: 10px;
}

/* ARROWS */
.custom-prev,
.custom-next {
  position: absolute;
  bottom: -10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f3f3f3;
  border: none;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2;
  transition: all 0.3s ease;
}

/* LEFT */
.custom-prev {
  left: 35%;
}

/* RIGHT */
.custom-next {
  right: 35%;
}

/* Hover effect */
.custom-prev:hover,
.custom-next:hover {
  background: #e0e0e0;
}

/* Make arrow icon bold */
.custom-prev::before,
.custom-next::before {
  display: none;
}

.custom-prev { left: 30%; }
.custom-next { right: 30%; }
.gallery_slider li{
  list-style: none;
  padding:0 10px;
}

.gallery_slider li img{
  width: 100%;
}
/*===================

slider

==================*/

/* =============================
===========================
=========================
Style here
=====================================
=====================================
===================================== */



/* =============================
===========================
=========================
Style here
=====================================
=====================================
===================================== */

 
/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-stack { height: 420px; }
  .about-img-main { height: 360px; }
   .videos-grid { grid-template-columns: repeat(2, 1fr); }

   .hero-videos .video-wrap:first-child{
    display: none;
   }
   .hero-videos{
    justify-content: end;
   }

   .hero-stats{
    display: none;
   }
}
 

@media (max-width: 768px) {

  .custom-prev,
.custom-next {

  bottom: 50px;

}



  nav { padding: 0 4vw; height: 64px; }
  .nav-contacts { gap: 0.5rem; }
  .nav-phone { display:none; }
  .nav-phone:first-child { display:flex; }
  .nav-book { padding: 9px 18px; font-size: 0.85rem; }

  .hero { padding: 80px 5vw 50px;flex-wrap: wrap; }
  .hero-content{width: 100%;}
  .hero-videos{width: 100%;justify-content: center;}
  .hero-videos iframe{height: 365px;}
  .hero-stat { padding: 14px 20px; }
  .hero-stat strong { font-size: 1.5rem; }
  .hero-stats { border-radius: 12px; }
  .btn-primary{padding: 13px 15px !important;}

  .section { padding: 60px 4vw; }

  .doctors-grid { grid-template-columns: 1fr; }
  .doctor-card { grid-template-columns: 1fr; }
  .doctor-photo { min-height: 300px; max-height: 300px; }
  .doctor-photo img{object-fit: cover;object-position: center;}

  .services-header { flex-direction: column; align-items: flex-start; }
  #services-mohit, #services-anee { grid-template-columns: 1fr; }

  .contact-inner { flex-direction: column; }
  .contact-cards { 
    justify-content: space-around;
   }
   .contact-card{
    width: 45%;
   }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom { flex-direction: column; text-align:center; gap: 0.5rem; }

  .fab-group { bottom: 20px; right: 20px; }
  .fab { width: 52px; height: 52px; font-size: 1.3rem; }

  .timing-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }

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

  .about-section { padding: 60px 4vw; }
  .about-img-stack { height: 340px; }
  .about-img-main { height: 280px; width: 82%; }
  .about-img-secondary { height: 200px; }
  .about-badge { top: 16px; padding: 14px 16px; }
  .about-badge strong { font-size: 1.6rem; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-img-tag { bottom: 208px; }
    .social-proof-section { padding: 60px 4vw; }
  .sp-header { flex-direction: column; align-items: flex-start; }
  .videos-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 300px; }
  .rating-strip { flex-direction: column; text-align: center; gap: 1rem; }
  .rating-strip .rating-meta { text-align: center; }
  .rating-strip .rating-stars { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stat{ width:33% ; }

  .hero-stat:last-child{
    width: 100%;
  }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(201,169,97,0.15); }
  .hero-stat:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .about-img-stack { height: 300px; }
  .about-img-secondary { display: none; }
  .about-img-main { width: 100%; height: 280px; }
  .about-badge { display: none; }
  .about-img-tag { bottom: 16px; }


    .testimonial-card { min-width: 280px; padding: 1.5rem; }
  .t-doctor-tag { display: none; }

}