html, body { overflow-x: hidden; }
/* ===========================
   COLOR VARIABLES (YELLOW THEME)
=============================*/
:root {
  --primary: #d8bc63;
  /* yellow */
  --primary-dark: #eac13d;
  --secondary: #222831;
  --bg: #e3f0f7;
    --bg2: #f9f5f1;
  --muted: #616161;
  --light: #ffffff;

  --overlay: rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max-width: 1200px;
  --container-pad: 20px;
}

/* GLOBAL RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, Helvetica, sans-serif
}

body {
  background: var(--bg);
  color: var(--secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

a {
  color: inherit
}

/* LAYOUT HELPERS */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad)
}

header {
    background: var(--bg2);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
    /* position: fixed; */
}

/* --- 1. LEFT: Logo --- */
.logo img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* --- 2. MIDDLE: Nav Links --- */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}


.nav-links li {
    margin: 0 15px;
    position: relative;
    
}

.nav-item {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover & Active Line Animation */
.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    /* background-color: var(--primary-dark); */
    transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 120%; /* Thoda neeche se aayega */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg);
    min-width: 260px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 9px 0;
    transition: all 0.3s ease;
    z-index: 999;
}

/* Show Dropdown */
.dropdown:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: translateX(0%) translateY(7px);
	top: 100%;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background 0.2s;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: var(--primary);
    padding-left: 25px; /* Slide effect inside dropdown */
}

/* --- 3. RIGHT: Button & Hamburger --- */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-btn {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    /* box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.call-btn1 {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 20px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    /* box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.call-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4); */
}

/* Hamburger Icon Design */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* --- 4. RESPONSIVE DESIGN (Mobile/Tablet) --- */
@media (max-width: 960px) {
    /* Hide Hamburger initially */
    .hamburger {
        display: block;
        z-index: 1001;
    }

    /* Move Nav Links Off-Screen */
    .nav-links {
        position: fixed;
        top: 0;
        right: 100%; /* Screen ke bahar */
        width: 100%; /* Drawer Width */
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Open Menu Class */
    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 15px 0;
    }

    /* Dropdown in Mobile */
    .dropdown-content {
        position: static; /* Normal flow mein aa jayega */
        opacity: 1;
        width: 200px;
        visibility: visible;
        transform: none;
        box-shadow: none;
        /* padding-left: 5px; */
        display: none; /* Default hidden mobile mein */
        background: #f9f9f9;
    }

    /* Mobile mein click par dropdown open hoga (JS required for better UX, but hover works) */
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .dropdown i {
        float: right;
        transform: rotate(-90deg); /* Arrow side mein */
    }

    /* Hamburger to X Animation */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .logo img {
        height: 40px;
    }
    .call-btn{
        gap: 12px;
        height: 50px;
        visibility: hidden;
    }
    .call-btn1{
        gap: 12px;
        height: 50px;
        /* visibility: hidden; */
    }
    
}

/* HERO SECTION */
.hero-sec {
  height: 90vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url('../image/bannar.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;

  position: relative;
  padding: 0 16px;
}

.hero-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  color: var(--light);
  max-width: 980px;
  padding: 40px 20px;
}
.hero-inner p{
    font-size: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-main-btn {
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

/* CONTACT BTN */
.contact-btn {
  background: var(--light);
  color: var(--secondary);
}

/* ⭐ OVERLAPPING STATS */
.stats-float {
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.stats-card {
  background: var(--bg);
  padding: 25px 15px;
  border-radius: 15px;
  transition: .3s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}

/* ICON */
.stats-icon {
  font-size: 40px;
  color: #0f1720;
  margin-bottom: 8px;
  display: block;
}

/* NUMBER */
.stats-number {
  font-size: 22px;
  font-weight: 800;
  margin: 5px 0;
  /* color: var(--primary-dark); */
}

/* TEXT */
.stats-text {
  font-size: 16px;
  margin: 0;
  color: #555;
  font-weight: 500;
}

/* HOVER EFFECT */
.stats-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

/* ⭐ RESPONSIVE OVERLAP FIX */
@media (max-width: 768px) {
  .stats-float {
    margin-top: -40px;
  }
  .stats-number { font-size: 32px; }
  .stats-icon { font-size: 32px; }
}

@media (max-width: 576px) {
  .stats-float {
    margin-top: -20px;
  }
}



/* ABOUT MAIN SECTION */

/* Section Background */
.doctor-section {
    background: var(--bg);
}

/* Title */
.doctor-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary); /* NEW COLOR */
    margin-bottom: 15px;
}

/* Doctor Name */
.doctor-name {
    font-weight: 700;
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* Paragraph Text */
.doctor-desc {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

/* TIMING LIST – Remove dots */
.doctor-timing {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 25px;
}

.doctor-timing li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}
.doctor-timing li i{
    color: var(--primary);
    margin-right: 8px;
}

/* BUTTON */
.doctor-btn {
    display: inline-block;
    background: var(--primary); /* PURPLE */
    color: #fff;
    padding: 12px 35px;
    border-radius: 40px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.doctor-btn:hover {
    background: transparent;
    border: 2px solid var(--primary-dark);  /* GOLD on hover */
    color: #000;
    box-shadow: 0 5px 20px rgba(216, 188, 99, 0.4);
}

/* ===================== PREMIUM IMAGE BOX ===================== */
.doctor-img-frame {
    border: 6px solid var(--primary-dark); /* NEW COLOR */
    padding: 10px;
    border-radius: 32px 32px 120px 32px;
    max-width: 440px;       /* IMAGE MADE SMALLER */
    margin: auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/* Image Fit */
.doctor-img-auto {
    width: 100%;
    height: auto;
    border-radius: 25px 25px 110px 25px;
    object-fit: cover;

    animation: autoZoom 6s ease-in-out infinite;
    transition: transform 0.5s ease;
}

/* AUTO ZOOM ANIMATION */
@keyframes autoZoom {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Hover extra zoom */
.doctor-img-frame:hover .doctor-img-auto {
    transform: scale(1.12);
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
    .doctor-name {
        font-size: 22px;
    }
    .doctor-title{
        font-size: 22px;
    }

    .doctor-img-frame {
        max-width: 360px; /* Smaller on mobile */
        border-radius: 25px 25px 90px 25px;
    }

    .doctor-img-auto {
        border-radius: 22px 22px 80px 22px;
    }
}















/* ============= MOBILE RESPONSIVE ============= */
@media (max-width: 768px) {

   
    .hero-sec {
        height: 40vh;
        min-height: 420px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;

        background-image: url('../image/bannar.jpeg');
        background-position: -900px;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;

        position: relative;
        padding: 0 16px;
        }

    
}

/* ============= EXTRA SMALL MOBILE ============= */
@media (max-width: 480px) {
    .about {
        padding: 50px 20px;
    }

    .about-image img {
        max-width: 250px;
    }

    .about-btn {
        font-size: 16px;
        padding: 10px 25px;
    }
}

/* FOOTER */
.site-footer {
  padding: 20px 0;
  background: #0f1720;
  color: #c9d1d9;
  text-align: center
}

.site-footer p {
  opacity: 0.9
}

/* RESPONSIVE */
@media (max-width:1100px) {
  .hero h1 {
    font-size: 30px
  }

  .nav-center {
    justify-content: flex-start
  }
}

@media (max-width:900px) {
  .menu-icon {
    display: block
  }

  .nav-center {
    position: fixed;
    inset: auto 0 0 0;
    top: 72px;
    background: var(--light);
    padding: 14px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(100%);
    transition: transform .36s ease;
    max-height: calc(80vh);
    overflow: auto;
    z-index: 1100
  }

  
  .hero {
    background-attachment: scroll
  }

  /* disable fixed on small screens for performance */
  .hero h1 {
    font-size: 24px
  }

  .hero p {
    font-size: 15px
  }

  
}

@media (max-width:420px) {
  .hero h1 {
    font-size: 20px
  }

  .call-btn,.call-btn1,
  .about-btn {
    padding: 10px 12px
  }
}

/* ANIMATIONS */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px)
  }

  to {
    opacity: 1;
    transform: none
  }
}






.section-title {
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  width: 100px;
  height: 3px;
  background: var(--muted);
  /* Blue accent color */
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Card Styling */
.service-card {
  border: none;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Hover Effect on Card Box */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.img-wrapper {
  overflow: hidden;
  height: 220px;
  /* Equal height for all images */
  width: 100%;
  position: relative;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Image Animation on Hover */
.service-card:hover .img-wrapper img {
  transform: scale(1.1);
}

/* Overlay Effect */
.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .img-overlay {
  opacity: 1;
}

.card-body {
  padding: 2rem;
  text-align: center;
  background-color: var(--bg2);
}

.card-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.card-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn-custom {
  margin-top: 15px;
  padding: 8px 25px;
  border-radius: 50px;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
  /* Anchor tag ko button jaisa behave karne ke liye */
}
.btn-custom{
    margin-top: 15px;
    padding: 12px 30px;
    border-radius: 50px;
    background-color: var(--primary-dark);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
    /* Anchor tag ko button jaisa behave karne ke liye */
}

.btn-custom:hover {
  background-color: var(--primary);
  color: white;
}

/* --- Scroll Animation Classes --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}





/* ================= IMAGE BOX ================= */
.image-box {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.image-box:hover img {
    transform: scale(1.08);
}


/* ================= TITLES ================= */
.title, .facts-title, .tips-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
}

.title span,
.facts-title span {
    color: var(--primary-dark);
}

.subtitle {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 17px;
}


/* ===== BUTTONS ===== */
.btn-info,
.btn-massage,
.facts-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    display:inline-block;
    font-weight:700;
    transition: .3s;
    text-decoration:none;
}

.btn-info:hover,
.btn-massage:hover,
.facts-btn:hover {
    background: var(--secondary);
}


/* ===== LISTS ===== */
.info-list, .massage-list, .facts-list {
    list-style: none;
    padding-left: 0;
}

.info-list li,
.massage-list li,
.facts-list li {
    margin-bottom: 10px;
    font-size: 16px;
}


/* ===== TIPS SECTION ===== */
.tip-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.tip-circle img {
    width:150%;
}

.blue-bg { background:#2D9CDB; }
.pink-bg { background:#EB3B78; }
.sky-bg { background:#00BFE6; }
.green-bg { background:#27AE60; }
.darkgreen-bg { background:#1B5E20; }

.tip-text {
    margin-top:10px;
    font-weight:600;
    color:#333;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .title { font-size: 26px; }
    .image-box img { height: 450px; }
    .tip-circle { width:110px; height:110px; }
}







/* ANIMATION CLASS (initially hidden) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .tip-circle {
        width: 110px;
        height: 110px;
    }
    .tip-text {
        font-size: 14px;
    }
}


.location-section {
    background: var(--bg);
}

.loc-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
}

/* TABS */
.location-tabs .nav-link {
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: 30px;
}

.location-tabs .nav-link.active {
    background: var(--primary);
    color: #fff;
}

/* BOX */
.location-box {
    background: var(--bg2);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
}

.location-box.active {
    display: block;
}

/* TEXT */
.loc-name {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-dark);
}

.loc-area {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.loc-address {
    color: #555;
    margin-bottom: 20px;
}

/* STATS */
.loc-stats div {
    font-size: 15px;
    text-align: center;
    color: #444;
}

.loc-stats strong {
    font-size: 22px;
    color: var(--primary-dark);
}

/* IMAGE */
.loc-img {
  margin-top: 10px;
    width: 100%;
    height: 700px;
    border-radius: 1px;
    object-fit: cover;
}

/* BUTTONS */
.icon-btn {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.book-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
}

/* ANIMATION */
.fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    
}


/* Background Section */
.services-section {
    background: url("../image/servicesbanner.jpeg") no-repeat center center/cover;
    padding: 80px 0;
    position: relative;
}

.services-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
}

/* Title */
.section-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    max-width: 750px;
    margin: 0 auto;
    font-size: 16px;
    opacity: 0.9;
}

/* Service Box */
.service-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
}

/* Icon */
.service-box .icon {
    font-size: 50px;
    margin-bottom: 15px;
    color: var(--primary);
    transition: 0.3s;
}

.service-box:hover .icon {
    color: var(--primary);
}

/* Text */
.service-box h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 15px;
    opacity: 0.85;
}




.gallery-img {
    width: 100%;
    height: 250px;      /* FIXED HEIGHT FOR ALL IMAGES */
    object-fit: cover;  /* CROPS IMAGE PERFECTLY */
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

@media (min-width: 768px) {
    .gallery-img {
        height: 300px;  /* DESKTOP HEIGHT */
    }
}


.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Popup */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}



/* Background Image Section */
.reviews-section {
    position: relative;
    background: url("../image/reviewbanner.jpeg") center/cover no-repeat;
    padding: 80px 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
}

/* Headings */
.google-title {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.review-heading {
    color: var(--primary);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Review Card */
.review-card {
    width: 70%;
    margin: 0 auto;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
    color: #fff;
    transition: 0.4s;

    /* ADD THIS FOR EQUAL HEIGHT */
    min-height: 420px;
    height: 100%;
}


.review-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.20);
}

/* Stars */
.stars {
    color: #ffcc00;
    font-size: 22px;
    margin-bottom: 15px;
}

/* User Info */
.review-user {
    margin-top: 120px;
    display: flex;
    color: var(--primary);
    margin-left: 260px;
    align-items: center;
    gap: 10px;
}

.review-user img {
    width: 28px;
}

/* Responsive */
@media (max-width: 768px) {
    .review-card {
        width: 95%;
        padding: 25px;
        min-height: auto;
        height: 541px;
    }

    .review-heading {
        font-size: 26px;
    }
    /* User Info */
.review-user {
    margin-top: 50px;
    display: flex;
    margin-left: 65px;
    align-items: center;
    gap: 10px;
}
    
}



/* MAIN SECTION */
.contact-section-clean {
    background: var(--bg2);
    padding: 60px 0;
}

/* ROW EQUAL HEIGHT */
.contact-equal {
    display: flex;
    align-items: stretch;
}

/* LEFT INFO BOX */
.contact-info-box-clean {
    padding: 30px;
    border-radius: 15px;
    background: var(--bg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-title {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 26px;
}

.info-row {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 22px;
}

.info-row i {
    font-size: 30px;
    color: var(--primary);
}

.info-row h5 {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
}

.info-row p {
    margin: 0;
    font-size: 15px;
    opacity: 0.85;
}

/* RIGHT FORM BOX */
.contact-form-box-clean {
    padding: 35px;
    border-radius: 15px;
    background: var(--bg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.form-head {
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 18px;
}

/* INPUTS */
.form-clean-input {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
}

.form-clean-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 6px rgba(56, 174, 229, 0.4);
}

/* WHATSAPP BUTTON */
.btn-wp {
    background: var(--primary);
    color: #fff;
    padding: 14px;
    font-size: 18px;
    border-radius: 10px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-wp:hover {
    background: #128C7E;
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
    .contact-equal {
        display: block !important;
    }
    .contact-title {
        font-size: 22px;
    }
    .form-head {
        font-size: 22px;
    }
}
.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 45%; /* Controls map height (adjust if needed) */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}


/* FOOTER BOTTOM BAR */
.footer-bottom-bar {
    background: #d7ba63;              /* Same gold color */
    padding: 10px 0;
}

.footer-copy {
    color: #374151;                   /* Grey-blue text */
    font-size: 16px;
}

.design-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.design-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.design-logo {
    height: 40px;                     /* adjust logo size */
    background: #fff;
    border-radius: 6px;
    padding: 5px 10px;
    object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-bottom-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .design-logo {
        height: 35px;
    }
    
}
.footer-section {
    background: var(--bg2);
    padding-top: 50px;
}

.footer-logo {
    width: 140px;
}

.footer-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.footer-social a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    margin-right: 10px;
    text-align: center;
    border-radius: 50%;
    background: var(--bg);
    color: #333;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #c1a34d;
    color: white;
}

/* Footer Titles */
.footer-title {
    font-weight: 700;
    color: #c1a34d;
    margin-bottom: 15px;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #c1a34d;
}

/* Opening Hours */
.time-subtitle {
    font-weight: 700;
    margin-top: 15px;
}

.time-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
    font-size: 14px;
}

/* Contact Info */
.contact-subtitle {
    font-weight: 700;
    margin-top: 10px;
}

.footer-contact {
    font-size: 14px;
    color: #444;
}




/* Floating Button Left Side */
.floating-left {
    position: fixed;
    left: 20px;
    bottom: 40px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #333;
    border-radius: 50%;
    display: flex;
    font-size: 22px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

/* Colors */
.float-btn.whats { color: #25D366; }
.float-btn.call { color: #0d6efd; }
.float-btn.location { color: var(--primary-dark); }

/* Hover Effect */
.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.25);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .floating-left {
        left: 10px;
        bottom: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}



.about-banner {
    /* margin: 0px; */
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 40px;
}

/* Titles */
.about-title {
    font-size: 48px;
    font-weight: 700;
    color: #003366;
}

.about-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
    color: #003366;
}
.home-btn{
    background-color: var(--primary);
    padding: 10px 40px;
    color: #fff;

}
.home-btn:hover{
    background-color: var(--primary-dark);
}

/* Smooth Fade + Slide Animation */
.fade-slide-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlide 1.8s ease-out forwards;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 32px;
    }
    .about-subtitle {
        font-size: 18px;
    }
    .about-banner {
        height: 55vh;
    }
}



.newborn-section {
    background: var(--bg);
}

.section-title-2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
}

.underline {
    width: 80px;
    height: 3px;
    background: var(--secondary);
    border-radius: 4px;
}

.content-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
} 

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlide 1s ease forwards;
}

@keyframes fadeSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Responsive Font Adjustments */
 @media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }
    .content-title {
        font-size: 20px;
    }
} 


.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);

}

.underline {
    width: 80px;
    height: 3px;
    background: var(--secondary);
    border-radius: 4px;
}

/* Timeline Layout */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--primary-dark);
    transform: translateX(-50%);
}

.timeline-item {
    width: 50%;
    padding: 20px;
    position: relative;
    background-color: var(--bg2);
}

.timeline-item.left {
    float: left;
    text-align: left;
}

.timeline-item.right {
    float: right;
    text-align: left;
}

/* Dots on timeline */
.timeline-item::before {
    content: "";
    position: absolute;
    top: 35px;
    width: 14px;
    height: 14px;
    background: var(--bg2);
    border: 3px solid var(--primary-dark);
    border-radius: 50%;
    z-index: 5;
}

.timeline-item.left::before {
    right: -7px;
}

.timeline-item.right::before {
    left: -7px;
}

/* Cards */
.timeline-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    transition: 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.small-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.visit-title {
    font-weight: 700;
    font-size: 18px;
    margin: 5px 0 10px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        float: none;
        padding-left: 50px;
        margin-bottom: 30px;
    }
    
    .timeline-item::before {
        left: 14px !important;
        right: auto;
    }
}



.vax-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
}

.vax-underline {
    width: 80px;
    height: 3px;
    background: var(--secondary);
    border-radius: 4px;
}

/* TAB BUTTONS */
.vax-tab-btn {
    background: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.vax-tab-btn.active {
    background: var(--primary);
    color: white;
}

.vax-tab-btn:hover {
    transform: translateY(-3px);
}

/* CARD BOX */
.vax-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

/* TABLE */
.vax-table thead tr {
    background: var(--primary);
    color: white;
}

.vax-table td, 
.vax-table th {
    padding: 18px;
    vertical-align: middle;
    background-color: var(--bg2);
}

/* TAB CONTENT */
.vax-tab-content {
    display: none;
    background-color: var(--bg);
}

.vax-tab-content.active {
    display: block;
}

/* Animation */
.vax-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: vaxFadeUp 0.8s ease forwards;
}

@keyframes vaxFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media(max-width:768px){
    .vax-tab-btn {
        width: 100%;
        text-align: center;
    }
}


.food-section {
    background: #f7f9fa;
}

.food-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
}

.food-underline {
    width: 190px;
    height: 4px;
    background: var(--secondary);
    border-radius: 4px;
}

/* Card box */
.food-card {
    background: #ffffff;
    padding: 35px 20px;
    border-radius:15px;
    height: 100%;
    /* box-shadow: 0px 10px 30px rgba(0,0,0,0.08); */
    transition: 0.3s ease-in-out;
}

.food-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 35px rgba(0,0,0,0.12);
}

/* Icons */
.food-icon {
    font-size: 45px;
    color: #ff6b6b;
    margin-bottom: 10px;
}

/* Heading */
.food-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f3c50;
}

/* Text */
.food-text {
    font-size: 15px;
    color: #4f6475;
    line-height: 1.6;
}

/* Fade animation */
.fade-food {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpFood 0.8s ease forwards;
}

@keyframes fadeUpFood {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive spacing */
@media (max-width: 768px) {
    .food-title {
        font-size: 28px;
    }
    .food-card {
        padding: 25px;
    }
}


/* GALLERY SECTION */

/* Page Title */
.gallery-title {
    text-align: center;
    font-size: 36px;
    margin-top: 20px;
    color: var(--primary-dark);
    font-weight: 800;
}

.underline {
    width: 90px;
    height: 4px;
    background: var(--muted);
    margin: 10px auto 40px;
    border-radius: 5px;
}

/* GALLERY GRID */
.gallery-section {
    padding: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Hover Zoom */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(255,255,255,0.2);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 25px;
    right: 40px;
    color: white;
    font-size: 45px;
    cursor: pointer;
    font-weight: bold;
}

/* Mobile Optimization */
@media(max-width: 600px){
    .gallery-title {
        font-size: 28px;
    }
    .close-btn {
        right: 20px;
        font-size: 36px;
    }
}




/* body {
    background: #f5f8fd;
    font-family: "Poppins", sans-serif;
} */

/* Top Info Boxes */
.contact-info-box {
    background: var(--bg2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    height: 150px;
    gap: 20px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.contact-info-box:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    /* background: #FFF7EF; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    color: var(--primary);
}

/* Contact Form */
.contact-form-box {
    background: var(--bg2);
    /* height: 800px; */
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-control {
    height: 54px;
    border-radius: 12px;
}

textarea.form-control {
    height: 130px;
    resize: none;
}

.submit-btn {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 14px;
    width: 100%;
    border-radius: 12px;
    transition: 0.3s;
    border: none;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

/* Map Section */
.map-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h2 {
    font-weight: 700;
    color: var(--primary);
}
/* .contact-address{
    height: 420px;
} */


















/* Title */
.testi-heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

/* CARD */
.testi-card {
    background: var(--bg2);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    height: 100%;
}

/* Hover */
.testi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* USER INFO */
.testi-user {
    text-align: center;
    margin-bottom: 20px;
}

.testi-user img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.testi-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.testi-stars {
    color: #FFD700;
    font-size: 18px;
}

/* TEXT */
.testi-text {
    font-size: 16px;
    color: #555;
    text-align: center;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 576px) {
    .testi-card {
        padding: 25px;
    }
}

