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

:root{
  --teal:#2AABB8;
  --teal-dark:#1E8A96;
  --teal-deeper:#155F68;
  --teal-pale:#E6F6F8;
  --teal-light:#7DCDD6;
  --orange:#F47C20;
  --orange-dark:#D4660F;
  --orange-pale:#FEF0E6;
  --orange-light:#F9A564;
  --dark:#111827;
  --dark2:#1F2937;
  --text:#374151;
  --muted:#6B7280;
  --border:#E5E7EB;
  --white:#FFFFFF;
  --bg:#F9FAFB;
}

html{scroll-behavior:smooth}
body{font-family:'Hind Siliguri','DM Sans',sans-serif;background:var(--bg);color:var(--text);overflow-x:hidden}


/* ── HERO ── */
/* ── HERO ── */
#hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=85');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(21,95,104,0.93) 0%, rgba(21,95,104,0.78) 45%, rgba(21,95,104,0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 90px 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;

  /* ✅ CENTER CONTENT */
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 40px;
  background: rgba(244,124,32,0.18);
  border: 1px solid rgba(244,124,32,0.5);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--orange-light);
  text-transform: uppercase;
  margin-bottom: 20px;
  justify-content: center; /* Center pill */
}

.hero-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-light);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 16px 0;
  text-align: center; /* Ensure title is centered */
}

.hero-title em {
  font-style: italic;
  color: var(--orange-light);
  display: block;
}

.hero-sub {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 420px;
  margin: 0 auto 32px auto; /* Center with auto margins */
  text-align: center;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center; /* Center buttons */
  width: 100%;
}

.btn-p {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244,124,32,0.4);
}

.btn-o {
  padding: 12px 28px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.3s, border-color 0.3s;
}

.btn-o:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ✅ CENTERED STATS */
.hero-stats {
  position: absolute;
  bottom: -16px;
  transform: translateX(-50%); /* Center horizontally */
  z-index: 2;
  display: flex;
  gap: 0;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.7s forwards;


}

.stat-box {
  padding: 16px 22px;
  text-align: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  min-width: 800px;
}

.stat-box:first-child { border-radius: 12px 0 0 12px; }
.stat-box:last-child { border-radius: 0 12px 12px 0; }

.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--orange-light);
  line-height: 1;
}

.stat-l {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Scroll Hint - Keep centered */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: sLine 2s ease-in-out infinite;
}

@keyframes sLine {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

/* ✅ RESPONSIVE CENTERING */
@media (max-width: 768px) {
  .hero-content {
    padding: 60px 20px 80px;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }
  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .btn-p, .btn-o {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .stat-box {
    border-radius: 12px !important;
    margin: 4px;
  }
}
/* ── COMMONS ── */
section{padding:72px 56px;}
.sec-label{
  display:inline-flex;align-items:center;gap:7px;
  font-size:18px;font-weight:600;letter-spacing:0.14em;
  text-transform:uppercase;color:var(--teal-dark);margin-bottom:10px;
}
.sec-label::before{content:'';width:18px;height:2px;background:var(--teal);border-radius:2px}
.sec-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(26px,3.5vw,42px);font-weight:400;line-height:1.18;
  color:var(--dark);margin-bottom:12px;
}
.sec-title em{font-style:italic;color:var(--teal-dark)}
.sec-sub{font-size:20px;font-weight:300;line-height:1.8;color:var(--muted);max-width:480px}

.reveal{opacity:0;transform:translateY(28px);transition:opacity 0.7s cubic-bezier(0.22,1,0.36,1),transform 0.7s cubic-bezier(0.22,1,0.36,1)}
.reveal.visible{opacity:1;transform:translateY(0)}
.rd1{transition-delay:0.08s}.rd2{transition-delay:0.15s}.rd3{transition-delay:0.22s}
.rd4{transition-delay:0.29s}.rd5{transition-delay:0.36s}.rd6{transition-delay:0.43s}

/* ── SERVICES ── */
#services{max-width:2000px;margin:10px auto}
.sec-head{margin-bottom:40px}
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.svc-card{
  position:relative;overflow:hidden;
  padding:24px 22px;border-radius:14px;
  background:var(--bg);border:1px solid var(--border);cursor:pointer;
  transition:transform 0.35s cubic-bezier(0.22,1,0.36,1),box-shadow 0.35s,border-color 0.35s;
}
.svc-card:hover{transform:translateY(-5px);box-shadow:0 16px 40px rgba(42,171,184,0.12);border-color:var(--teal-light)}
.svc-card.feat{background:linear-gradient(140deg,var(--teal-dark),var(--teal-deeper));border-color:transparent}
.svc-card.feat:hover{box-shadow:0 16px 40px rgba(42,171,184,0.3)}
.svc-ico{
  width:40px;height:40px;border-radius:10px;
  background:var(--teal-pale);
  display:flex;align-items:center;justify-content:center;margin-bottom:14px;
  transition:background 0.35s;
}
.svc-ico svg{width:20px;height:20px;color:var(--teal-dark);transition:color 0.35s}
.svc-card:hover:not(.feat) .svc-ico{background:var(--teal)}
.svc-card:hover:not(.feat) .svc-ico svg{color:#fff}
.feat .svc-ico{background:rgba(255,255,255,0.15)}
.feat .svc-ico svg{color:var(--orange-light)}
.svc-name{font-family:'Cormorant Garamond',serif;font-size:17px;font-weight:600;color:var(--dark);margin-bottom:7px}
.feat .svc-name{color:#fff}
.svc-desc{font-size:12px;line-height:1.72;color:var(--muted)}
.feat .svc-desc{color:rgba(255,255,255,0.65)}
.svc-arr{
  margin-top:14px;display:inline-flex;align-items:center;gap:5px;
  font-size:10px;font-weight:600;letter-spacing:0.08em;
  color:var(--teal);text-transform:uppercase;
  opacity:0;transform:translateX(-8px);transition:opacity 0.35s,transform 0.35s;
}
.svc-card:hover .svc-arr{opacity:1;transform:translateX(0)}
.feat .svc-arr{color:var(--orange-light);opacity:1;transform:none}

/* ── ABOUT ── */
#about{max-width:2000px;margin:10px auto}
.about-wrap{display:grid;grid-template-columns:1fr 1.1fr;gap:56px;align-items:center}
.about-img-wrap{position:relative}
.about-img-frame{
  position:relative;border-radius:20px;overflow:hidden;aspect-ratio:3/4;
  max-height:420px;
}
.about-img-frame img{width:100%;height:100%;object-fit:cover;object-position:top;transition:transform 0.7s cubic-bezier(0.22,1,0.36,1)}
.about-img-frame:hover img{transform:scale(1.04)}
.about-img-frame::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(21,95,104,0.55),transparent 55%)}
.about-badge{
  position:absolute;bottom:-16px;right:-16px;
  padding:16px 18px;border-radius:14px;
  background:linear-gradient(135deg,var(--orange),var(--orange-light));
  box-shadow:0 8px 28px rgba(244,124,32,0.35);
  z-index:2;text-align:center;min-width:110px;
}
.about-badge-n{font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:600;color:#fff;line-height:1}
.about-badge-t{font-size:9px;font-weight:500;color:rgba(255,255,255,0.85);letter-spacing:0.06em;margin-top:2px}
.about-leaf{position:absolute;top:-14px;left:-14px;width:56px;height:56px;background:var(--teal-pale);border-radius:50%;opacity:0.7}
.about-content{}
.dr-name{font-family:'Cormorant Garamond',serif;font-size:28px;font-weight:600;color:var(--dark);margin:12px 0 4px}
.dr-deg{font-size:19px;color:var(--teal-dark);font-weight:500;letter-spacing:0.07em;margin-bottom:18px}
.about-p{font-size:19px;line-height:1.82;color:var(--muted);margin-bottom:16px}
.quals{display:flex;flex-direction:column;gap:7px;margin-bottom:22px}
.qual{display:flex;align-items:flex-start;gap:9px;font-size:18px;color:var(--text)}
.q-dot{width:6px;height:6px;border-radius:50%;background:linear-gradient(135deg,var(--teal),var(--orange));flex-shrink:0;margin-top:4px}
.sig{font-family:'Cormorant Garamond',serif;font-size:22px;font-style:italic;color:var(--teal-dark);border-top:1px solid var(--border);padding-top:16px}

/* ── WHY ── */
#why{
  background:linear-gradient(150deg,var(--teal-deeper) 0%,var(--teal-dark) 100%);
  max-width:2000px;margin:10px auto;
  position:relative;overflow:hidden;
}
#why::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 70% at 90% 40%,rgba(244,124,32,0.15),transparent)}
#why .sec-label{color:var(--orange-light)}
#why .sec-label::before{background:var(--orange)}
#why .sec-title{color:#fff}
#why .sec-sub{color:rgba(255,255,255,0.55)}
.why-inner{position:relative;z-index:1}
.why-header{margin-bottom:40px}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.why-card{
  padding:22px 20px;border-radius:12px;
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.09);
  transition:background 0.35s;
}
.why-card:hover{background:rgba(255,255,255,0.1)}
.why-ico{
  width:36px;height:36px;border-radius:9px;margin-bottom:12px;
  background:rgba(244,124,32,0.2);
  display:flex;align-items:center;justify-content:center;
}
.why-ico svg{width:18px;height:18px;color:var(--orange-light)}
.why-n{font-family:'Cormorant Garamond',serif;font-size:36px;font-weight:400;color:rgba(255,255,255,0.12);line-height:1;margin-bottom:8px}
.why-t{font-size:22px;font-weight:600;color:#fff;margin-bottom:6px}
.why-d{font-size:19px;line-height:1.75;color:rgba(255,255,255,0.5)}

/* ── CASES ── */
#cases{max-width:2000px;margin:10px auto}
.cases-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.case-card{
  border-radius:14px;overflow:hidden;
  border:1px solid var(--border);
  transition:transform 0.35s cubic-bezier(0.22,1,0.36,1),box-shadow 0.35s;
  background:var(--bg);
}
.case-card:hover{transform:translateY(-5px);box-shadow:0 14px 36px rgba(42,171,184,0.12)}
.case-img{position:relative;height:160px;overflow:hidden}
.case-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s}
.case-card:hover .case-img img{transform:scale(1.07)}
.case-img-ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(21,95,104,0.7),transparent)}
.case-tag{
  position:absolute;top:10px;left:10px;
  padding:3px 10px;border-radius:20px;
  background:var(--orange);
  font-size:9px;font-weight:700;letter-spacing:0.07em;
  color:#fff;text-transform:uppercase;
}
.case-body{padding:18px}
.case-cond{font-family:'Cormorant Garamond',serif;font-size:18px;font-weight:600;color:var(--dark);margin-bottom:7px}
.case-sum{font-size:12px;line-height:1.7;color:var(--muted);margin-bottom:12px}
.case-res{
  display:flex;align-items:center;gap:8px;
  padding:8px 12px;background:var(--teal-pale);border-radius:8px;
}
.res-dot{width:6px;height:6px;background:var(--teal-dark);border-radius:50%;flex-shrink:0}
.res-txt{font-size:11px;font-weight:600;color:var(--teal-dark)}

/* ── APPOINTMENT ── */
#appt{
  background:linear-gradient(135deg,var(--teal-pale) 0%,#D0EEF1 50%,var(--orange-pale));
  max-width:2000px;margin:10px auto;
  position:relative;overflow:hidden;
}
#appt::before{
  content:'';position:absolute;top:-80px;right:-80px;
  width:360px;height:360px;border-radius:50%;
  background:radial-gradient(circle,rgba(42,171,184,0.1),transparent 70%);
}
.appt-wrap{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start}
.appt-feats{display:flex;flex-direction:column;gap:13px;margin-top:24px}
.appt-feat{display:flex;align-items:flex-start;gap:11px}
.appt-ico{width:36px;height:36px;flex-shrink:0;border-radius:9px;background:rgba(42,171,184,0.12);display:flex;align-items:center;justify-content:center}
.appt-ico svg{width:18px;height:18px;color:var(--teal-dark)}
.appt-ft strong{display:block;font-size:13px;font-weight:600;color:var(--dark);margin-bottom:1px}
.appt-ft span{font-size:11px;color:var(--muted)}
.appt-form{
  background:var(--white);border-radius:18px;padding:30px;
  box-shadow:0 16px 48px rgba(42,171,184,0.12);
}
.appt-form h3{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:600;color:var(--dark);margin-bottom:20px}
.frow{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.fgrp{display:flex;flex-direction:column;gap:4px;margin-bottom:12px}
.fgrp label{font-size:10px;font-weight:600;color:var(--muted);letter-spacing:0.05em;text-transform:uppercase}
.fgrp input,.fgrp select,.fgrp textarea{
  padding:10px 12px;border:1.5px solid var(--border);border-radius:9px;
  font-family:'Hind Siliguri','DM Sans',sans-serif;font-size:13px;color:var(--text);
  background:var(--bg);outline:none;width:100%;
  transition:border-color 0.3s,box-shadow 0.3s;
}
.fgrp input:focus,.fgrp select:focus,.fgrp textarea:focus{border-color:var(--teal);box-shadow:0 0 0 3px rgba(42,171,184,0.12)}
.fgrp textarea{resize:vertical;min-height:70px}
.fsub{
  width:100%;padding:13px;
  background:linear-gradient(135deg,var(--teal-dark),var(--teal));
  color:#fff;border:none;border-radius:11px;
  font-family:'Hind Siliguri','DM Sans',sans-serif;font-size:14px;font-weight:600;
  cursor:pointer;letter-spacing:0.04em;margin-top:4px;
  transition:transform 0.3s,box-shadow 0.3s;
}
.fsub:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(42,171,184,0.35)}

/* ── TESTIMONIALS ── */
#testi{max-width:2000px;margin:10px auto}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.testi-card{
  padding:24px;background:var(--white);border-radius:14px;
  border:1px solid var(--border);
  transition:transform 0.35s cubic-bezier(0.22,1,0.36,1),box-shadow 0.35s;
  position:relative;overflow:hidden;
}
.testi-card::before{
  content:'\201C';position:absolute;top:12px;right:18px;
  font-family:'Cormorant Garamond',serif;font-size:60px;line-height:1;
  color:rgba(42,171,184,0.08);font-weight:400;
}
.testi-card:hover{transform:translateY(-5px);box-shadow:0 14px 36px rgba(42,171,184,0.1)}
.t-stars{display:flex;gap:3px;margin-bottom:12px}
.star{width:12px;height:12px;color:var(--orange)}
.t-text{font-size:20px;line-height:1.78;color:var(--muted);margin-bottom:18px;font-style:italic}
.t-author{display:flex;align-items:center;gap:10px}
.t-avatar{width:38px;height:38px;border-radius:50%;overflow:hidden;border:2px solid var(--teal-pale)}
.t-avatar img{width:100%;height:100%;object-fit:cover}
.t-name{font-size:20px;font-weight:600;color:var(--dark)}
.t-role{font-size:18px;color:var(--muted)}
.t-tag{
  display:inline-block;margin-top:4px;
  padding:2px 8px;border-radius:20px;
  background:var(--teal-pale);color:var(--teal-dark);
  font-size:15px;font-weight:600;letter-spacing:0.06em;
}


.fl-btn svg{width:14px;height:14px}

/* ════ RESPONSIVE ════ */
@media(max-width:1024px){
  nav{padding:12px 28px}
  section{padding:60px 32px}
  #appt{padding:60px 32px}
  .hero-content{padding:90px 32px 160px}
  .hero-stats{right:32px;bottom:32px}
  .svc-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .foot-inner{padding:52px 32px 28px}
  .foot-top{grid-template-columns:1fr 1fr;gap:28px}
}

@media(max-width:768px){
  nav{padding:12px 18px}
  .nav-toggle{display:flex}
  .nav-links{
    position:fixed;top:0;right:0;bottom:0;
    width:min(300px,80vw);flex-direction:column;align-items:flex-start;gap:0;
    background:rgba(15,70,76,0.98);backdrop-filter:blur(24px);
    padding:80px 28px 36px;
    transform:translateX(100%);transition:transform 0.4s cubic-bezier(0.22,1,0.36,1);
    z-index:1000;overflow-y:auto;
  }
  .nav-links.open{transform:translateX(0)}
  .nav-links li{width:100%;border-bottom:1px solid rgba(255,255,255,0.07)}
  .nav-links li:last-child{border-bottom:none;margin-top:16px}
  .nav-links a{display:block;padding:13px 0;font-size:14px}
  .nav-cta{display:inline-flex !important;padding:11px 24px !important;font-size:12px !important}
  .nav-mobile-overlay{display:block}

  section{padding:52px 18px}
  #appt{padding:52px 18px}

  .hero-content{padding:80px 18px 90px;max-width:100%}
  .hero-title{font-size:clamp(34px,9vw,52px)}
  .hero-sub{font-size:14px}
  .hero-btns{flex-direction:column}
  .btn-p,.btn-o{width:100%;justify-content:center}
  .hero-stats{left:18px;right:18px;bottom:28px;flex-wrap:wrap;gap:2px}
  .stat-box{flex:1;min-width:90px;padding:12px 8px}
  .stat-n{font-size:22px}
  .scroll-hint{display:none}

  .svc-grid{grid-template-columns:1fr}
  .about-wrap{grid-template-columns:1fr;gap:48px}
  .about-img-wrap{max-width:360px;margin:0 auto;width:100%}
  .about-badge{right:0;bottom:-12px}
  .why-grid{grid-template-columns:1fr}
  .cases-grid{grid-template-columns:1fr}
  .appt-wrap{grid-template-columns:1fr;gap:40px}
  .appt-form{padding:22px 16px}
  .frow{grid-template-columns:1fr;gap:0}
  .testi-grid{grid-template-columns:1fr}

  .foot-inner{padding:48px 18px 28px}
  .foot-top{grid-template-columns:1fr 1fr;gap:24px}
  .foot-logo-row + .foot-about{grid-column:1/-1}
  .foot-brand{grid-column:1/-1}
  .foot-bot{flex-direction:column;align-items:flex-start}
  .foot-bot-links{gap:12px}

  .float-cta{bottom:14px;right:14px}
  .fl-btn{padding:0;width:44px;height:44px;border-radius:50%;justify-content:center}
  .fl-label{display:none}
}

@media(max-width:480px){
  nav{padding:10px 14px}
  .nav-brand-text{font-size:16px}
  section,#appt{padding:44px 14px}
  .hero-content{padding:80px 14px 220px}
  .about-badge{width:110px;padding:12px}
  .about-badge-n{font-size:26px}
  .foot-top{grid-template-columns:1fr}
  .foot-inner{padding:40px 14px 24px}
  .sec-title{font-size:clamp(24px,7vw,34px)}
}
