/* Root Styles - Manokamna Ayurvedic Clinic */
:root {
    --primary-green: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --primary-subtle: #d8f3dc;
    --accent-green: #77A139;
    /* For active/hover states */
    --secondary-earth: #d4a373;
    --secondary-light: #faedcd;
    --white: #ffffff;
    --bg-light: #f8faf9;
    --text-dark: #2b2d42;
    --text-muted: #6c757d;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scroll Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-zoom.is-visible {
    opacity: 1;
    transform: scale(1);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

/* Enhanced Spacing */
.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.py-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
}

.my-6 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}


/* Custom Utilities */
.text-sage {
    color: var(--primary-green);
}

.bg-sage {
    background-color: var(--primary-green);
}

.bg-sage-light {
    background-color: var(--primary-subtle);
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.btn-sage {
    background-color: var(--primary-green);
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    min-height: 48px;
}

.btn-sage:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.25);
    color: white;
}

.navbar-brand {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    color: var(--primary-green) !important;
    display: flex;
    align-items: center;
}

.clinic-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 2px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
}

@media (max-width: 1200px) {
    .nav-link {
        padding: 10px 8px !important;
        font-size: 0.8rem;
    }
}

@media (max-width: 991px) {
    .clinic-name {
        font-size: 0.85rem;
        margin-top: 5px;
    }
}

@media (max-width: 576px) {
    .clinic-name {
        font-size: 0.75rem;
    }
}


.btn-outline-sage {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    min-height: 48px;
}

.btn-outline-sage:hover {
    background-color: var(--primary-green);
    color: white;
}

/* Standardized Small Buttons */
.btn-sm.btn-sage,
.btn-sm.btn-outline-sage,
.btn-sm.btn-success {
    padding: 8px 16px !important;
    min-height: 38px !important;
    font-size: 0.8rem !important;
    line-height: normal !important;
}

/* Navbar Custom */
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-bar .practo-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    color: #fff !important;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

.top-bar .practo-link:hover {
    background: #00bfa5;
    /* Practo brand-like teal color */
    border-color: #00bfa5;
    transform: translateY(-1px);
}


.top-bar a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.top-bar a:hover {
    color: #fff;
    opacity: 1;
}

.top-bar .social-circle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.top-bar .social-circle:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    transform: translateY(-3px) scale(1.1);
    color: #fff;
}

.navbar {
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: white !important;
    z-index: 1050;
}

.navbar.scrolled {
    padding: 0;
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--glass-border);
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.8;
    white-space: nowrap !important;
}

.nav-link:hover {
    color: var(--primary-green) !important;
    opacity: 1;
}

.nav-link.active {
    background-color: var(--primary-green) !important;
    color: white !important;
    border-radius: 50px;
    padding: 5px 15px !important;
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.25);
    opacity: 1;
    white-space: nowrap !important;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f7f4 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary-subtle);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
}

/* Section Headings */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-green);
}

/* Cards */
.ayurvedic-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    /* Updated for image-on-top layout */
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    overflow: hidden;
}

.ayurvedic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.hover-up {
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1) !important;
}

.img-hover-zoom {
    transition: transform 0.5s ease;
    width: 100%;
    object-fit: cover;
}

.ayurvedic-card:hover .img-hover-zoom {
    transform: scale(1.1);
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
    /* Standard property */
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* --- Added Semantic Layout Utility Classes --- */

/* Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* Structural Fixes */
.icon-box-lg {
    width: 50px; 
    height: 50px; 
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--primary-subtle);
    color: var(--primary-dark);
}

.specialized-section {
    background-color: #fbfdfb;
}

.max-width-md {
    max-width: 800px;
}

/* Contact Page Form & Layout */
.contact-hero {
    background: linear-gradient(rgba(27, 67, 50, 0.85), rgba(27, 67, 50, 0.85)), url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    margin-top: 56px;
}
.contact-hero-subtitle {
    color: #d4a373;
}
.contact-info-section {
    background: #f8fbf9; 
    margin-top: -50px; 
    position: relative; 
    z-index: 5;
}
.info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}
.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 106, 79, 0.1);
}
.info-card p {
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: 0.8rem;
}
.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-subtle);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}
.contact-form-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 450px;
}
.form-control {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1.5px solid #eee;
    background: #fdfdfd;
}
.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: none;
    background: white;
}
.btn-submit {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    transition: all 0.3s ease;
}
.btn-submit:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

/* Procedure & General Page Structuring */
.search-input-container {
    max-width: 400px;
}
.cover-image-wrapper {
    height: 240px; 
    overflow: hidden;
}

/* Product App Structuring */
.prod-image-wrapper {
    height: 200px;
}
.yt-thumb-preview {
    height: 100px; 
    object-fit: cover;
}
/* Packages Page Styles */
.packages-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    padding: 120px 0 160px;
    position: relative;
    overflow: hidden;
    margin-top: 56px;
}
.packages-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.4;
}
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
}
.package-grid {
    margin-top: -80px;
    position: relative;
    z-index: 2;
}
.premium-card {
    background: #ffffff;
    border: none;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.02);
}
.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(45, 106, 79, 0.12);
}
.premium-card .card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.premium-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.premium-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}
.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffb703;
    color: #000;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
    z-index: 3;
}
.card-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.pkg-category {
    color: var(--primary-green);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}
.pkg-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.65rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}
.pkg-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e9ecef;
}
.pkg-meta .meta-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}
.pkg-meta .meta-item i {
    color: var(--primary-green);
    margin-right: 6px;
}
.pkg-price-box {
    margin-bottom: 25px;
}
.price-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green);
}
.price-original {
    font-size: 1rem;
    color: #adb5bd;
    text-decoration: line-through;
    margin-left: 10px;
}
.pkg-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}
.pkg-highlights li {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}
.pkg-highlights li i {
    color: var(--primary-green);
    background: var(--primary-subtle);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}
.pkg-footer {
    margin-top: auto;
}
.btn-premium {
    background: var(--primary-green);
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    min-height: 48px;
    line-height: normal;
}
.btn-premium:hover {
    background: var(--primary-dark);
    color: white;
    transform: scale(1.02);
    text-decoration: none;
}
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Blog Page Styles */
.breadcrumb-dark {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%); 
    padding: 60px 0; 
    color: white;
}
.blog-list-card {
    transition: all 0.3s ease;
}
.blog-img-wrapper {
    height: 200px;
}
.img-cover {
    object-fit: cover;
}
.icon-opacity {
    font-size: 5rem; 
    opacity: 0.8;
}
.font-green {
    color: var(--primary-green) !important;
}
.blog-snippet {
    line-height: 1.6;
}
.read-more-link {
    transition: all 0.2s ease;
}

/* Gallery Styles */
.gallery-item { transition: all 0.4s ease; }
.gallery-item img:hover { transform: scale(1.08); }
.group:hover .group-hover-opacity-100 { opacity: 1 !important; }
.cursor-pointer { cursor: pointer; }
.text-xs { font-size: 0.7rem; }
.max-width-sm { max-width: 600px; }
.gallery-img { transition: transform 0.5s; object-fit: cover; height: 250px; }
.gallery-overlay { transition: 0.3s; }

/* Global Footer & FAB Styles */
.footer-logo { height: 180px; width: auto; margin: auto; display: flex; }
.footer-heading { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.text-08rem { font-size: 0.8rem; }
.text-075rem { font-size: 0.75rem; }
.footer-social-btn { width: 36px; height: 36px; font-size: 1rem; }
.floating-btn-container { z-index: 1050; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.mobile-call-btn { width: 50px; height: 50px; border: 2px solid rgba(255,255,255,0.4); background-color: var(--accent-green); font-size: 1.2rem; }
.whatsapp-fab { width: 50px; height: 50px; border: 2px solid rgba(255,255,255,0.4); background-color: #25D366; font-size: 1.5rem; color: white; }
.review-enquiry-fab, .book-appt-fab { border: 2px solid rgba(255,255,255,0.4); min-width: 140px; }
.flex-center { justify-content: center; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(119, 161, 57, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(119, 161, 57, 0); }
    100% { box-shadow: 0 0 0 0 rgba(119, 161, 57, 0); }
}
.animate-pulse-green { animation: pulse-green 2s infinite; }
.animate-bounce { animation: bounce 2s infinite; }
.animate-bounce-slow { animation: bounceSlow 3s infinite; }

.btn-sage { background-color: var(--primary-green); color: white; border: none; }
.btn-sage:hover { background-color: var(--primary-dark); color: white; }
.btn-outline-sage { border: 2px solid var(--primary-green); color: var(--primary-green); font-weight: 600; }
.btn-outline-sage:hover { background-color: var(--primary-green); color: white; }
.bg-sage-light { background-color: var(--primary-subtle); }
.text-sage { color: var(--primary-green); }

.btn-remove-enq {
    width: 32px; height: 32px; min-width: 32px;
    border-radius: 50% !important; padding: 0 !important;
    display: inline-flex !important; align-items: center; justify-content: center;
    background: #f8d7da; color: #842029; border: 1px solid #f5c2c7;
    transition: all 0.2s ease;
}
.btn-remove-enq:hover {
    background: #dc3545; color: white; border-color: #dc3545;
}
.enquiry-btn-wrapper {
    display: inline-flex !important; align-items: center; gap: 8px; vertical-align: middle; max-width: 100%;
}
.enquiry-btn-wrapper.w-100 { display: flex !important; }

.main-footer {
    background: var(--primary-dark);
    color: white;
    padding: 40px 0 20px;
    border-top: 5px solid var(--accent-green);
}

.main-footer img {
    height: 180px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-green);
    transform: translateX(3px);
    display: inline-block;
}

.footer-social-link {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.footer-social-link:hover {
    background: var(--accent-green);
    color: #fff;
    transform: translateY(-3px);
}

/* Breadcrumb Bar */
.breadcrumb-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.breadcrumb-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/leaf.png');
    opacity: 0.1;
    z-index: 0;
}

.breadcrumb-bar h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.breadcrumb-bar .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "/";
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

/* About Us Sections */
.about-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.vision-mission-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border-bottom: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-subtle);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.methodology-list {
    list-style: none;
    padding: 0;
}

.methodology-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.methodology-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-green);
    background: var(--primary-subtle);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
}

.mission-vision-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Therapy Tabs & Cards */
.therapy-tabs-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 50px;
}

.therapy-tab-list {
    background: #f8fbf8;
    border-right: 1px solid #eee;
}

.therapy-tab-btn {
    width: 100%;
    padding: 20px 25px;
    border: none;
    background: none;
    text-align: left;
    font-weight: 700;
    color: #4a5568;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.therapy-tab-btn i {
    font-size: 1.2rem;
    color: #cbd5e0;
    transition: all 0.3s ease;
}

.therapy-tab-btn:hover {
    background: #fff;
    color: var(--sage-green);
}

.therapy-tab-btn.active {
    background: #fff;
    color: var(--sage-green);
}

.therapy-tab-btn.active i {
    color: var(--sage-green);
}

.therapy-tab-btn.active::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 15%;
    height: 70%;
    width: 4px;
    background: var(--sage-green);
    border-radius: 4px 0 0 4px;
}

.therapy-content-pane {
    display: none;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.therapy-content-pane.active {
    display: block;
}

.therapy-card-detailed {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.therapy-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--sage-green);
}

.therapy-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.therapy-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.therapy-card-detailed:hover .therapy-card-img img {
    transform: scale(1.1);
}

.therapy-card-body {
    padding: 25px;
}

.therapy-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

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

@media (max-width: 991px) {
    .therapy-tab-list {
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .therapy-tab-btn {
        width: auto;
        white-space: nowrap;
        border-bottom: none;
        border-right: 1px solid #eee;
    }

    .therapy-tab-btn.active::after {
        right: 15%;
        bottom: -1px;
        top: auto;
        height: 4px;
        width: 70%;
        border-radius: 4px 4px 0 0;
    }
}

/* Awards & Certifications Section */
.award-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 106, 79, 0.1) !important;
    border-color: #2d6a4f;
    /* Using hex since --sage-green might not be defined everywhere */
}

.certificate-wrapper {
    position: relative;
    background: #f8fcf9;
    border: 1px solid #edf2ef;
    transition: all 0.3s ease;
}

.award-card:hover .certificate-wrapper {
    border-color: #2d6a4f;
    transform: scale(1.02);
}

.award-card img {
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

.award-card:hover img {
    filter: grayscale(0%);
}

/* ========================================================================= */
/* GOOGLE TRANSLATE WIDGET CUSTOMIZATION */
/* ========================================================================= */
/* Hide the default Google Translate top banner */
.skiptranslate iframe,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Style the dropdown nicely */
select.goog-te-combo {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    padding: 6px 30px 6px 15px !important;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 10px auto !important;
    font-family: 'Outfit', sans-serif;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

select.goog-te-combo option {
    color: #2b2d42;
    background-color: #ffffff;
    font-weight: 500;
}

select.goog-te-combo:hover,
select.goog-te-combo:focus {
    border-color: rgba(255, 255, 255, 0.5) !important;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Hide the powered by google logo completely */
.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.goog-te-gadget>span {
    display: none !important;
}

.goog-te-gadget>div {
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
}