/* 
   Yogtirth Ayurveda Stylesheet 
   Primary: #FF6B00; Secondary: #FF8C42; Accent: #2E7D32, #66BB6A; Base: #FFFFFF 
*/

:root {
    --primary: #FF6B00;
    --primary-light: #ffaa6e;
    --secondary: #FF8C42;
    --accent: #a60505;
    --accent-light: #d42222;
    --base: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-offwhite: #FFFBF7;
    --text-main: #333333;
    --text-muted: #666666;
    
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--base);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal="left"] {
    transform: translateX(-50px);
}
[data-reveal="right"] {
    transform: translateX(50px);
}
[data-reveal="scale"] {
    transform: scale(0.88);
    opacity: 0;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}
/* Stagger children delay */
[data-reveal-group] > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal-group].revealed > * {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal-group].revealed > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-group].revealed > *:nth-child(2) { transition-delay: 0.15s; }
[data-reveal-group].revealed > *:nth-child(3) { transition-delay: 0.25s; }
[data-reveal-group].revealed > *:nth-child(4) { transition-delay: 0.35s; }
[data-reveal-group].revealed > *:nth-child(5) { transition-delay: 0.45s; }
[data-reveal-group].revealed > *:nth-child(6) { transition-delay: 0.55s; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

h1 { font-size: 3.5rem; line-height: 1.2; font-weight: 700; }
h2 { font-size: 2.5rem; line-height: 1.3; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
p { margin-bottom: 1rem; color: var(--text-muted); }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-offwhite);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.text-primary { color: var(--primary); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--base);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    background-color: #e66000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background-color: var(--primary);
    color: var(--base);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--base);
    box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover {
    background-color: #1EBE5D;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}
.btn-block {
    display: block;
    width: 100%;
}

.btn-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-link:hover {
    color: var(--secondary);
    gap: 12px;
}

/* Top Banner */
.top-banner {
    background-color: var(--accent);
    color: var(--base);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
}
.top-banner p {
    margin: 0;
    color: var(--base);
}
.banner-link {
    color: #ffd27a;
    font-weight: 600;
    margin-left: 10px;
}

/* Navbar */
.navbar {
    background-color: var(--base);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    background-color: var(--primary);
    color: var(--base);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 15px;
    align-items: center;
}
.nav-menu li a {
    font-weight: 500;
    color: var(--text-main);
    white-space: nowrap;
}
.nav-menu li a:hover, .nav-menu li a.active {
    color: var(--primary);
}

.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--base);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    padding: 8px 20px;
}
.dropdown-menu li a:hover {
    padding-left: 5px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent);
}

/* ==============================
   HERO SLIDER — Fixed
   ============================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 88vh;
    min-height: 550px;
    overflow: hidden;
}

/* Each slide fills the whole container */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 0;
}
.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Slide caption pill — inside the slide, bottom right */
.slide-label {
    position: absolute;
    bottom: 80px;
    right: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    z-index: 3;
}

/* Gradient overlay — sits above slides, below content */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.93) 0%,
        rgba(255, 255, 255, 0.60) 45%,
        rgba(255, 255, 255, 0.0) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Text content — above slides and overlay */
.slider-content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 5;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.88);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.slider-arrow:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* Dots */
.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0 10px;
    z-index: 10;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.4);
}

.hero-content {
    max-width: 580px;
    padding: 20px 0;
}

.hero-content .badge {
    display: inline-block;
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.hero-content h1 {
    color: var(--accent);
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #a60505 0%, #d42222 50%, #a60505 100%);
    padding: 30px 0;
    color: var(--base);
    position: relative;
    z-index: 3;
    margin-top: -30px;
    border-radius: var(--border-radius-lg);
    /* 3D shadow effect */
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}
.trust-item:hover {
    transform: scale(1.06);
}
.trust-icon {
    font-size: 2.5rem;
    color: #ffffff;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.trust-text h3 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: var(--base);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.trust-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* Common Section Styles */
.section-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    margin-bottom: 10px;
    font-weight: 700;
}
.section-title {
    color: var(--accent);
    margin-bottom: 15px;
}
.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
}
.about-img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--base);
    padding: 20px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 5px solid var(--bg-offwhite);
}
.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.experience-badge .text {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-main);
}
.feature-list {
    margin-top: 20px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
}
.feature-list i {
    color: var(--accent-light);
    font-size: 1.2rem;
}

/* Treatments Section */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.treatment-card {
    background: var(--base);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-offwhite);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.treatment-card:hover .card-icon {
    background: var(--accent);
    color: var(--base);
}

/* Panchkarma Section */
.panchkarma-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.therapy-card {
    background: var(--base);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.therapy-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.therapy-card:hover .therapy-img {
    transform: scale(1.05);
}
.therapy-content {
    padding: 25px;
}
.therapy-desc {
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.therapy-benefits {
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.therapy-benefits li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}
.therapy-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-weight: bold;
}

/* Why Choose Us & Ashram Life */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--base);
}
.accordion-header {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--base);
    transition: background 0.3s ease;
}
.accordion-header h4 {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 600;
}
.accordion-item.active .accordion-header {
    background: var(--accent);
    color: var(--base);
}
.accordion-item.active .accordion-header h4 {
    color: var(--base);
}
.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-item.active .accordion-body {
    padding: 20px;
    max-height: 300px;
}

.ashram-card {
    background: var(--accent);
    color: var(--base);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    height: 100%;
}
.ashram-card h3 {
    color: var(--base);
}
.ashram-card p {
    color: rgba(255, 255, 255, 0.8);
}
.timeline {
    margin-top: 30px;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 5px;
    height: calc(100% - 10px);
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}
.timeline-item {
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
}
.timeline-item h5 {
    color: var(--base);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Video Tabs UI */
.video-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.tab-link {
    padding: 12px 25px;
    background: var(--base);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: var(--accent);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tab-link.active, .tab-link:hover {
    background: var(--accent);
    color: var(--base);
    border-color: var(--accent);
}
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Interactive Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.video-card {
    background: var(--base);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.video-iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}
.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-card-body {
    padding: 20px;
    border-top: 2px solid var(--accent);
}
.video-card-body h4 {
    margin-bottom: 10px;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--accent);
}
.video-card-body p {
    font-size: 0.9rem;
    margin-bottom: 0;
}
.category-title {
    color: var(--accent);
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.timeline-item h5 i {
    position: absolute;
    left: 0;
    background: var(--base);
    color: var(--accent);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.testimonial-card {
    background: var(--bg-offwhite);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    border: 1px solid #eee;
}
.rating {
    color: #FFB100;
    margin-bottom: 15px;
}
.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
}
.patient-info h4 {
    margin: 0;
    color: var(--accent);
}
.patient-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Appointment Section */
.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.contact-item i {
    background: var(--bg-light);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
.contact-item h4 {
    margin: 0 0 5px 0;
    font-family: var(--font-sans);
}
.contact-item p {
    margin: 0;
}

.appointment-form-card {
    background: var(--base);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--primary);
}
.appointment-form-card h3 {
    margin-bottom: 25px;
    text-align: center;
}
.form-group {
    margin-bottom: 20px;
}
.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: #fcfcfc;
    transition: border-color 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--base);
}
.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: linear-gradient(160deg, #2d3a2e 0%, #1a2e1b 60%, #0f1f0f 100%);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-logo .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}
.footer-logo .logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--base);
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--base);
}
.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
.footer-links h3 {
    color: var(--base);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-bottom {
    background: #0a120a;
    padding: 16px 0;
    font-size: 0.88rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-ribbon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copyright {
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}
.footer-copyright a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
.footer-social-ribbon {
    display: flex;
    gap: 12px;
}
.footer-social-ribbon a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
}
.footer-social-ribbon a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}
.footer-policy-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-policy-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    white-space: nowrap;
}
.footer-policy-links a:hover {
    color: rgba(255,255,255,0.9);
}
@media(max-width: 768px) {
    .footer-ribbon {
        flex-direction: column;
        text-align: center;
    }
    .footer-policy-links {
        justify-content: center;
    }
    .footer-social-ribbon {
        justify-content: center;
    }
}

/* Sticky Action Buttons */
.sticky-whatsapp, .sticky-call {
    position: fixed;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--base);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.3s ease;
}
.sticky-whatsapp {
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
}
.sticky-call {
    bottom: 165px;
    right: 25px;
    background-color: var(--primary);
}
.sticky-whatsapp:hover, .sticky-call:hover {
    transform: scale(1.1);
}

/* Exit Popup Modern */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}
.exit-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}
.exit-popup-modal.popup-modern {
    display: flex;
    flex-direction: row;
    padding: 0;
    width: 90%;
    max-width: 800px;
    background: var(--base);
    border-radius: 12px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}
.exit-popup-overlay.show .exit-popup-modal.popup-modern {
    transform: translateY(0) scale(1);
}
.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    z-index: 10;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.popup-image {
    flex: 1;
    background: url('assets/popup_yoga.png') center/cover no-repeat;
    background-position: top center;
}
.popup-body {
    flex: 1;
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.popup-badge {
    background: rgba(46, 125, 50, 0.1);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    display: table;
    margin-bottom: 12px;
}
.popup-body h3 {
    color: var(--accent);
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: var(--font-serif);
}
.popup-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}
.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.popup-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}
.popup-btn {
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}
.popup-secure {
    text-align: center;
    margin-top: 15px !important;
    font-size: 0.8rem !important;
    color: #999 !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    .hero { min-height: 60vh; }
    .about-grid, .two-col-grid, .appointment-wrapper {
        grid-template-columns: 1fr;
    }
    .trust-container {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .trust-item {
        width: 45%;
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .exit-popup-modal.popup-modern {
        flex-direction: column;
        max-width: 90%;
        max-height: 90vh;
        overflow-y: auto;
    }
    .popup-image {
        min-height: 150px;
    }
    .popup-body {
        padding: 30px 20px;
    }
    .popup-body h3 {
        font-size: 1.5rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .hero-container {
        justify-content: center;
    }
    .hero-content {
        text-align: center;
    }
    .treatment-details .container, .page-header p {
        grid-template-columns: 1fr !important;
    }
    .nav-buttons {
        display: none;
    }
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: var(--base);
        padding: 80px 20px 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 99;
        transition: left 0.3s ease;
        gap: 15px;
    }
    .nav-menu.active {
        left: 0;
    }
    .menu-toggle {
        display: block;
        z-index: 100;
        position: relative;
    }
    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 20px;
    }
    .trust-item {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MOUSE PARALLAX on Hero ===== */
.hero-slider .slide {
    will-change: transform;
    transform-origin: center center;
}

/* ===== MICRO-ANIMATION ENHANCEMENTS ===== */
.treatment-card, .video-card, .expert-card {
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease !important;
}
.treatment-card:hover, .video-card:hover, .expert-card:hover {
    transform: translateY(-8px) scale(1.015) !important;
    box-shadow: 0 20px 40px rgba(46,125,50,0.15) !important;
}
.trust-item {
    transition: transform 0.3s ease;
}
.trust-item:hover {
    transform: scale(1.06);
}
.tab-link {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.tab-link:hover {
    transform: translateY(-3px) !important;
}
.social-links a {
    transition: transform 0.3s ease, background 0.3s ease !important;
}
.social-links a:hover {
    transform: translateY(-5px) rotate(5deg) !important;
}
/* Water Drop Ripple Effect */
.mouse-ripple {
    position: fixed;
    pointer-events: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--primary);
    transform: translate(-50%, -50%);
    z-index: 9999;
    animation: rippleAnim 0.6s ease-out forwards;
}

.click-ripple {
    position: fixed;
    pointer-events: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid var(--primary);
    transform: translate(-50%, -50%);
    z-index: 9999;
    animation: clickRippleAnim 0.8s ease-out forwards;
}

@keyframes rippleAnim {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
        border-width: 2px;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
        border-width: 0px;
    }
}

@keyframes clickRippleAnim {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
        border-width: 3px;
    }
    100% {
        transform: translate(-50%, -50%) scale(6);
        opacity: 0;
        border-width: 0px;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--base);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        justify-content: space-around;
        padding: 10px 0;
        padding-bottom: env(safe-area-inset-bottom, 10px);
    }
    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--text-muted);
        font-size: 0.75rem;
        font-weight: 500;
        gap: 5px;
        text-decoration: none;
        flex: 1;
    }
    .mobile-bottom-nav .nav-item i {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }
    .mobile-bottom-nav .nav-item.active, 
    .mobile-bottom-nav .nav-item:hover {
        color: var(--primary);
    }
    
    .sticky-whatsapp {
        bottom: 80px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    .sticky-call {
        bottom: 200px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }

    body {
        padding-bottom: 70px;
    }
}

/* AI Chatbot Styles */
.chatbot-toggle {
    position: fixed;
    bottom: 95px;
    right: 25px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chatbot-toggle:hover {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .chatbot-toggle {
        bottom: 140px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 350px;
    max-width: calc(100% - 40px);
    height: 500px;
    max-height: 70vh;
    background: var(--base);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}
.chatbot-container.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 150px;
        right: 20px;
        width: calc(100% - 40px);
        height: 450px;
    }
}

.chatbot-header {
    background: var(--accent);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chatbot-title {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--bg-offwhite);
}
.message {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}
.bot-message {
    background: #e1f5fe;
    color: #01579b;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}
.user-message {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}
.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 10px 15px;
    background: #e1f5fe;
    border-radius: 15px;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    width: fit-content;
}
.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #01579b;
    border-radius: 50%;
    animation: typing 1s infinite alternate;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
    from { opacity: 0.3; transform: translateY(0); }
    to { opacity: 1; transform: translateY(-3px); }
}

.chatbot-input-area {
    display: flex;
    padding: 15px;
    background: var(--base);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.chatbot-input-area input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-family: var(--font-sans);
}
.chatbot-input-area input:focus {
    border-color: var(--primary);
}
.chatbot-input-area button {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}
.chatbot-input-area button:hover {
    background: #e66000;
}

/* Chatbot Appended Forms */
.chat-appointment-form {
    margin-top: 15px;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.chat-appointment-form h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}
.chat-appointment-form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}
.chat-appointment-form input:focus {
    border-color: var(--primary);
}
.chat-appointment-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s ease;
    margin-top: 4px;
}
.chat-appointment-form button:hover {
    background: #e66000;
}

.chat-call-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 10px;
    width: fit-content;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s, background 0.3s;
}
.chat-call-action-btn:hover {
    background: #e66000;
    color: white;
    transform: translateY(-2px);
}


/* --- MICROSOFT 365 DESIGN SYSTEM OVERRIDES --- */

        /* Microsoft 365 Style Overrides */
        .ms-navbar {
            display: flex;
            align-items: center;
            background: #fff;
            padding: 0 20px;
            height: 60px;
            box-shadow: none;
            border-bottom: 1px solid #eaeaea;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .ms-nav-container {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            max-width: 1600px;
            margin: 0 auto;
        }
        .ms-logo-area {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .ms-logo-img {
            height: 35px;
        }
        .ms-logo-divider {
            width: 1px;
            height: 24px;
            background: #000;
            opacity: 0.3;
        }
        .ms-brand-name {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #000;
        }
        .ms-nav-links {
            display: flex;
            gap: 20px;
            align-items: center;
            list-style: none;
            margin: 0 0 0 20px;
            padding: 0;
        }
        .ms-nav-links li a {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 13px;
            color: #242424;
            text-decoration: none;
        }
        .ms-nav-links li a:hover {
            text-decoration: underline;
        }
        .ms-right-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .ms-action-link {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 13px;
            color: #242424;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .ms-action-btn-outline {
            border: 1px solid #242424;
            background: transparent;
            color: #242424;
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 2px;
            text-decoration: none;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* Hero Section */
        .ms-hero {
    background: linear-gradient(180deg, #f2f6fa 0%, #e1e9f4 100%);
    padding: 80px 20px 60px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


        .ms-hero-container {
    display: flex;
    max-width: 1400px;
    width: 100%;
    align-items: center;
    gap: 60px;
}
        .ms-hero-text {
    flex: 1;
    max-width: 550px;
}
.ms-hero-image {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ms-hero-card {
    width: 100%;
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: background-image 1.2s ease-in-out;
}
.ms-hero-card #slideBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}
        .ms-hero-text h1 {
            font-size: 3.5rem;
            font-weight: 600;
            line-height: 1.1;
            color: #111;
            margin-bottom: 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .ms-hero-text p {
            font-size: 1.1rem;
            color: #3b3b3b;
            line-height: 1.5;
            margin-bottom: 30px;
        }
        .ms-hero-buttons {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .ms-btn-primary {
            background: #000;
            color: #fff;
            padding: 12px 24px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
        }
        .ms-btn-primary:hover {
            background: #242424;
        }
        .ms-btn-secondary {
            background: #c7d5e0;
            color: #111;
            padding: 12px 24px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .ms-btn-secondary:hover {
            background: #b2c4d4;
        }
        .ms-btn-link {
            color: #111;
            font-weight: 600;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
            margin-left: 10px;
        }
        .ms-btn-link:hover {
            text-decoration: underline;
        }
        
        
        
        
        /* Services Tab */
        .ms-services-tab {
            background: #fff;
            border-bottom: 1px solid #eaeaea;
            padding: 0 20px;
            position: sticky;
            top: 0; /* Changed to stick to top */
            z-index: 999;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .ms-services-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 50px;
            overflow-x: auto;
        }
        .ms-services-list {
            display: flex;
            list-style: none;
            gap: 25px;
            margin: 0;
            padding: 0;
            white-space: nowrap;
        }
        .ms-services-list li a {
            font-size: 13px;
            font-weight: 600;
            color: #242424;
            text-decoration: none;
            padding: 15px 0;
            display: inline-block;
            border-bottom: 2px solid transparent;
        }
        .ms-services-list li a:hover,
        .ms-services-list li a.active {
            border-bottom-color: #000;
            color: #000;
        }
        .ms-tab-btn {
            background: #001a35;
            color: #fff;
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
            white-space: nowrap;
        }
        .ms-tab-btn:hover {
            background: #002d5c;
        }

        /* Hide the old top banner since Microsoft 365 doesn't have it */
        .top-banner { display: none !important; }

        /* Slide-down Tab Content */
        .ms-tab-content-wrapper {
            background: #f8f9fa;
            border-bottom: 1px solid #eaeaea;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
            position: sticky;
            top: 110px; /* Assuming header is 60px and tab bar is 50px */
            z-index: 998;
        }
        .ms-tab-content-wrapper.open {
            max-height: 500px;
            padding: 30px 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .ms-tab-pane {
            display: none;
            max-width: 1200px;
            margin: 0 auto;
            animation: fadeInTab 0.4s ease;
        }
        .ms-tab-pane.active {
            display: block;
        }
        @keyframes fadeInTab {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .ms-tab-inner {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .ms-tab-info {
            flex: 1;
        }
        .ms-tab-info h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #111;
        }
        .ms-tab-info p {
            font-size: 1.05rem;
            color: #444;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .ms-tab-info a {
            color: #005a9e;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .ms-tab-info a:hover {
            text-decoration: underline;
        }
        .ms-tab-icon {
            font-size: 3rem;
            color: #a60505;
            padding: 20px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 90px;
            height: 90px;
        }

        @media (max-width: 992px) {
            .ms-hero-container {
    display: flex;
    max-width: 1400px;
    width: 100%;
    align-items: center;
    gap: 60px;
}
            .ms-hero-buttons {
                justify-content: center;
            }
            .ms-nav-links {
                display: none; /* simple mobile hide for now */
            }
        }
    
        .ms-nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
            margin: 0;
            padding: 0;
        }
        .ms-nav-links li a {
            font-size: 14px;
            font-weight: 500;
            color: #242424;
            text-decoration: none;
            padding: 20px 0;
            display: inline-block;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }
        .ms-nav-links li a:hover,
        .ms-nav-links li a.active {
            border-bottom-color: #000;
            color: #000;
        }

/* MS Navbar Mobile Responsive Additions */
.ms-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #242424;
    cursor: pointer;
    margin-left: 10px;
}

@media (max-width: 992px) {
    .ms-navbar {
        padding: 0 15px;
    }
    .ms-menu-toggle {
        display: block;
    }
    .ms-logo-divider {
        display: none;
    }
    .ms-brand-name {
        display: none;
    }
    .man-nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px; /* Made slightly wider for better readability */
        height: 100vh; /* Changed from calc to full vh */
        background: #fff;
        box-shadow: 2px 0 15px rgba(0,0,0,0.15);
        padding: 80px 20px 20px 20px; /* Added top padding to clear header if needed */
        transition: left 0.3s ease-in-out;
        z-index: 9999; /* Increased z-index */
        overflow-y: auto;
    }
    .man-nav-links.active {
        left: 0;
    }
    .man-nav-links li a {
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #eaeaea;
        color: #333;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 14px;
        display: block;
    }
    .man-nav-links li.dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 15px;
        margin-top: 10px;
        background: #fafafa;
        border-radius: 6px;
    }
    .man-nav-links li.dropdown.active .dropdown-menu {
        display: block;
    }
    .ms-right-actions .ms-action-link span {
        display: none;
    }
    .ms-right-actions .ms-action-btn-outline {
        padding: 6px 10px;
        font-size: 12px;
    }
    .ms-services-tab {
        top: 0;
    }
    .ms-services-list {
        padding-bottom: 5px;
    }
    .ms-services-list::-webkit-scrollbar {
        display: none;
    }
}

/* Hero Mobile Fixes */
@media (max-width: 992px) {
    .ms-hero {
        padding: 40px 15px 30px;
    }
    .ms-hero-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .ms-hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .ms-hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .ms-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .ms-hero-card {
        width: 100%;
        max-width: 100%;
    }
}

/* Google Translate Footer Styling */
.footer-translate {
    display: inline-block;
    margin: 0 15px;
}
.goog-te-gadget-simple {
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    padding: 2px 5px !important;
    font-family: var(--font-sans) !important;
    font-size: 0.9rem !important;
}
.goog-te-gadget-icon {
    display: none;
}
@media (max-width: 768px) {
    .footer-translate {
        margin: 15px 0;
        text-align: center;
        width: 100%;
    }
}
/* Hide Google Translate top banner */
body { top: 0 !important; }
.skiptranslate iframe.goog-te-banner-frame { display: none !important; }

.goog-te-combo {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    outline: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: border-color 0.3s;
}
.goog-te-combo:focus {
    border-color: #e34e19;
}
/* Hide the powered by google logo */
.goog-logo-link {
    display:none !important;
}
.goog-te-gadget {
    color: transparent !important;
}

/* Hide scrollbar for services container but keep functionality */
.ms-services-container {
    overflow-y: hidden !important;
    scrollbar-width: none; /* Firefox */
}
.ms-services-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.ms-services-list li a {
    display: flex;
    align-items: center;
}

/* --- REDESIGNED HEADER (MANMAUJI STYLE) --- */
.man-header {
    font-family: 'Outfit', sans-serif;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}
@media (max-width: 992px) {
    .man-header {
        position: sticky;
        top: 0;
        z-index: 9999;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
}

/* Top Row */
.man-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 40px;
    background: #F8F7F1;
    border-bottom: 1px solid #eaeaea;
}

.man-logo-section {
    display: flex;
    align-items: center;
    gap: 30px;
}
.man-logo-img {
    height: 38px;
}
.man-call-block {
    display: flex;
    align-items: center;
    gap: 10px;
}
.call-icon {
    font-size: 18px;
    color: #4a5d23;
}
.call-details {
    display: flex;
    flex-direction: column;
}
.call-label {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.call-number {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.man-search-section {
    flex: 1;
    max-width: 850px;
    margin: 0 20px;
    position: relative;
    overflow: visible;
}
.man-search-form {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: visible;
    height: 38px;
    position: relative;
    z-index: 1;
}
.search-category {
    background: #f9f9f9;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #555;
    border-right: 1px solid #ddd;
    cursor: pointer;
}
.man-search-input {
    flex: 1;
    border: none;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
}
.man-search-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s;
}
.man-search-btn:hover {
    background: #333;
}

.man-action-section {
    display: flex;
    align-items: center;
    gap: 20px;
}
.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}
.man-btn-gold {
    background: #d4a373;
    color: #111;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}
.man-btn-gold:hover {
    background: #c39262;
}

/* Bottom Row */
.man-bottom-row {
    background: #F4F1EA;
    border-bottom: 1px solid #e5dbca;
}
.man-nav-container {
    display: flex;
    align-items: center;
    padding: 0 40px;
    height: 50px;
}
.man-all-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    margin-right: 30px;
}
.man-nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.man-nav-links li a {
    text-decoration: none;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s;
}
.man-nav-links li a:hover {
    color: #d4a373;
}
.gold-text-link {
    color: #d4a373 !important;
}

/* --- REDESIGNED HERO SECTION --- */
.man-hero-section {
    position: relative;
    width: 100%;
    height: 850px;
    background-size: cover;
    background-position: right 20%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.man-slide-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: right 20%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}
.hero-gradient-mask {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, #ffffff 40%, rgba(255,255,255,0) 80%);
    z-index: 2;
}

.man-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.man-hero-content {
    max-width: 550px;
}
.man-overline {
    font-size: 11px;
    font-weight: 700;
    color: #d4a373;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.man-hero-title {
    transition: opacity 0.5s ease-in-out;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}
.gold-text {
    color: #d4a373;
}
.man-hero-desc {
    transition: opacity 0.5s ease-in-out;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.man-hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 80px;
}
.btn-solid-black {
    background: #111;
    color: #fff;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-solid-black:hover {
    background: #333;
}
.btn-outline-grey {
    background: transparent;
    color: #111;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: border-color 0.3s;
}
.btn-outline-grey:hover {
    border-color: #111;
}

/* Slider Controls */
.man-slider-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}
.slider-arrows {
    display: flex;
    gap: 8px;
}
.arrow-btn {
    background: #fff;
    border: 1px solid #eaeaea;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111;
    transition: all 0.3s;
}
.arrow-btn:hover {
    background: #f9f9f9;
    border-color: #ddd;
}
.slider-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 1024px) {
    .man-search-section { display: none; }
    .man-action-section .man-btn-gold { display: none; }
    .hero-gradient-mask { background: linear-gradient(to right, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0.4) 100%); }
}
@media (max-width: 768px) {
    .man-top-row, .man-nav-container { padding: 10px 20px; }
    .man-nav-links { display: none; }
    .ms-menu-toggle { display: block !important; font-size: 20px; margin-left: 15px; }
    .man-hero-section {
        min-height: 600px;
        height: auto;
        padding-top: 85px; /* Push content down to clear absolute header */
        padding-bottom: 40px; /* Give room at bottom for slider dots */
    }
    .hero-gradient-mask { background: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 100%); }
    .man-hero-container { padding: 0 20px; }
    .man-hero-title { font-size: 2.5rem; }
}


/* --- MOBILE RESPONSIVENESS FOR MANMAUJI HEADER --- */
/* ================================================
   MOBILE HEADER - SIMPLE SINGLE ROW
   [Logo Left]                    [☰ Right]
   (Search bar hidden on mobile as requested)
   ================================================ */
@media (max-width: 992px) {
    .man-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: transparent;
        border: none !important;
        z-index: 9999 !important;
        transition: background 0.3s ease;
    }
    
    .man-header.scrolled {
        background: #fff !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    }

    .man-header.scrolled .man-top-row {
        background: transparent !important;
    }

    .man-top-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 12px 16px !important;
        background: transparent;
        box-sizing: border-box !important;
        width: 100% !important;
        min-height: 64px !important;
        border: none !important;
    }

    /* ── Logo Section (Left) ── */
    .man-logo-section {
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        width: auto !important;
    }
    .man-brand {
        margin: 0 !important;
        max-width: 150px !important;
    }
    .man-logo-img {
        width: 100% !important;
        height: auto !important;
        max-height: 44px !important;
        object-fit: contain !important;
    }
    .man-call-block {
        display: none !important;
    }

    /* ── Action Section (Right / Hamburger) ── */
    .man-action-section {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        padding: 0 !important;
        margin: 0 !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
    }

    .ms-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 24px !important;
        background: #fff !important;
        border: 1px solid #eaeaea !important;
        border-radius: 6px !important;
        color: #111 !important;
        pointer-events: auto !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.08) !important;
        margin: 0 !important;
    }

    /* ── Hide completely on mobile ── */
    .man-search-section,
    .man-btn-gold,
    .lang-selector,
    .man-all-menu {
        display: none !important;
    }

    /* Keep bottom row in DOM so the fixed sidebar can render, but hide it visually */
    .man-bottom-row,
    .man-nav-container {
        display: block !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        overflow: visible !important;
    }
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    justify-content: space-around;
    padding: 10px 0 15px;
    border-top: 1px solid #eaeaea;
}
.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #555;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    gap: 4px;
}
.mobile-bottom-nav a i {
    font-size: 20px;
    margin-bottom: 2px;
}
.mobile-bottom-nav a:hover, .mobile-bottom-nav a.active {
    color: #d4a373;
}

@media (max-width: 992px) {
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: 65px;
    }
}

/* --- SEARCH DROPDOWN & RESULTS BOX --- */

.search-category {
    position: relative;
    user-select: none;
    min-width: 95px;
    justify-content: space-between;
}

.cat-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 120px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 1001;
}

.cat-dropdown-menu.show {
    display: block;
}

.cat-dropdown-menu li {
    padding: 10px 15px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
}

.cat-dropdown-menu li:hover {
    background: #f1f1f1;
}

.cat-dropdown-menu li.active {
    font-weight: 600;
    color: #4a6741;
}

.man-search-results-box {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1002;
}

.man-search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.man-search-result-item:last-child {
    border-bottom: none;
}

.man-search-result-item:hover {
    background: #f9f9f9;
}

.man-search-result-icon {
    width: 30px;
    text-align: center;
    color: #888;
    margin-right: 15px;
    font-size: 1.1rem;
}

.man-search-result-item:hover .man-search-result-icon {
    color: #4a6741;
}

.man-search-result-text {
    flex: 1;
}

.man-search-result-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 2px;
    font-family: 'Outfit', sans-serif;
}

.man-search-result-cat {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.man-search-no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

/* --- SEARCH DROPDOWN & RESULTS BOX --- */
.man-search-section {
    position: relative; /* ensure absolute children are relative to this */
}

.search-category {
    position: relative;
    user-select: none;
    min-width: 95px;
    justify-content: space-between;
}

.cat-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 120px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 1001;
}

.cat-dropdown-menu.show {
    display: block;
}

.cat-dropdown-menu li {
    padding: 10px 15px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
}

.cat-dropdown-menu li:hover {
    background: #f1f1f1;
}

.cat-dropdown-menu li.active {
    font-weight: 600;
    color: #4a6741;
}

.man-search-results-box {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1002;
}

.man-search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.man-search-result-item:last-child {
    border-bottom: none;
}

.man-search-result-item:hover {
    background: #f9f9f9;
}

.man-search-result-icon {
    width: 30px;
    text-align: center;
    color: #888;
    margin-right: 15px;
    font-size: 1.1rem;
}

.man-search-result-item:hover .man-search-result-icon {
    color: #4a6741;
}

.man-search-result-text {
    flex: 1;
}

.man-search-result-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 2px;
    font-family: 'Outfit', sans-serif;
}

.man-search-result-cat {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.man-search-no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .panchkarma-slider {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        width: 100%;
    }
    .therapy-card {
        min-width: 0 !important; /* Prevents flex/grid blowout */
    }
    .therapy-content {
        padding: 10px !important;
    }
    .therapy-img {
        height: 120px !important;
    }
    .therapy-desc {
        font-size: 0.75rem !important;
        margin-bottom: 5px !important;
    }
    .therapy-content h3 {
        font-size: 1rem !important;
        margin-bottom: 5px !important;
    }
    .therapy-benefits {
        padding-top: 5px !important;
    }
    .therapy-benefits li {
        font-size: 0.75rem !important;
        margin-bottom: 2px !important;
    }
    
    html, body {
        overflow-x: hidden;
    }
    .man-top-row {
        width: 100%;
        box-sizing: border-box;
    }
    .man-search-section {
        box-sizing: border-box;
    }
}


