﻿ 
/* ================= 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;
}

.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);
}

.dropdown:hover > ul{
  display:block;
}

.dropdown ul li{
  position:relative;
}

.dropdown ul ul{
  top:0;
  left:100%;
}

/* Mobile */
.mobile-nav-toggle{
  display:none;
  font-size:24px;
  cursor:pointer;
}

/* Responsive */
@media(max-width:768px){
  .navmenu ul{
    flex-direction:column;
    display:none;
  }

  .navmenu ul.show{
    display:flex;
  }

  .dropdown > ul{
    position:static;
    box-shadow:none;
  }

  .dropdown:hover > ul{
    display:none;
  }

  .dropdown.open > ul{
    display:block;
  }

  .mobile-nav-toggle{
    display:block;
  }
}









/* ================= HERO ================= */
@media(max-width:768px){
  .hero{
    padding:30px 15px;
  }

  .hero-text h1{
    font-size:26px;
    line-height:1.3;
  }
}

.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);
}

.hero{
  background:#f8fafc;
}

.hero-img img{
  width:100%;
  border-radius:10px;
}

/* ================= 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{
  background:#fff;
  padding:15px;
  box-shadow:0 0 10px #ddd;
}
*/
.card {
  width:100%;
  max-width:765px;
  margin:auto;
  text-align: center; /* text aur button center me */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border-radius: 8px;
  background-color: #fff;
   box-shadow:0 0 10px #ddd;
}
.card img{ width:100%; }

.card button{
  margin-top:10px;
  background:#f2a900;
  border:none;
  padding:8px;
  color:#fff;
}

/* ================= GALLERY ================= */
 /* ================= GALLERY FIX ================= */

.gallery{
  padding: 60px 40px;
  background: #f8fafc;
  text-align: center;
}

.gallery-grid{
  display: grid;   /* IMPORTANT */
  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 */
  object-fit: cover;      /* PERFECT FIT */
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.gallery-grid img:hover{
  transform: scale(1.05);
}


/* ================= 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;
}


/* ================= 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;
}

.modal-content input,
.modal-content textarea{
  width:100%;
  padding:10px;
  margin:10px 0;
}

.modal-content button{
  background:#f2a900;
  border:none;
  padding:10px;
  width:100%;
  color:#fff;
}

.close{
  position:absolute;
  top:10px;
  right:15px;
  font-size:28px;
  cursor:pointer;
}

/* ================= 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;
}

/* ================= 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;
}

/* ================= SCROLL REVEAL ================= */
.reveal{
  opacity:0;
  transform:translateY(40px);
  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;
  }

  .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 */
   ;
  margin: 0;
    padding: 0; 0;
  
  
}

.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);
}

/* Image fix */
.treatment-card img {
  width: 100%;
  height: 220px;           /* FIXED HEIGHT */
  object-fit: cover;       /* IMPORTANT */
  display: block;
}

/* Content */
.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;
  }
}
/*===================oooooooooooooooooooooooooo*/

 /* ================= 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.jpg') center/cover no-repeat fixed;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner-content{
  max-width: 700px;
}

.banner-title{
  font-size: 36px;
  margin-bottom: 15px;
}

.book-btn{
  display:inline-block;
  padding:12px 34px;
  background:#4CAF50;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
}

/* MOBILE FIX */
@media(max-width:768px){
  .hero-banner{
    background-attachment: scroll;
    height: 260px;
  }

  .banner-title{
    font-size: 26px;
  }
}


/* Hero Banner Section */

.banner-content{
  position: relative;
  z-index: 2;
  color: #fff;
}




.banner-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:15px;
}

.book-btn{
  background:#4CAF50;
  color:#fff;
  padding:12px 35px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}





.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: #f8f9fa;
    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;
    }
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
 

 /* ===================================================
   CONTACT PAGE – SAFE & CLEAN (HEADER FRIENDLY)
=================================================== */

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: 0.3s;
}

.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 ===== */
@media (max-width: 768px) {
  .navmenu ul {
    width: 100%;
  }

  .navmenu ul li {
    width: 100%;
  }
}


/* ================= BANNER IMAGE SCROLL ================= */

  /* ===== STANDARD BANNER IMAGE SLIDER ===== 

.banner-slider{
  width: 100%;
  max-width: 1200px;     /* fixed container */
 /* overflow: hidden;
  margin: 30px auto 0;
}

.slider-track{
  display: flex;
  gap: 20px;
  animation: scrollBanner 24s linear infinite;
}

/* ALL IMAGES SAME SIZE */
/*.slider-track img{
  width: 260px;          /* STANDARD WIDTH */
  /*height: 160px;         /* STANDARD HEIGHT */
  /*object-fit: cover;     /* crop properly */
 /* border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* RIGHT → LEFT */
/*@keyframes scrollBanner{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}*/

/* ===== HERO IMAGE SCROLL BANNER ===== */

.hero-banner{
  height: 320px;
  position: relative;
  overflow: hidden;
  
  background-repeat: repeat-x;
  animation: bgScroll 30s linear infinite;
  
  /* 4 images stitched horizontally */
  

  background-position:
    0 0,
    0 0,
    25% 0,
    50% 0,
    75% 0;
}

 

/* content stays on top */
.banner-content{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

/* ================= SCROLLING HERO BANNER ================= */

.hero-banner{
  position: relative;
  width: 100%;
  height: 500px;   /* banner height */
  overflow: hidden;
}

/* slider wrapper */
.slider{
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* moving track */
.slide-track{
  display: flex;
  width: calc(450px * 8); /* 4 images x 2 */
  height: 100%;
  animation: bannerScroll 22s linear infinite;
}

/* images */
.slide-track img{
  width: 450px;     /* IMAGE WIDTH */
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* animation */
@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: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;
}

#backToTop:hover,
#topBtn:hover{
  background:#256628;
}

/* 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);
}

/* responsive */
@media(max-width:768px){
  .site-footer{
    text-align:center;
  }

  .footer-contact li{
    justify-content:center;
  }
}


/* ===============================
   GALLERY PAGE – MODERN DESIGN
================================ */

/* PAGE BANNER */
.page-banner{
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.page-banner h1{
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-banner p{
  font-size: 16px;
  opacity: 0.9;
}

/* GALLERY SECTION */
.gallery-page{
  padding: 80px 0;
  background: #f8fafc;
}

/* CARD */
.gallery-card{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  cursor: pointer;
}

/* IMAGE FIX */
.gallery-card img{
  width: 100%;
  height: 260px;
  object-fit: cover;       /* MOST IMPORTANT */
  transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.gallery-card:hover img{
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px){
  .page-banner h1{
    font-size: 28px;
  }

  .gallery-card img{
    height: 220px;
  }
}

@media (max-width: 576px){
  .gallery-card img{
    height: 200px;
  }
}

/* ===============================
   LIGHTBOX POPUP
================================ */
.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 / PILES PAGE
================================ */

.disease-banner{
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  padding: 90px 0;
  text-align: center;
  color: #fff;
}

.disease-banner h1{
  font-size: 42px;
  font-weight: 700;
}

.disease-banner p{
  font-size: 16px;
  opacity: 0.9;
}

/* INTRO */
.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{
  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;
}

.treatment-info h2{
  font-size: 32px;
  margin-bottom: 10px;
}

/* 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;
}

.cta-btn:hover{
  background: #0f172a;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px){
  .disease-banner h1{
    font-size: 28px;
  }
  .disease-intro h2,
  .why-homeopathy h2,
  .treatment-info h2{
    font-size: 24px;
  }
}


/* ==============================
   UTI PAGE SPECIFIC CSS ONLY
================================ */

/* ===== 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 (UPDATED) ===== */
.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 (UPDATED) ===== */
.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 (UPDATED) ===== */
.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;
  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;
}

.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;
}
/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .about-container{
    flex-direction:column;
  }

  .stats{
    flex-direction:column;
    gap:20px;
  }

  .about-hero-content h1{
    font-size:28px;
  }
}
/* ===== 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:7px;
  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;
}


@media(max-width:768px){
  .doctor-box,
  .mission-box{
    flex-direction:column;
    text-align:center;
  }
}

/* ===== 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:2
  text-align: justify;
   font-family: 'Merriweather', Georgia, serif;
   font-size: 17px;0px;
}

.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);
}

/* ===== HERO ===== */
.about-hero{
  height: 280px;
  background: linear-gradient(
    rgba(0,120,0,0.6),
    rgba(0,120,0,0.6)
  ), url('images/about-banner.jpg') 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 Enhanced */
.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);
}