body{
      margin: 0;
      padding: 0;
      overflow-x: hidden;
}
:root{
  --teal:#05383a;    /* primary dark teal */
  --maroon:#b25050;  /* appointment button color */
  --muted:#393d43;
  --bg:#ffffff;
  --light:#f6f8f9;
  --card:#ffffff;
  --radius:12px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}
*{box-sizing:border-box}
.wrap{max-width:1180px;margin:0 auto;padding:18px}
p{
      font-size: 18px;
}
/* topbar */
.topbar{background:var(--teal);color:#fff;font-size:0.92rem}
.topbar .top-inner{display:flex;justify-content:space-between;align-items:center}
.topbar a{color:#fff;text-decoration:none;margin-left:10px}

/* header main */
.header-main{background:#fff;position:sticky;top:0;z-index:40;border-bottom:1px solid #e6eef3}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:12px}
.brand{font-weight:800;color:var(--teal);text-decoration:none;font-size:1.05rem}
.nav{
  list-style-type: none;
  display:flex;
  gap:12px;
  align-items:center
}
.nav a{color:var(--teal);text-decoration:none;padding:8px;border-radius:8px;font-weight:600}
.nav a:hover{background:#f2f7f8}
.btn.cta{
      font-size: 20px;
      background:var(--maroon);
      color:#fff;
      padding:8px 12px;
      border-radius:10px;
      font-weight: 500;
}

/* mobile nav toggle */
.nav-toggle{display:none;border:0;background:transparent;font-size:1.2rem}
@media (max-width:900px){
  .nav{
      display:none;position:absolute;
      left:0;
      top:64px;
      right:0;
      background:#fff;
      flex-direction:column;
      padding:16px;
      border-top:1px solid #eee
}
  .nav-show{display:flex !important}
  .nav-toggle{display:block}
}


/* hero style */
.hero-wrap{padding:28px 0;background:linear-gradient(180deg,#ffffff,#fbfeff)}
.hero-grid{display:grid;grid-template-columns:1fr 420px;gap:20px;align-items:center}
.hero-text h1{font-size:clamp(1.4rem,3.2vw,2.4rem);margin:0;color:var(--teal)}
.subtitle{
      color:var(--muted);
      margin:8px 0 16px;
      font-weight:500;
      font-size: 18px;

}
.hero-ctas{display:flex;gap:10px;margin-bottom:10px}
.btn{
      display:inline-block;
      font-size: 20px;
      padding:15px 20px;
      border-radius:10px;
      text-decoration:none;
      font-weight:500;
}

.small-feat{
      font-size: 16px;
}
.btn.primary{background:var(--teal);color:#fff}
.btn.secondary{background:var(--maroon);color:#fff}
.hero-img img{width:100%;border-radius:12px;display:block;object-fit:cover;height:320px}

/* For diagonal clipped look similar to reference, we can use pseudo mask on large screens */
@media(min-width:1000px){
  .hero-img{
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  }
}
@media (max-width:999px){
  .hero-grid{
    grid-template-columns:1fr
  }
  .hero-img img{
    height:260px
  }
}

/* service style */
/* ===== Treatments Section (GRID) ===== */
/* ===== Container (not full width) ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Treatments Section ===== */
.treatments-section {
  padding: 70px 0;
  text-align: center;
  background: #fff;
}

.sub-heading {
  color: #0099cc;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-desc {
  color: #666;
  margin-bottom: 40px;
  font-size: 15px;
}

/* ===== Grid Layout ===== */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.treatment-card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: center;
}

.treatment-card i {
  font-size: 45px;
  color: #0099cc;   /* your brand color */
  margin-bottom: 15px;
  display: inline-block;
}

.treatment-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #05383a;;
}

.treatment-card p {
  font-size: 14px;
  color: #555;
}

.treatment-card:hover {
  background: #05383A;
  color: #fff;
  transform: translateY(-5px);
}

.treatment-card:hover i {
  color: #fff;
}

.treatment-card:hover p {
  color: #fff;
}
.treatment-card:hover h3 {
  color: #fff;
}

/* about us */
.about{padding:26px 0}
.about-grid{
      display:grid;
      grid-template-columns:500px 1fr;gap:50px;
      align-items:center
}
.about-photo img{
      width:100%;
      border-radius:12px;
      box-shadow: 0 12px 30px rgba(2,6,23,0.08)
}
.about-content h2{margin:0 0 12px;color:var(--teal)}
.about-content p{color:var(--muted);line-height:1.6}
@media (max-width:900px){
  .about-grid{grid-template-columns:1fr}
  .about-photo img{height:320px;object-fit:cover}
}

/* call to action */
.clinic-intro{padding:26px 0}
.clinic-grid{display:grid;grid-template-columns:1fr 300px;gap:16px;align-items:center}
.clinic-photo-small img{width:100%;border-radius:12px}
.cta-strip{background:var(--teal);color:#fff;padding:18px 0;margin-top:14px}
.cta-inner{display:flex;justify-content:space-between;align-items:center;gap:12px}
.cta-text{
  font-size: 1.8rem;
  font-weight:800
}
  
@media (max-width:900px){
  .clinic-grid{
    grid-template-columns:1fr
  }
}
@media (max-width:600px){
  .cta-inner{
  flex-direction:column;gap:8px
}
}

/* feedback customer */
.video-section{
      padding:28px 0;
}

.video-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
}
.video-card{
      background:#fff;
      padding:15px;
      border-radius:8px;
      box-shadow:0 8px 22px rgba(2,6,23,0.06);
      cursor:pointer;
}
.thumb{height:150px;background-size:cover;background-position:center;border-radius:6px;position:relative;display:flex;align-items:center;justify-content:center}
.play{background:rgba(0,0,0,0.45);color:#fff;padding:8px 12px;border-radius:50%;font-weight:700}
.video-title{padding:10px 6px;font-weight:700;color:var(--teal)}
.video-modal{position:fixed;left:0;top:0;right:0;bottom:0;background:rgba(0,0,0,0.7);display:none;align-items:center;justify-content:center;z-index:9999}
.video-modal.open{display:flex}
.video-modal-inner{width:90%;max-width:900px;position:relative}
.video-frame iframe{width:100%;height:520px;border:0;border-radius:6px}
.Review-text{
      font-size: 16px;
}
.modal-close{position:absolute;right:-8px;top:-8px;background:#fff;border-radius:50%;border:0;padding:6px}
@media (max-width:900px){ .video-grid{grid-template-columns:repeat(2,1fr)} .video-frame iframe{height:360px} }
@media (max-width:520px){ .video-grid{grid-template-columns:1fr} .video-frame iframe{height:220px} }

/* footer section */
/* ===== Footer Styling ===== */
.footer {
  background: #05383A; /* your brand color */
  color: #fff;
  padding: 60px 0 20px;
  font-size: 15px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-logo {
  font-size: 22px;
}

.footer-col p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-links a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}

.social-links a:hover {
  color: #222;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
  font-size: 14px;
}

/* faq style */

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #05383A;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #05383A;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
}

.faq-answer p {
  margin: 15px 0;
  font-size: 16px;
  color: #555;
}

/* Active class */
.faq-item.active .faq-answer {
  max-height: 200px; /* expands smoothly */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #0099cc;
}

/* Responsive */
@media (max-width: 600px) {
  .section-title {
    font-size: 24px;
  }
  .faq-question {
    font-size: 16px;
  }

  .wrap {
    margin: 0;
    pad: 1180px;
    margin: 0 auto;
    padding: 8px 8px;
    text-align: center;
}
.btn {
    display: inline-block;
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
}
}

/* Responsive design */
@media (min-width: 768px) and (max-width: 1024px) {
  /* 👇 yaha apna CSS likhiye */
  .btn {
    font-size: 14px;
  }
  .cta-text {
    font-size: 1.3rem !important;
    margin-bottom: 15px;
}

.btn.secondary {
    font-size: 16px;
}
}
/* scrolliing  content */
.consultancy-marquee {
 width: 100%;
  background: #05383a;
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  margin: 0;   
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.marquee-content {
  display: flex;
}

.marquee-content span {
  margin-right: 60px;
  white-space: nowrap;
}

/* Continuous Scroll Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* whatsapp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: bounce 2s infinite;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5c;
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 600px) {
  html, body {
    overflow-x: hidden !important; /* no horizontal scroll on mobile */
  }
}

/* about us css */
.about-section {
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
      margin: 40px auto;
      max-width: 1000px;
      background-color: #ffffff;
    }
    .about-header h1 {
      color: #05383a;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .about-header p {
      color: #6c757d;
      font-size: 1.1rem;
    }
    .section-title {
      color: #05383a;
      font-weight: 600;
      margin-top: 30px;
    }
    .doctor-photo {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #fff;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 15px;
    }
    ul li {
      margin-bottom: 8px;
    }
    small{
        font-size: smaller;
        color: #8a6b04;
    }

