/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Playfair+Display:wght@400;700&family=Poppins:wght@400;700&display=swap');

/* Font Variables */
:root {
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-tertiary: 'Poppins', sans-serif;
}
html{
  scroll-behavior: smooth;
  font-size: 16px; /* Base font size */
  overflow-x: hidden;
}


/* Apply Fonts */
body {
  font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
}

p, a, button {
  font-family: var(--font-tertiary);
}

/* Reset & base */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Helvetica Neue', sans-serif; line-height:1.6; color:#333; overflow-x: hidden; }
.container { width:90%; max-width:1200px; margin:0 auto; overflow-x: hidden; }

/* Variables */
:root {
  --gold: #c19a6b;
  --dark: #333;
  --light: #fff;
}

/* ---------------- Header ---------------- */
.site-header {
  background: var(--dark);
  /* border-bottom: 1px solid #eee; */
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 100px;
  /* Allow dropdowns to overflow */
  overflow: visible;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  max-height: 100px;
}

.site-header .container {
  display: flex;
  align-items: center;
  position: sticky;
  z-index: 80;
  top: 0;
  justify-content: space-between;
  /* padding: 1rem 0; */
  overflow: visible;
  min-height: 100px;
}

.logo img {
  max-height: 100px;
  width: auto;
  height: auto; 
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}

/* -------- Main Nav -------- */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--gold);
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--light);
}

/* ----- Submenu ----- */
.site-nav ul li {
  position: relative;
}

.site-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;    /* directly under “Treatments” */
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 180px;
  z-index: 100;
}

.site-nav .submenu li a {
  display: block;
  padding: 0.75em 1em;
  color: #333;
  white-space: nowrap;
}

.site-nav .submenu li a:hover {
  background: #f5f5f5;
}

/* show on hover (desktop) */
.site-nav ul li.has-submenu:hover > .submenu {
  display: block;
}

/* arrow indicator */
.site-nav ul li.has-submenu > a::after {
  content: " ▼";
  font-size: 0.7em;
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light);
    flex-direction: column;
    padding: 1rem;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .site-nav a {
    padding: 0.5rem 0;
  }

  /* in mobile, let tapping “Treatments” toggle its submenu */
  .site-nav .submenu {
    position: static;
    box-shadow: none;
  }
  .site-nav ul li.has-submenu.open > .submenu {
    display: block;
  }
}



/* Hero */
/* .hero { height:70vh; background-size:cover; background-position:center; display:flex; align-items:center; color:var(--light); }
.hero-content { max-width:600px; }
.hero h1 { font-size:3rem; margin-bottom:0.5rem; }
.hero p { margin-bottom:1.5rem; } */

/* Buttons */
.btn, .btn-outline {
  display:inline-block; padding:0.75rem 1.5rem; text-decoration:none; font-weight:600; border-radius:4px;
}
.btn { background:var(--gold); color:var(--light); }
.btn:hover { opacity:0.9; }
.btn-outline { border:2px solid var(--gold); color:var(--gold); }
.btn-outline:hover { background:var(--gold); color:var(--light); }



/* About & Team */
/* .about-page { padding:4rem 0; }
.mission { margin:2rem 0; }
.team-grid { display:flex; flex-wrap:wrap; gap:2rem; }
.team-member { width:200px; text-align:center; }
.team-member img { width:100%; border-radius:50%; } */

/* Treatments Grid */
/* .treatments-page { padding:4rem 0; }
.treatment-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(250px,1fr)); gap:2rem; }
.treatment-card img { width:100%; border-radius:8px; }
.treatment-card h3 { margin:1rem 0 0.5rem; } */

/* Contact */
/* .contact-page { padding:4rem 0; }
.contact-wrapper { display:flex; flex-wrap:wrap; gap:2rem; }
.contact-form, .contact-info { flex:1 1 300px; }
.contact-form label { display:block; margin-bottom:1rem; }
.contact-form input, .contact-form textarea { width:100%; padding:0.5rem; border:1px solid #ccc; border-radius:4px; }
.form-message { margin-top:1rem; color:green; } */

/* Footer */
/* .site-footer { background:#f8f8f8; padding:2rem 0; text-align:center; margin-top:4rem; }
.site-footer .social { list-style:none; display:flex; justify-content:center; gap:1rem; margin-top:1rem; } */

/* Responsive */
/* @media (max-width: 768px) {
  .site-nav { position:absolute; top:100%; left:0; right:0; background:var(--light); display:none; }
  .site-nav ul { flex-direction:column; padding:1rem; }
  .nav-toggle { display:block; }
  .site-nav.open { display:block; }
  .hero h1 { font-size:2.5rem; }
} */

/* ─── Slider Container ───────────────────────────────────────────────────────── */
/* .slider-container {
    position: relative;
    overflow: hidden;
    height: 70vh;           
  } */
  
  /* slides wrapper: 3 × 100% wide */
  /* .slides {
    display: flex;
    width: 300%;               
    transition: transform 0.6s ease;
  } */
  
  /* each slide = 100% of container */
  /* .slide {
    width: 100%;
    flex-shrink: 0;
    background-size: contain;
    background-position: center;

    position: relative;
  } */
  
  /* center the hero-content vertically */
  /* .slide .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  } */
  
  /* prev/next buttons */
  /* .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 0.2rem 0.6rem;
    cursor: pointer;
    z-index: 10;
  }
  .slider-btn:hover {
    background: rgba(0,0,0,0.6);
  }
  .prev { left: 1rem; }
  .next { right: 1rem; } */
  
  .hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 630px;
    background-size: contain;
  }

  .hero-slider .slides {
    display: flex;
    width: calc(3 * 100%); /* update “3” to your number of slides */
    transition: transform 0.6s ease-in-out;
    background-size: contain;
  }

  .hero-slider .slide {
    flex: 0 0 100%;
    background-size: contain;
  }

  .hero-slider .slide img {
    display: block;
    width: 100%;
    height: 630px;
    object-fit: cover; /* show whole image */
    object-position: center;
    background-color: #f5f5f5; /* optional: fill empty space */
  }

  /* Responsive adjustments */
  @media (max-width: 1024px) { /* Tablet */
    .hero-slider {
      height: 500px;
    }

    .hero-slider .slide img {
      height: 500px;
    }
    .h-slide-content {
      padding: 1rem;
      text-align: center;
      font-size: 2rem;
    }
    .slider-content {
      padding: 1rem;
      text-align: center;
      font-size: 1.5rem; /* smaller font for small screens */
    }
  }

  @media (max-width: 768px) { /* Mobile */
    .hero-slider {
      height: 350px;
    }

    .hero-slider .slide img {
      height: 350px;
    }
    .h-slide {
      height: 500px;
      width: 100%;
      object-fit: cover;
    }
    .h-slide-content {
      padding: 1rem;
      text-align: center;
      font-size: 2rem;
    }
    .slider-content {
      padding: 1rem;
      text-align: center;
      font-size: 1.5rem; /* smaller font for small screens */
    }
  }

  @media (max-width: 480px) { /* Small Mobile */
    .hero-slider {
      height: 250px;
    }

    .hero-slider .slide img {
      height: 250px;
    }
    .h-slide {
      height: 500px;
      width: 100%;
      object-fit: cover;
    }
    .h-slide-content {
      padding: 1rem;
      text-align: center;
      font-size: 2rem;

    }
    .slider-content {
      padding: 1rem;
      text-align: center;
      font-size: 1.5rem; /* smaller font for small screens */
    }
  }

  /* navigation buttons */
  .hero-slider .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 2.5em;
    height: 2.5em;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 50%;
    line-height: 2.5em;
    text-align: center;
    user-select: none;
  }

  .hero-slider .prev {
    left: 1rem;
  }

  .hero-slider .next {
    right: 1rem;
  }
  
  /* make the two children sit side by side */
.about {
    display: flex;
    align-items: center;  /* vertically center if heights differ */
    gap: 2rem;            /* space between image & text */
    padding: 4rem 0;
  }
  
  /* left column (image) */
  .about-image {
    flex: 1;              /* 50% of the space */
  }
  .about-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;    /* crop to fill container if needed */
    border-radius: 8px;   /* optional */
  }
  
  /* right column (text) */
  .about-content {
    flex: 1;              /* 50% of the space */
  }
  .about-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  .about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  /* remove the “stack on small screens” if you always want two-up */
  @media (max-width: 768px) {
    /* either delete this entire block… */
    .about {
      flex-direction: column;  /* ← stacks them */
    }
    /* …or bump the breakpoint lower (e.g. max-width: 480px) */
  }
doctor-hover:hover {
  /* transform: scale(1.05);
  transition: transform 0.3s ease; */
  background-color: #c19a6b;
}
  .doctors-section {
    padding: 4rem 0;
    text-align: center;
  }

  .doctors-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark);
  }

  .doctors-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .doctor-item {
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-left: 20px;
    text-align: center;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    column-gap: 20px;
  }

  .doctor-item img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
  }

  .doctor-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
  }

  .doctor-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
  }

  /* Mobile Optimization */
  @media (max-width: 768px) {
    .doctors-row {
      flex-direction: column;
      gap: 1.5rem;
    }

    .doctor-item {
      width: 100%;
    }
  }

  /* treatment Sections */
.intro, .featured-treatments, .contact-teaser { padding:4rem 0; text-align:center; }
.featured-treatments .treatment-list { display:flex; flex-wrap:wrap; gap:2rem; justify-content:center; margin:2rem 0; }
.treatment-item { width:250px; }
.treatment-item img { width:100%; border-radius:8px; }
.treatment-item h3 { margin-top:0.5rem; }
  

/* Carousel start */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* track of slides */
.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* each slide: default 3 items visible */
.carousel-item {
  position: relative;
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  padding: 0.5rem;
}

/* slide image */
.carousel-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

/* overlay content */
.carousel-content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  color: #fff;
}
.carousel-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}
.carousel-content p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}
.carousel-content .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Prev/Next buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 2.5em;
  height: 2.5em;
  font-size: 1.5em;
  line-height: 2.5em;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}
.carousel-nav.prev {
  left: 1rem;
}
.carousel-nav.next {
  right: 1rem;
}

/* Responsive: adjust number of visible items */
@media (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(100% / 2); /* 2 items visible */
  }
}

@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 100%; /* 1 item visible */
  }
}


/* Checklist Section */
.checklist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    overflow-x: hidden;
}

.checklist-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.left-column {
    flex: 1;
    max-width: 45%;
}

.left-column h1 {
    font-size: 5rem;
    color: #222;
    margin-top: 100px;
    margin-bottom: 20px;
    text-align: center;
}

.right-column {
    flex: 1;
    max-width: 50%;
}

.right-column h2 {
    font-size: 2rem;
    color: #444;
    margin-bottom: 15px;
}

.right-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.right-column ul {
    list-style: none;
    padding: 0;
}

.right-column li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #333;
}

.right-column li i {
    color: #28a745;
    margin-right: 10px;
}

/* Responsive Styles for Checklist Section */
@media (max-width: 768px) {
    .checklist {
        flex-direction: column;
        text-align: center;
    }

    .checklist-container {
        flex-direction: column;
    }

    .left-column, .right-column {
        max-width: 100%;
    }

    .left-column h1 {
        font-size: 2rem;
    }

    .right-column h2 {
        font-size: 1.8rem;
    }

    .right-column p {
        font-size: 1rem;
    }

    .right-column li {
        font-size: 0.95rem;
    }
}




/* FAQ css */

.faq {
  max-width: 600px;
  margin: 0 auto;
  font-family: sans-serif;
}

.faq h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  outline: none;
}

.faq-question .arrow {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .arrow {
  transform: translateY(-50%) rotate(225deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}

.faq-item.open .faq-answer {
  padding: 1rem;
  max-height: 500px; /* big enough to show answer */
}

 /* --- Carousel Container --- */
 .reviews-carousel {
  max-width: 600px;
  margin: 2rem auto;
}

/* --- Slide Card --- */
.swiper-slide {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.review-author {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.review-rating {
  color: #f5c518; /* gold stars */
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Appointment form */

.appointment-form { 
  background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}
.section-title{
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 1rem;
  text-align: center;

}
.form-row {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 1rem;
}

.form-row input, 
.form-row textarea,
.form-row select {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
resize: vertical;
}

.form-btn {
background: var(--gold); 
color: var(--light); 
padding: 0.75rem 1.5rem; 
border: none; 
border-radius: 4px; 
font-weight: 600; 
cursor: pointer;
transition: background 0.3s; 
display: flex; 
justify-content: center; 
align-items: center; 
margin: 0 auto; /* Center the button horizontally */
}

/* Testimonials section */
.review {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding-bottom: 20px;
}
    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }
    .testimonial-item {
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
    .testimonial-item p {
      font-style: italic;
      margin-bottom: 10px;
    }
    .testimonial-item img.testimonial-profile {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin: 10px 0;
    }
    .testimonial-item span {
      font-weight: bold;
      color: #555;
      display: block;
      margin-top: 10px;
    }

    /* Instagram feed */
    .instagram-grid{
       display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  justify-items: center;
    }
    .Header {
      align-items: center;
      box-sizing: border-box;
      display: flex;
      flex-direction: row;
      height: 54px;
      padding: 10px;
      font-size: 16px;
    }
    .Header-Secondary-Content {
      display: none;
    }
    .instagram-media {
      background: white;
        /* border-radius: 3px; */
        border: 1px solid rgb(219, 219, 219);
        box-shadow: none;
        padding: 10px;
        width: 100% !important;
  max-width: 100% !important;
    }
    .insta-btn{
      display: block;
        margin: 0 auto;
        text-align: center;
        color: #fff;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    /* Tablet view */
@media (max-width: 900px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile view */
@media (max-width: 600px) {
  .instagram-grid {
    grid-template-columns: 1fr;
    
  }
}

/* Footer */
/* Footer base */
/* Footer base */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
  }
  .site-footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  .site-footer a:hover {
    color: var(--gold);
  }
  
  /* Four-column grid */
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    /* justify-items: center; */
    text-align: justify;
  }
  .footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: justify;

  }
  .footer-column p,
  .footer-column ul {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  .footer-column ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Social links layout */
  .social{
    margin-left: 40px;
  }
  .social-links {
    display: flex;
    /* justify-content: center; */
    text-align: justify;
    gap: 10px;
    flex-wrap: wrap;
    
  }
  
  /* Footer bottom text */
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #ccc;
  }
  
  /* Tablet: 2 columns */
  @media (max-width: 1024px) {
    .footer-columns {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Mobile: 1 column */
  @media (max-width: 600px) {
    .footer-columns {
      grid-template-columns: 1fr;
    }
    .footer-column {
      padding: 1rem 0;
    }
  }
  /* Responsive adjustments */
  @media (max-width:600px){
     .social{
    margin: 0px;
  }
  }

  /* whats app button style */
   .whatsapp-float {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 999;
      background: #25d366;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: box-shadow 0.2s;
    }
    .whatsapp-float:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,0.25);
      background: #20ba5a;
    }
















































































  
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
 
  
  
  
  