html{
  scroll-behavior:smooth;
}

img{
  max-width:100%;
  height:auto;
}*
{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f8f8fc;
  overflow-x:hidden;
}

/* HERO SECTION */

.hero{
  min-height:100vh;
  padding:40px 7%;
  background:
  radial-gradient(circle at top left, rgba(112, 92, 255, 0.12), transparent 35%),
  radial-gradient(circle at bottom right, rgba(0, 200, 150, 0.10), transparent 30%),
  #f7f7fb;
}

/* NAVBAR */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:60px;
}

.logo{
  display:flex;
  align-items:center;
  gap:18px;
}

.logo img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:50%;
  background:#fff;
  padding:6px;
  box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.logo span{
  font-size:1.6rem;
  font-weight:700;
  color:#111827;
}

.appointment-btn{
  text-decoration:none;
   background:#ccfccb;
  color:#1f2937;
  padding:14px 28px;
  border-radius:50px;
  font-weight:500;
  transition:0.3s ease;
  box-shadow:0 10px 25px rgba(91,61,245,0.2);
}

.appointment-btn:hover{
  transform:translateY(-2px);
  background:#b8efb7;
}

/* HERO CONTAINER */

.hero-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;
}

/* LEFT SIDE */

.hero-text{
  flex:1;
}

.tag{
  display:inline-block;
  background:#eef8ee;
  color:#6c9c6b;
  padding:10px 18px;
  border-radius:50px;
  font-size:0.95rem;
  font-weight:500;
  margin-bottom:25px;
}

.hero-text h1{
  font-size:5rem;
  line-height:1.05;
  color:#013b00;
  margin-bottom:24px;
  font-weight:700;
}

.hero-text p{
  font-size:1.1rem;
  color:#6b7280;
  line-height:1.9;
  max-width:650px;
  margin-bottom:35px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  gap:18px;
  margin-bottom:45px;
}

.primary-btn{
  text-decoration:none;
  background:#ccfccb;
  color:#355e35;
  box-shadow:0 10px 25px rgba(108,156,107,0.18);
  padding:16px 32px;
  border-radius:50px;
  font-weight:500;
  transition:0.3s ease;
}

.primary-btn:hover{
   background:#b8efb7;
  transform:translateY(-3px);
}

.secondary-btn{
  text-decoration:none;
   color:#3d5a3c;
  border:2px solid #d8d8ff;
  padding:16px 28px;
  border-radius:50px;
  font-weight:500;
  transition:0.3s ease;
  background:#fff;
}

.secondary-btn:hover{
 background:#e6f7e5;
}

/* FEATURES */

.hero-features{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.feature-box{
  background:#f9fff9;;
  padding:18px 22px;
  border-radius:18px;
  border:1px solid #e4f2e4;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.feature-box i{
  width:45px;
  height:45px;
  background:#eef8ee;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#6c9c6b;
  font-size:1rem;
}

.feature-box span{
  color:#222;
  font-weight:500;
}

/* RIGHT IMAGE */

.hero-image{
  flex:1;
  display:flex;
  justify-content:center;
}

.hero-image img{
  width:100%;
  max-width:540px;
  border-radius:35px;
  object-fit:cover;
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* RESPONSIVE */

@media(max-width:1100px){

  .hero-text h1{
    font-size:4rem;
  }

  .hero-container{
    gap:40px;
  }

}

@media(max-width:900px){

  .hero-container{
    flex-direction:column-reverse;
    text-align:center;
  }

  .hero-text p{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
  }

  .hero-features{
    justify-content:center;
  }

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  .hero-text h1{
    font-size:3.2rem;
  }

}

@media(max-width:600px){

  .hero{
    padding:30px 5%;
  }

  .hero-text h1{
    font-size:2.5rem;
  }

  .hero-text p{
    font-size:1rem;
    line-height:1.7;
  }

  .primary-btn,
  .secondary-btn{
    width:100%;
    text-align:center;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .feature-box{
    width:100%;
    justify-content:center;
  }

}
/* ABOUT PAGE HERO */

.about-hero{
  min-height:70vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 8%;
  overflow:hidden;
  background:
  linear-gradient(rgba(10,10,30,0.75), rgba(10,10,30,0.75)),
  url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?q=80&w=1400&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
}

.about-content{
  position:relative;
  z-index:2;
  max-width:900px;
  text-align:center;
  color:#fff;
}

.small-tag{
  display:inline-block;
  padding:10px 18px;
  background:rgba(255,255,255,0.15);
  border-radius:50px;
  margin-bottom:25px;
  font-size:0.95rem;
  backdrop-filter:blur(10px);
}

.about-content h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:25px;
}

.about-content p{
  line-height:2;
  font-size:1.05rem;
  color:#e5e7eb;
  margin-bottom:35px;
}

.back-btn{
  text-decoration:none;
  background:#ccfccb;
  color:#355e35;
  box-shadow:0 10px 25px rgba(108,156,107,0.18);
  padding:16px 32px;
  border-radius:50px;
  font-weight:500;
  transition:0.3s ease;
}

.back-btn:hover{
   background:#b8efb7;
  transform:translateY(-3px);
}

/* SERVICES SECTION */

.services-section{
  background:#f7fff7;
  padding:100px 6%;
}

.section-heading{
  text-align:center;
  margin-bottom:70px;
}

.section-heading span{
color:#6c9c6b;
  font-weight:600;
  font-size:1rem;
}

.section-heading h2{
  font-size:3rem;
  margin-top:15px;
  margin-bottom:20px;
  color:#151515;
}

.section-heading p{
  max-width:700px;
  margin:auto;
  color:#6b7280;
  line-height:1.9;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.service-card{
  background:#f9fff9;
  border-radius:28px;
  padding:38px 34px;
  transition:0.4s ease;
  border:1px solid #e2f0e2;
  box-shadow:0 10px 30px rgba(108,156,107,0.08);
}

.service-card:hover{
  transform:translateY(-10px);
  background:#f2fbf2;
  box-shadow:0 15px 35px rgba(108,156,107,0.16);
}
.service-card:hover{
  transform:translateY(-10px);
}

.service-icon{
  width:90px;
  height:90px;
  background:#eef8ee;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:24px;
  margin-bottom:28px;
}

.service-icon i{
  color:#6c9c6b;
  font-size:2rem;
}

.service-card h3{
   font-size:1.6rem;
  line-height:1.3;
  margin-bottom:20px;
  color:#355e35;
}

.service-card p{
  color:#5f6f5f;
  line-height:1.9;
  font-size:1.05rem;
}
/* RESPONSIVE */

@media(max-width:768px){

  .about-content h1{
    font-size:2.8rem;
  }

  .section-heading h2{
    font-size:2.2rem;
  }

}

@media(max-width:500px){

  .about-content h1{
    font-size:2.2rem;
  }

  .about-content p{
    font-size:0.95rem;
    line-height:1.8;
  }

}
/* CERTIFICATES SECTION */

.certificates-section{
  padding:100px 6%;
  background:#f7f7fb;
  overflow:hidden;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:4rem;
   color:#355e35;
  margin-bottom:18px;
}

.section-title p{
  max-width:700px;
  margin:auto;
  color:#6b7280;
  line-height:1.8;
  font-size:1.05rem;
}

/* SLIDER */

.certificate-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

/* TRACK */

.certificate-track{
  display:flex;
  gap:30px;
  width:max-content;
  animation:scrollCertificates 30s linear infinite;
}

/* PAUSE ON HOVER */

.certificate-slider:hover .certificate-track{
  animation-play-state:paused;
}
/* CARD */

.certificate-card{
  min-width:220px;
  max-width:220px;
  background:#f2fbf2;
  border-radius:24px;
  overflow:hidden;
  padding:10px;
  box-shadow:0 8px 25px rgba(108,156,107,0.10);
  transition:0.4s ease;
  flex-shrink:0;
  border:1px solid #e2f0e2;
}

.certificate-card:hover{
  transform:translateY(-8px);
  background:#ecf9ec;
  box-shadow:0 12px 30px rgba(108,156,107,0.18);
}

.certificate-card img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
}

/* ANIMATION */

@keyframes scrollCertificates{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* RESPONSIVE */

@media(max-width:768px){

  .section-title h2{
    font-size:2.8rem;
  }

.certificate-card{
  min-width:180px;
  max-width:180px;
}
}

@media(max-width:500px){

  .section-title h2{
    font-size:2.2rem;
  }

  .section-title p{
    font-size:0.95rem;
  }

}
/* WELLNESS SECTION */

.wellness-section{
  padding:80px 6%;
  background:#f7fff7;
}

/* IMAGE GRID */

.wellness-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-bottom:50px;
}

.wellness-card{
  overflow:hidden;
  border-radius:28px;
  background:#eef8ee;
  box-shadow:0 10px 25px rgba(108,156,107,0.10);
  transition:0.4s ease;
}

.wellness-card:hover{
  transform:translateY(-8px);
}

.wellness-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}

/* BOTTOM CONTENT */

.wellness-bottom{
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
  align-items:flex-start;
}

/* BRAND */

.wellness-brand{
  flex:1.2;
}

.brand-logo{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:20px;
}

.brand-logo img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
  background:#fff;
  padding:5px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.brand-logo span{
  font-size:2rem;
  font-weight:700;
  color:#6c9c6b;
}

.wellness-brand h2{
  font-size:clamp(2rem,5vw,3.5rem);
  line-height:1.1;
  color:#6c9c6b;
}

/* INFO */

.wellness-info{
  flex:1;
}

.wellness-info p{
  font-size:1.2rem;
  color:#374151;
  line-height:1.8;
}

/* CONTACT */

.wellness-contact{
  flex:1;
}

.wellness-contact p{
  font-size:1.15rem;
  color:#374151;
  margin-bottom:15px;
  line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .wellness-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .wellness-bottom{
    flex-direction:column;
  }

  .wellness-brand h2{
    font-size:2.5rem;
  }

}

@media(max-width:550px){

  .wellness-grid{
    grid-template-columns:1fr;
  }

  .wellness-card img{
    height:260px;
  }

  .wellness-brand h2{
    font-size:2rem;
  }

  .brand-logo span{
    font-size:1.5rem;
  }

}
/* =========================
   SUCCESS PAGE
========================= */

.success-section{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#f7fff7;
  position:relative;
  overflow:hidden;
  padding:20px;
}

.success-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
}

.glow1{
  width:320px;
  height:320px;
  background:#ccfccb;
  top:-100px;
  left:-100px;
}

.glow2{
  width:280px;
  height:280px;
  background:#e4f8e4;
  bottom:-100px;
  right:-100px;
}

/* CARD */

.success-card{
  position:relative;
  z-index:2;
  max-width:620px;
  width:100%;
  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(14px);
  border-radius:36px;
  padding:70px 50px;
  text-align:center;
  border:1px solid #e2f0e2;
  box-shadow:0 20px 50px rgba(108,156,107,0.12);

  animation:fadeUp 1s ease;
}

/* ICON */

.success-icon{
  font-size:5rem;
  color:#6c9c6b;
  margin-bottom:25px;

  animation:pop 1s ease infinite alternate;
}

/* TEXT */

.success-card h1{
  font-size:3rem;
  color:#355e35;
  margin-bottom:20px;
  line-height:1.2;
}

.success-card p{
  color:#5f6f5f;
  line-height:1.9;
  margin-bottom:40px;
}

/* BUTTON */

.success-btn{
  display:inline-block;
  text-decoration:none;
  background:#ccfccb;
  color:#355e35;
  padding:18px 38px;
  border-radius:50px;
  font-weight:600;
  transition:0.3s ease;
}

.success-btn:hover{
  background:#b8efb7;
  transform:translateY(-3px);
}

/* ANIMATIONS */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

@keyframes pop{

  from{
    transform:scale(1);
  }

  to{
    transform:scale(1.08);
  }

}

/* MOBILE */

@media(max-width:768px){

  .success-card{
    padding:50px 25px;
  }

  .success-card h1{
    font-size:2.2rem;
  }

}
/* FOOTER */

.site-footer{
  width:100%;
  padding:25px 20px;
  background:#edf7ed;
  border-top:1px solid #d6e8d6;
  text-align:center;
  margin-top:60px;
}

.footer-links{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:12px;
}

.footer-links a{
  text-decoration:none;
  color:#7d8b7d;
  font-size:14px;
  transition:0.3s ease;
}

.footer-links a:hover{
  color:#5d8a5d;
}

.footer-links span{
  color:#b8c4b8;
}

.footer-text{
  font-size:13px;
  color:#9aa79a;
}
@media (max-width:900px){

  .wellness-grid{
    grid-template-columns:repeat(2,1fr);
  }

}
@media (max-width:768px){

  .logo img{
    width:70px;
    height:70px;
  }

  .logo span{
    font-size:1.3rem;
  }

}
@media (max-width:768px){

  .hero{
    padding:25px 20px;
  }

  .hero-buttons{
    width:100%;
  }

  .primary-btn,
  .secondary-btn{
    width:100%;
    display:block;
  }

  .section-title h2,
  .section-heading h2{
    font-size:2rem;
  }

  .certificate-track{
    gap:15px;
  }

  .footer-links{
    flex-direction:column;
    gap:8px;
  }

  .footer-links span{
    display:none;
  }

}
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  color:white;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:28px;
  text-decoration:none;
  z-index:9999;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.whatsapp-float:hover{
  transform:scale(1.08);
}
.doctor-title{
    text-align:center;
    margin-top:15px;
    color:#355e35;
}

.doctor-title{
    font-size:24px;
    font-weight:700;
}

.doctor-title span{
    display:block;
    margin-top:5px;
    font-size:18px;
    font-weight:500;
    color:#6b7280;
}
.online-consultation{
    font-weight:700;
    color:#ccfccb;
    display:inline-block;
}