﻿ 
/* ================= RESET ================= */
 /* ===== GLOBAL RESET (KEEP ONLY THIS) ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}


/* ================= TOP BAR ================= */
.topbar{
  background:#f5f5f5;
  padding:8px 13px;
  font-size:14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.top-right{
  display:flex;
  gap:10px;
}

.social{
  width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

.fb{ background:#1877f2; }       /* Facebook */
.insta{ background:#e4405f; }    /* Instagram */
.yt{ background:#ff0000; }       /* YouTube */



/* ================= HEADER ================= */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  box-shadow:0 2px 5px #ddd;
}

.logo{
  font-size:22px;
  font-weight:bold;
  color:#f2a900;
}

/*.nav a{
  margin-left:20px;
  text-decoration:none;
  color:#333;
}*/

.menu-icon{
  display:none;
  font-size:24px;
  cursor:pointer;
}

#menu-toggle{ display:none; }

/* ================= Nav ================= */
.navmenu {
  background: #fff;
}

.navmenu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navmenu a {
  text-decoration: none;
  color: #333;
  padding: 10px;
  display: block;
  transition: color 0.3s;
}

.navmenu a:hover,
.navmenu .active {
  color: #f2a900;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown > ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: none;
  min-width: 220px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  z-index: 1000;
}

.dropdown:hover > ul {
  display: block;
}

.dropdown ul li {
  position: relative;
}

.dropdown ul ul {
  top: 0;
  left: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  /* Topbar */
  .topbar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 10px 13px;
  }

  .top-left {
    font-size: 12px;
  }

  /* Header */
  .header {
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  /* Main nav menu */
  .navmenu ul {
    flex-direction: column;
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
  }

  .navmenu ul.show {
    display: flex;
  }

  .navmenu ul li {
    width: 100%;
  }

  .navmenu a {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 48px;
  }

  /* Dropdown mobile */
  .dropdown > ul {
    position: static;
    box-shadow: none;
    background: #f8f8f8;
    display: none;
    padding-left: 15px;
  }

  .dropdown.open > ul {
    display: block;
  }

  .dropdown ul ul {
    position: static;
    background: #f0f0f0;
    padding-left: 15px;
  }

  /* Mobile nav toggle button */
  .mobile-nav-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    padding: 8px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background: #f8f8f8;
    transition: all 0.3s;
  }

  .mobile-nav-toggle:active {
    background: #e0e0e0;
    transform: scale(0.95);
  }

  /* Dropdown arrow indicators */
  .dropdown > a {
    position: relative;
    padding-right: 40px;
    cursor: pointer;
    user-select: none;
  }

  .dropdown > a::after {
    content: '▾';
    position: absolute;
    right: 20px;
    transition: transform 0.3s;
    font-size: 14px;
  }

  .dropdown.open > a::after {
    transform: rotate(180deg);
  }

  .dropdown ul .dropdown > a::after {
    content: '▸';
  }

  .dropdown ul .dropdown.open > a::after {
    content: '▾';
  }

  /* Prevent text selection */
  .navmenu {
    user-select: none;
  }
}

/* iOS Safari touch fix */
@supports (-webkit-touch-callout: none) {
  .dropdown > a {
    cursor: pointer;
  }
  .navmenu a:active {
    background: #f0f0f0;
  }
}



/* ================= HERO ================= */
.hero {
  background: #f8fafc;
}

.hero-img img {
  width: 100%;
  border-radius: 10px;
}

.hero-text button {
  background: #f2a900;
  border: none;
  padding: 12px 28px;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.hero-text button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(242,169,0,0.4);
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 15px;
  }

  .hero-text h1 {
    font-size: 26px;
    line-height: 1.3;
  }
}

/* ================= PULSE ================= */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(242,169,0,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(242,169,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,169,0,0); }
}

/* ================= TREATMENTS ================= */
.treatments {
  padding: 60px 40px;
  text-align: center;
}

.treat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.card {
  width: 100%;
  max-width: 765px;
  margin: auto;
  text-align: center;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px #ddd;
}

.card img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.card button {
  margin-top: 10px;
  background: #f2a900;
  border: none;
  padding: 8px 16px;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.card button:hover {
  background: #d18c00;
}



/* ================= GALLERY ================= */
.gallery {
  padding: 60px 40px;
  background: #f8fafc;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.gallery-grid img {
  width: 100%;
  height: 260px;          /* fixed height for uniform look */
  object-fit: cover;      /* ensures perfect fit */
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* ================= CONTACT ================= */
.contact {
  padding: 60px 40px;
  text-align: center;
}

.contact form {
  max-width: 600px;
  margin: auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.modal-content button {
  background: #f2a900;
  border: none;
  padding: 12px;
  width: 100%;
  color: #fff;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-content button:hover {
  background: #d18c00;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}

.close:hover {
  color: #f2a900;
}



 /* ================= WHATSAPP ================= */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  z-index: 999;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* ================= SCROLL TOP ================= */
#topBtn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #f2a900;
  border: none;
  padding: 12px 15px;
  font-size: 18px;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 999;
  transition: background 0.3s ease, transform 0.3s ease;
}

#topBtn:hover {
  background: #d18c00;
  transform: translateY(-3px);
}

/* ================= SCROLL REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .treat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .menu-icon {
    display: block;
  }

  .nav {
    position: absolute;
    top: 65px;
    right: 0;
    background: #fff;
    width: 100%;
    display: none;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav a {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }

  #menu-toggle:checked + .menu-icon + .nav {
    display: flex;
  }

  .treat-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
 
  

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 80px 0;
  background: #f8fafc;
}

.about-image {
  overflow: hidden;
  border-radius: 14px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-content .subtitle {
  color: #38bdf8;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #020617;
}

.about-content p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 14px;
  text-align: justify; /* ya left/center/right */
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-points li {
  margin-bottom: 10px;
  color: #020617;
  font-weight: 500;
}

.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 28px;
  background: #38bdf8;
  color: #020617;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #0ea5e9;
  color: #fff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .about-content h2 {
    font-size: 28px;
  }
}

/* ================= TREATMENT SECTION ================= */
.treatment-section {
  padding: 90px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 60px;
  line-height: 1.4;
}

/* Grid */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Item */
.treatment-item {
  text-align: center;
  max-width: 160px;
}

.treatment-item img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.treatment-item img:hover {
  transform: scale(1.08);
}

.treatment-item p {
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
  font-weight: 500;
}

/* Tablet */
@media (max-width: 992px) {
  .treatment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .treatment-item img {
    width: 110px;
    height: 110px;
  }
}




/* ================= TESTIMONIALS ================= */
.testimonial-section {
  padding: 90px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #64748b;
  margin-bottom: 60px;
}

/* Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
}

.testimonial-card::before {
  content: "“";
  font-size: 70px;
  color: #38bdf8;
  position: absolute;
  top: -20px;
  left: 20px;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 25px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h5 {
  margin: 0;
  font-size: 16px;
  color: #0f172a;
}

.testimonial-user span {
  font-size: 13px;
  color: #64748b;
}

/* Tablet */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 26px;
  }
}

/* ===== TREATMENT CARDS ===== */
.treatment-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-6px);
}

.treatment-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.treatment-card h3 {
  font-size: 18px;
  margin: 18px 0 8px;
  color: #0f172a;
}

.treatment-card p {
  font-size: 14px;
  color: #64748b;
  padding: 0 15px 20px;
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
  .treatment-card img {
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .treatment-card img {
    height: 180px;
  }
}

/* ================= PARALLAX HERO BANNER ================= */
.hero-banner {
  height: 320px;
  background: linear-gradient(rgba(0,100,0,0.6), rgba(0,100,0,0.6)),
              url('../images/banner.webp') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
  color: #fff;
}

.banner-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.book-btn {
  display: inline-block;
  padding: 12px 34px;
  background: #4CAF50;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

/* Sections */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-section {
  background: #f8fafc; /* unified with earlier definition */
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #27ae60;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-title {
    font-size: 2rem;
  }
  .book-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .hero-banner {
    background-attachment: scroll;
    height: 260px;
  }
}
 

  /* ================= CONTACT PAGE – SAFE & CLEAN ================= */
body.contact-page {
  background: #f4f8fb;
}

/* ===== PAGE TITLE ===== */
.contact-page .page-title {
  background: linear-gradient(135deg, #2c5aa0, #00a651);
  color: #fff;
  padding: 90px 0 60px;
  text-align: center;
}

.contact-page .page-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-page .page-title p {
  font-size: 16px;
  opacity: 0.9;
}

/* ===== CONTACT SECTION ===== */
.contact-page .contact-section {
  padding: 80px 0;
}

.contact-page .contact-info-box,
.contact-page .contact-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  height: 100%;
}

/* LEFT INFO */
.contact-page .contact-info-box h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #2c5aa0;
}

.contact-page .contact-info-box p {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.contact-page .contact-info-box i {
  font-size: 18px;
  color: #00a651;
  margin-top: 3px;
}

/* RIGHT FORM */
.contact-page .contact-form-box h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #2c5aa0;
}

.contact-page .contact-form-box form input,
.contact-page .contact-form-box form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-page .contact-form-box form input:focus,
.contact-page .contact-form-box form textarea:focus {
  outline: none;
  border-color: #00a651;
}

.contact-page .contact-form-box button {
  background: #00a651;
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-size: 15px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-page .contact-form-box button:hover {
  background: #2c5aa0;
}

/* ===== MAP ===== */
.contact-page .map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .contact-page .page-title h2 {
    font-size: 28px;
  }

  .contact-page .contact-info-box,
  .contact-page .contact-form-box {
    padding: 30px;
  }

  /* Mobile Nav Fix */
  .navmenu ul,
  .navmenu ul li {
    width: 100%;
  }
}


 

/* ================= HERO IMAGE SCROLL BANNER ================= */
.hero-banner {
  position: relative;
  width: 100%;
  height: 500px;   /* unified banner height */
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(450px * 8); /* 4 images x 2 */
  height: 100%;
  animation: bannerScroll 22s linear infinite;
}

.slide-track img {
  width: 450px;     /* IMAGE WIDTH */
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes bannerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1800px); } /* 4 images width */
}

/* green overlay */
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,120,0,0.55);
  z-index: 1;
}

/* banner text */
.banner-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #1b3b2f;
  color: #fff;
  padding-top: 60px;
  position: relative;
  font-size: 15px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
}

.site-footer p {
  color: #ddd;
  line-height: 1.7;
}

/* contact list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.footer-contact li {
  margin-bottom: 8px;
  color: #eee;
}

/* links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: #6fdc8c;
  padding-left: 5px;
}

/* footer bottom */
.footer-bottom {
  background: #142a22;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 14px;
}

/* back to top button */
#backToTop,
#topBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #2f7d32;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 999;
  transition: background 0.3s, transform 0.3s;
}

#backToTop:hover,
#topBtn:hover {
  background: #256628;
  transform: translateY(-3px);
}

/* whatsapp floating */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

/* responsive */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }
  .footer-contact li {
    justify-content: center;
  }
}

/* =============================== GALLERY PAGE =============================== */
.page-banner,
.disease-banner {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  text-align: center;
  color: #fff;
}

.page-banner {
  padding: 80px 0;
}

.page-banner h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-banner p,
.disease-banner p {
  font-size: 16px;
  opacity: 0.9;
}

.gallery-page {
  padding: 80px 0;
  background: #f8fafc;
}

/* Gallery Card */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 9999;
}

.lightbox.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  animation: zoomIn 0.4s ease;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* =============================== DISEASE PAGE =============================== */
.disease-banner {
  padding: 90px 0;
}

.disease-banner h1 {
  font-size: 42px;
  font-weight: 700;
}

.disease-intro {
  padding: 80px 0;
  background: #ffffff;
}

.disease-intro h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #0f172a;
}

.disease-intro p {
  color: #475569;
  line-height: 1.8;
}

.disease-intro ul {
  padding-left: 18px;
}

.disease-intro li {
  margin-bottom: 8px;
  color: #334155;
}

.disease-img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Why Homeopathy */
.why-homeopathy {
  background: #f8fafc;
  padding: 80px 0;
  text-align: center;
}

.why-homeopathy h2,
.treatment-info h2 {
  font-size: 32px;
}

.why-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Treatment Info */
.treatment-info {
  padding: 80px 0;
  text-align: center;
}

/* CTA */
.disease-cta {
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: #ffffff;
  color: #0f172a;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #0f172a;
  color: #fff;
}

/* =============================== RESPONSIVE =============================== */
@media (max-width: 768px) {
  .page-banner h1 {
    font-size: 28px;
  }
  .gallery-card img {
    height: 220px;
  }
  .disease-banner h1 {
    font-size: 28px;
  }
  .disease-intro h2,
  .why-homeopathy h2,
  .treatment-info h2 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .gallery-card img {
    height: 200px;
  }
}

/* ============================== 
   UTI PAGE SPECIFIC CSS 
================================ */

/* ===== DISEASE BANNER ===== */
.disease-banner {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  padding: 100px 0 80px;
  text-align: center;
  color: #fff;
  position: relative;
}

.disease-banner::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23ffffff" d="M0,50 Q360,0 720,50 T1440,50 L1440,100 L0,100 Z"></path></svg>');
  background-size: cover;
}

.disease-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.disease-banner p {
  font-size: 20px;
  opacity: 0.95;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
  background: #f8fafc;
  padding: 15px 0;
}

.breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item a {
  color: #0ea5e9;
  text-decoration: none;
}

/* ===== DISEASE INTRO ===== */
.disease-intro {
  padding: 80px 0;
  background: #ffffff;
}

.disease-intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0f172a;
  font-weight: 700;
}

.disease-intro h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #334155;
}

.disease-intro p {
  color: #475569;
  line-height: 1.9;
  margin-bottom: 15px;
  font-size: 16px;
}

.disease-intro ul {
  padding-left: 0;
  list-style: none;
}

.disease-intro li {
  margin-bottom: 12px;
  color: #334155;
  padding-left: 30px;
  position: relative;
}

.disease-intro li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
  font-size: 18px;
}

.disease-img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.disease-img:hover {
  transform: scale(1.02);
}

/* ===== INFO BOXES ===== */
.info-boxes {
  padding: 60px 0;
  background: #f8fafc;
}

.info-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  border-left: 5px solid #0ea5e9;
}

.info-box h4 {
  color: #0f172a;
  margin-bottom: 10px;
  font-size: 20px;
}

.info-box p {
  color: #64748b;
  margin: 0;
}

/* ===== WHY HOMEOPATHY ===== */
.why-homeopathy {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 80px 0;
  text-align: center;
}

.why-homeopathy h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #0f172a;
}

.why-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  font-size: 18px;
  color: #0f172a;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #fff;
}

/* ===== TREATMENT INFO ===== */
.treatment-info {
  padding: 80px 0;
  text-align: center;
  background: #ffffff;
}

.treatment-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0f172a;
}

.treatment-info p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
}

.treatment-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.step-card h4 {
  color: #0f172a;
  margin-bottom: 10px;
}

.step-card p {
  color: #64748b;
  margin: 0;
  text-align: left;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #0f172a;
}

.faq-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h5 {
  color: #0f172a;
  margin-bottom: 10px;
  font-size: 18px;
}

.faq-item p {
  color: #64748b;
  margin: 0;
}

/* ===== CTA SECTION ===== */
.disease-cta {
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.disease-cta h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.disease-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #0f172a;
  padding: 16px 45px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn:hover {
  background: #0f172a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .disease-banner {
    padding: 60px 0 50px;
  }

  .disease-banner h1 {
    font-size: 32px;
  }

  .disease-banner p {
    font-size: 16px;
  }

  .disease-intro h2,
  .why-homeopathy h2,
  .treatment-info h2,
  .faq-section h2 {
    font-size: 28px;
  }

  .disease-intro h3 {
    font-size: 20px;
  }

  .disease-cta h2 {
    font-size: 28px;
  }

  .treatment-steps {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: 100px;
    font-size: 16px;
  }
}

/* ===== ABOUT CONTENT ===== */
.about-section {
  padding: 60px 8%;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: #2f7d32;
  margin-bottom: 15px;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  font-size: 17px;
}

.about-text ul {
  list-style: none;
}

.about-text li {
  margin-bottom: 10px;
  font-weight: 600;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===== STATS ===== */
.stats {
  background: #2f7d32;
  color: #fff;
  display: flex;
  justify-content: space-around;
  padding: 40px 5%;
  text-align: center;
}

.stat-box h3 {
  font-size: 32px;
  margin-bottom: 5px;
}

/* ===== DOCTOR PROFILE ===== */
.doctor {
  padding: 60px 8%;
  background: #fff;
}

.doctor-box {
  display: flex;
  gap: 40px;
  align-items: center;
}

.doctor-box img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.doctor-info h2 {
  color: #2f7d32;
  margin-bottom: 5px;
}

.doctor-info h4 {
  color: #666;
  margin-bottom: 10px;
}

/* ===== MISSION / VISION ===== */
.mission {
  padding: 60px 8%;
  background: #f9f9f9;
}

.mission-box {
  display: flex;
  gap: 30px;
}

.mission .card {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  flex: 1;
  text-align: justify;
}

.mission .card h3 {
  color: #2f7d32;
  margin-bottom: 10px;
}

/* ===== TIMELINE ===== */
.timeline {
  padding: 60px 8%;
  background: #fff;
}

.timeline h2 {
  text-align: center;
  color: #2f7d32;
  margin-bottom: 30px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.timeline-item span {
  background: #2f7d32;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  min-width: 70px;
  text-align: center;
}

/* ===== HERO ===== */
.about-hero {
  height: 280px;
  background: linear-gradient(rgba(0,120,0,0.6), rgba(0,120,0,0.6)),
              url('images/about-banner.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-content {
  color: #fff;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, #2f7d32, #1b5e20);
  padding: 60px 0;
  color: #fff;
  margin: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  animation: fadeInUp 0.8s ease-out;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== BOOK BUTTON ===== */
.book-btn {
  display: inline-block;
  padding: 16px 45px;
  background: #fff;
  color: #2f7d32;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  animation: pulse 2s infinite;
}

.book-btn:hover {
  background: #2f7d32;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(47,125,50,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .about-hero-content h1 {
    font-size: 28px;
  }

  .doctor-box,
  .mission-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= MOBILE NAVIGATION - UPDATED FIX ================= */
/* Yeh code apni stylegh.css file ke end mein add karein */

@media (max-width: 768px) {
  /* Topbar mobile friendly */
  .topbar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 10px;
  }

  .top-left {
    font-size: 12px;
  }

  /* Header adjustments */
  .header {
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  /* Main navigation menu */
  .navmenu ul {
    flex-direction: column;
    display: none;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    max-height: 80vh;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    z-index: 999;
  }

  .navmenu ul.show {
    display: flex;
  }

  /* Menu items full width */
  .navmenu ul li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .navmenu a {
    padding: 14px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    min-height: 44px;
  }

  /* Active link highlight */
  .navmenu .active {
    background: #f0f0f0;
    color: #f2a900;
    font-weight: 600;
  }

  /* Dropdown styling for mobile */
  .dropdown > ul,
  .dropdown > .dropdown-menu {
    display: none;
    position: static;
    background: #f8f9fa;
    padding-left: 0;
  }

  .dropdown.open > ul,
  .dropdown.open > .dropdown-menu {
    display: block !important;
  }

  /* Nested dropdown background */
  .dropdown ul ul,
  .dropdown-menu .dropdown-menu {
    background: #f0f0f0;
  }

  /* Nested menu items indentation */
  .dropdown ul a,
  .dropdown-menu a {
    padding-left: 30px !important;
  }

  .dropdown ul ul a,
  .dropdown-menu .dropdown-menu a {
    padding-left: 45px !important;
    background: #efefef;
  }

  /* Arrow styling */
  .arrow {
    font-size: 12px;
    float: right;
    transition: transform 0.3s ease;
  }

  .dropdown.open > a .arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu .dropdown .arrow {
    transform: rotate(-90deg);
  }

  .dropdown-menu .dropdown.open > a .arrow {
    transform: rotate(0deg);
  }

  /* Mobile nav toggle button */
  .mobile-nav-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    padding: 8px 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #f8f8f8;
    color: #333;
    transition: background 0.3s ease;
  }

  .mobile-nav-toggle:active {
    background: #e0e0e0;
  }

  .mobile-nav-toggle i {
    transition: transform 0.3s ease;
  }

  /* Prevent body scroll when menu open */
  body.menu-open {
    overflow: hidden;
  }

  /* Smooth dropdown animation */
  .dropdown-menu {
    transition: max-height 0.3s ease;
    overflow: hidden;
  }
}





