/* ==========================================================================
   SKL PHARMA - LUXURY GREEN & GOLD THEME CSS STYLE SHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
:root {
    --primary-green: #1F3D33;      /* Deep Forest Green */
    --dark-green: #0d1f19;         /* Very Dark Green for backgrounds/text */
    --light-green: #eef3f0;        /* Soft pale green */
    --accent-gold: #D8A03A;        /* Logo Gold */
    --bg-gray: #f8f9fa;            
    --text-main: #37474f;
}

/* --------------------------------------------------------------------------
   2. Core Layout & Global Resets
   -------------------------------------------------------------------------- */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .font-poppins {
    font-family: 'Poppins', sans-serif;
}

/* Typography Utilities */
h2.dynamic-title { 
    font-size: clamp(1.8rem, 4vw, 2.5rem); 
    line-height: 1.3; 
}
.dynamic-text { 
    font-size: clamp(0.95rem, 1.5vw, 1.05rem); 
}
.text-accent { 
    color: var(--accent-gold) !important; 
}

/* Layout Utilities */
.section-pad {
    padding: 80px 0;
}
.bg-gray {
    background-color: var(--bg-gray);
}
.bg-light-green {
    background-color: var(--light-green);
}

@media (max-width: 768px) {
    .section-pad {
        padding: 50px 0;
    }
    .full-bg-section, .full-bg-section-light {
        padding: 60px 0 !important;
    }
    .clinical-spotlight {
        padding: 50px 0 !important;
    }
    .section-title h2, .full-bg-content h2, #contact h2 {
        font-size: 2rem !important;
        word-wrap: break-word;
    }
}

/* --------------------------------------------------------------------------
   3. Header, Top Bar & Navbar
   -------------------------------------------------------------------------- */
.top-bar { 
    background: var(--dark-green); 
    color: #fff; 
    padding: 8px 0; 
    font-size: 0.85rem; 
    letter-spacing: 0.5px; 
}

.navbar { 
    background: #fff; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.08); 
    padding: 15px 0; 
    z-index: 1030; 
    transition: all 0.4s ease; 
}
.navbar.scrolled { 
    padding: 8px 0; 
    background: rgba(255, 255, 255, 0.95) !important; 
    backdrop-filter: blur(12px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}
.navbar-brand { 
    font-weight: 800; 
    font-size: clamp(1.5rem, 3vw, 2rem); 
    color: var(--primary-green); 
    letter-spacing: -0.5px; 
    transition: 0.3s; 
}
.navbar.scrolled .navbar-brand { 
    font-size: 1.7rem; 
}

.nav-link { 
    font-weight: 600; 
    color: #555; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    margin: 0 10px; 
    transition: 0.3s; 
    position: relative; 
}
.nav-link::after { 
    content: ''; 
    position: absolute; 
    width: 0; 
    height: 2px; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    background-color: var(--accent-gold); 
    transition: 0.3s ease; 
}
.nav-link:hover::after, .nav-link.active::after { 
    width: 100%; 
}
.nav-link:hover, .nav-link.active { 
    color: var(--accent-gold); 
}

/* Dropdowns */
@media (min-width: 992px) { 
    .navbar .dropdown:hover .dropdown-menu { 
        display: block; 
        margin-top: 0; 
    } 
}
.dropdown-menu { 
    border-radius: 12px; 
    padding: 15px 0; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    border: 1px solid #eee; 
}
.dropdown-item { 
    font-size: 0.85rem; 
    font-weight: 600; 
    padding: 10px 20px; 
    transition: 0.3s; 
    color: #555; 
    text-transform: uppercase; 
}
.dropdown-item:hover { 
    background-color: var(--light-green); 
    color: var(--primary-green); 
    padding-left: 25px; 
}
.dropdown-toggle::after { 
    display: none !important; 
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn-medical { 
    background: var(--primary-green); 
    color: #fff; 
    font-weight: 600; 
    padding: 10px 25px; 
    border-radius: 50px; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 1px; 
    transition: all 0.4s ease; 
    border: 2px solid var(--primary-green); 
    text-decoration: none; 
    display: inline-block; 
    position: relative; 
    overflow: hidden; 
    z-index: 1; 
}
.btn-medical::before { 
    content: ''; 
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%; 
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); 
    transition: 0.6s; z-index: -1; 
}
.btn-medical:hover::before { 
    left: 100%; 
}
.btn-medical:hover { 
    box-shadow: 0 10px 20px rgba(31, 61, 51, 0.3); 
    transform: translateY(-2px); 
    color: #fff; 
}

.btn-catalog { 
    background: transparent; 
    color: var(--primary-green); 
    font-weight: 600; 
    padding: 10px 25px; 
    border-radius: 50px; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 1px; 
    transition: all 0.4s ease; 
    border: 2px solid var(--primary-green); 
    text-decoration: none; 
    display: inline-block; 
}
.btn-catalog:hover { 
    background: var(--primary-green); 
    color: #fff; 
    box-shadow: 0 10px 20px rgba(31, 61, 51, 0.2); 
    transform: translateY(-2px); 
}

.btn-outline-light { 
    border: 2px solid #fff; 
    color: #fff; 
    background: transparent; 
    font-weight: 600; 
    padding: 12px 30px; 
    border-radius: 50px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: 0.3s; 
    text-decoration: none; 
    display: inline-block; 
    font-size: 0.9rem; 
}
.btn-outline-light:hover { 
    background: var(--accent-gold); 
    color: #fff; 
    border-color: var(--accent-gold); 
    transform: translateY(-2px); 
}

.btn-outline-green { 
    border: 2px solid var(--primary-green); 
    color: var(--primary-green); 
    background: transparent; 
    font-weight: 600; 
    padding: 12px 30px; 
    border-radius: 50px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: 0.3s; 
    text-decoration: none; 
    display: inline-block; 
    font-size: 0.9rem; 
}
.btn-outline-green:hover { 
    background: var(--primary-green); 
    color: #fff; 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(31,61,51,0.2); 
}

/* --------------------------------------------------------------------------
   5. Inner Pages Header
   -------------------------------------------------------------------------- */
.page-header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0 80px;
}
.page-header-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 31, 25, 0.85); z-index: 1;
}
.page-header-content { 
    position: relative; z-index: 2; 
}
.breadcrumb-item a { 
    color: rgba(255,255,255,0.7); 
    text-decoration: none; 
    transition: 0.3s; 
}
.breadcrumb-item a:hover { 
    color: var(--accent-gold); 
}
.breadcrumb-item.active { 
    color: var(--accent-gold); 
}
.breadcrumb-item+.breadcrumb-item::before { 
    color: rgba(255,255,255,0.4); 
}

/* --------------------------------------------------------------------------
   6. Hero Swiper Section (Homepage)
   -------------------------------------------------------------------------- */
.heroSwiper { 
    width: 100%; 
    height: auto; 
    min-height: auto; 
    z-index: 1;
}
.hero-slide { 
    display: block; 
    position: relative; 
    width: 100%;
    height: auto;
}
.hero-slide img { 
    width: 100%; 
    height: auto; 
    display: block;
    object-fit: contain; 
}
.swiper-button-next, .swiper-button-prev {
    color: var(--accent-gold) !important;
    background: rgba(255, 255, 255, 0.9);
    width: 50px !important; height: 50px !important;
    border-radius: 50%; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
    transition: 0.3s;
}
.swiper-button-next:hover, .swiper-button-prev:hover { 
    background: var(--primary-green); 
    color: #fff !important; 
    transform: scale(1.1); 
}
.swiper-button-next::after, .swiper-button-prev::after { 
    font-size: 1.2rem !important; 
    font-weight: 800; 
}

/* --------------------------------------------------------------------------
   7. Home Page Specific Components
   -------------------------------------------------------------------------- */
/* Trust Strip */
.trust-strip-container { 
    position: relative; 
    z-index: 10; 
    margin-top: -15px; 
    padding: 0 15px; 
}
.trust-strip-box { 
    background: #fff; 
    padding: 35px 20px; 
    border-radius: 20px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
    border-bottom: 4px solid var(--accent-gold); 
    transition: 0.4s;
}
.trust-strip-box:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 25px 50px rgba(0,0,0,0.15); 
}
.trust-item { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    color: var(--primary-green); 
    transition: 0.3s;
}
.trust-item:hover { 
    transform: scale(1.05); 
}
.trust-item i { 
    font-size: 2.2rem; 
    color: var(--accent-gold); 
    transition: 0.3s;
}
.trust-item:hover i { 
    color: var(--primary-green); 
}
.trust-item h6 { 
    margin: 0; 
    font-weight: 700; 
    font-size: 1.05rem; 
    color: var(--primary-green); 
}
.trust-item p { 
    margin: 0; 
    font-size: 0.85rem; 
    color: #777; 
}
@media (max-width: 767px) {
    .trust-item { 
        margin-bottom: 20px; 
        justify-content: flex-start; 
    }
    .trust-item:last-child { 
        margin-bottom: 0; 
    }
}

/* Animations */
@keyframes floatSlow { 
    0% { transform: translateY(0px); } 
    50% { transform: translateY(-15px); } 
    100% { transform: translateY(0px); } 
}
@keyframes floatFast { 
    0% { transform: translateY(0px); } 
    50% { transform: translateY(-10px); } 
    100% { transform: translateY(0px); } 
}

/* About Collage */
.about-collage { 
    position: relative; 
    min-height: 500px; 
    width: 100%; 
}
.dotted-bg { 
    position: absolute; left: -10%; top: -10%; width: 80%; height: 80%; 
    background-image: radial-gradient(var(--primary-green) 2.5px, transparent 2.5px); 
    background-size: 25px 25px; opacity: 0.12; z-index: 0; border-radius: 20px; 
}
.about-img-main { 
    position: absolute; left: 0; top: 5%; width: 50%; height: 90%; 
    border-radius: 40px; object-fit: cover; box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    border: 8px solid #fff; z-index: 3; transition: 0.5s; 
}
.about-img-main:hover { 
    transform: scale(1.02); z-index: 5; 
}
.about-img-top { 
    position: absolute; right: 0; top: 0; width: 58%; height: 47%; 
    border-radius: 30px; object-fit: cover; box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    border: 8px solid #fff; z-index: 1; animation: floatSlow 6s ease-in-out infinite; 
}
.about-img-bottom { 
    position: absolute; right: 0; bottom: 0; width: 58%; height: 47%; 
    border-radius: 30px; object-fit: cover; box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    border: 8px solid #fff; z-index: 2; animation: floatFast 5s ease-in-out infinite reverse; 
}
@media (max-width: 991px) { 
    .about-collage { min-height: 400px; margin-bottom: 40px; } 
    .about-img-main { width: 50%; } 
    .about-img-top, .about-img-bottom { width: 55%; } 
}

.about-feature-box { 
    background: #fff; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); 
    padding: 20px; border: 1px solid #f0f4f2; transition: 0.3s; 
}
.about-feature-box:hover { 
    box-shadow: 0 15px 30px rgba(0,0,0,0.08); 
    border-color: var(--accent-gold); 
}
.about-feature-list { 
    list-style: none; padding: 0; margin: 0; 
}
.about-feature-list li { 
    display: flex; align-items: center; margin-bottom: 12px; 
    font-size: 0.95rem; color: #444; transition: 0.3s;
}
.about-feature-list li:hover { 
    transform: translateX(5px); color: var(--primary-green); 
}
.about-feature-list li:last-child { 
    margin-bottom: 0; 
}
.about-feature-list i { 
    color: #fff; background: var(--primary-green); width: 18px; height: 18px; 
    display: flex; align-items: center; justify-content: center; border-radius: 50%; 
    font-size: 0.6rem; margin-right: 12px; 
}

.btn-about { 
    background: var(--dark-green); color: #fff; border-radius: 50px; 
    padding: 10px 25px; display: inline-flex; align-items: center; 
    font-weight: 600; text-decoration: none; transition: 0.4s; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
}
.btn-about:hover { 
    background: var(--primary-green); color: #fff; transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(31,61,51,0.3); 
}

/* Section Titles */
.section-title { 
    text-align: center; margin-bottom: 60px; 
}
.section-title.left { 
    text-align: left; margin-bottom: 30px; 
}
.section-title span { 
    color: var(--accent-gold); font-weight: 700; text-transform: uppercase; 
    letter-spacing: 2px; font-size: 0.9rem; 
}
.section-title h2 { 
    font-weight: 800; color: var(--primary-green); font-size: 2.5rem; 
    margin-top: 10px; line-height: 1.3; 
}
.section-title .line { 
    width: 60px; height: 4px; background: var(--accent-gold); 
    margin: 15px auto 0; border-radius: 2px; transition: width 0.5s ease; 
}
.section-title:hover .line { 
    width: 100px; 
}
.section-title.left .line { 
    margin: 15px 0 0 0; 
}
.feature-list li { 
    margin-bottom: 15px; display: flex; align-items: flex-start; transition: 0.3s; 
}
.feature-list li:hover { 
    transform: translateX(5px); 
}
.feature-list i { 
    color: var(--accent-gold); margin-top: 5px; margin-right: 15px; font-size: 1.2rem; 
}

/* Categories Carousel */
.category-wrapper {
    position: relative;
    padding: 0 70px;
}
.categorySwiper {
    padding-bottom: 50px !important; 
    padding-top: 15px !important;
}
.category-carousel-card { 
    display: block; border-radius: 24px; overflow: hidden; position: relative; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); height: 450px; text-decoration: none; 
    border: 2px solid transparent; transition: 0.4s ease; 
}
.category-carousel-card:hover { 
    border-color: var(--accent-gold); transform: translateY(-10px); 
    box-shadow: 0 25px 45px rgba(31, 61, 51, 0.15); 
}
.category-carousel-card img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.category-carousel-card:hover img { 
    transform: scale(1.1); filter: brightness(1.1); 
}
.category-overlay { 
    position: absolute; bottom: 0; left: 0; right: 0; 
    background: linear-gradient(to top, rgba(13, 31, 25, 0.95) 0%, rgba(13, 31, 25, 0.6) 60%, transparent 100%); 
    padding: 40px 25px 25px; color: #fff; transition: 0.4s; 
}
.category-carousel-card:hover .category-overlay { 
    padding-bottom: 35px; 
}
.category-overlay h4 { 
    color: var(--accent-gold); font-weight: 800; margin-bottom: 5px; 
    font-size: 1.4rem; transition: 0.3s; 
}
.category-carousel-card:hover .category-overlay h4 { 
    color: #fff; 
}
.category-overlay p { 
    color: #eef3f0; font-size: 0.9rem; margin-bottom: 0; opacity: 0.9; 
}
.category-overlay-icon { 
    position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.9); 
    color: var(--primary-green); width: 45px; height: 45px; display: flex; 
    align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: 0.4s; 
}
.category-carousel-card:hover .category-overlay-icon { 
    background: var(--accent-gold); color: #fff; transform: rotateY(180deg); 
}

.category-next, .category-prev {
    color: var(--primary-green) !important;
    background: #fff;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -25px; 
    z-index: 10;
}
.category-next { right: 0 !important; }
.category-prev { left: 0 !important; }
.category-next:hover, .category-prev:hover { 
    background: var(--accent-gold); color: #fff !important; 
    transform: translateY(-50%) scale(1.1); 
}
.category-next::after, .category-prev::after { 
    font-size: 1.1rem !important; font-weight: bold; 
}

@media (max-width: 768px) {
    .category-wrapper { padding: 0 10px; }
    .category-next, .category-prev { display: none !important; } 
}

/* Split Sections */
.split-section { 
    padding: 80px 0; background: #fff; overflow: hidden;
}
.split-image-wrap { 
    position: relative; border-radius: 16px;  
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
}
.split-image-wrap img { 
    width: 100%; height: auto; display: block; transition: transform 0.6s ease; 
}
.split-image-wrap:hover img { 
    transform: scale(1.05); 
}
.floating-badge { 
    position: absolute; bottom: 20px; right: -20px; background: var(--primary-green); 
    color: #fff; padding: 20px 30px; border-radius: 12px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
    z-index: 2; border-bottom: 4px solid var(--accent-gold); transition: 0.4s; 
    animation: floatFast 4s infinite; 
}
.split-image-wrap:hover .floating-badge { 
    background: var(--accent-gold); border-color: var(--primary-green); 
}
.split-image-wrap:hover .floating-badge .text-accent {
    color: var(--primary-green) !important;
}
.split-image-wrap:hover .floating-badge small {
    color: rgba(31, 61, 51, 0.8) !important;
}
.floating-badge.left { 
    right: auto; left: -20px; 
}
@media (max-width: 991px) { 
    .floating-badge { right: 20px; } 
    .floating-badge.left { left: 20px; } 
}

/* Full Background Image Sections */
.full-bg-section { 
    position: relative; padding: 100px 0; background-size: cover; 
    background-position: center; background-attachment: fixed; color: #fff; 
}
.full-bg-overlay { 
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; 
    background: rgba(31, 61, 51, 0.85); z-index: 1; transition: 0.5s; 
}
.full-bg-section:hover .full-bg-overlay { 
    background: rgba(13, 31, 25, 0.9); 
}
.full-bg-content { 
    position: relative; z-index: 2; 
}
.full-bg-content h2 { 
    color: #fff; font-weight: 800; font-size: 3rem; margin-bottom: 20px; 
}
.full-bg-content .line { 
    width: 60px; height: 4px; background: var(--accent-gold); 
    margin-bottom: 25px; border-radius: 2px; 
}

/* Glassmorphism Box */
.glass-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 20px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.4s ease;
}
.glass-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.full-bg-section-light { 
    position: relative; padding: 100px 0; background-size: cover; 
    background-position: center; background-attachment: fixed; color: var(--text-main); 
}
.full-bg-overlay-light { 
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; 
    background: rgba(255, 255, 255, 0.88); z-index: 1; transition: 0.5s; 
    backdrop-filter: blur(5px); 
}
.full-bg-section-light:hover .full-bg-overlay-light { 
    background: rgba(255, 255, 255, 0.94); 
}
.full-bg-section-light h2 { 
    color: var(--primary-green); font-weight: 800; font-size: 3rem; margin-bottom: 20px; 
}

.medicine-box-light { 
    background: #fff; border: 1px solid #eaeaea; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.4s ease; 
    cursor: pointer; border-radius: 20px; height: 100%; 
}
.medicine-box-light:hover { 
    transform: translateY(-10px); border-color: var(--accent-gold); 
    box-shadow: 0 20px 40px rgba(216, 160, 58, 0.15); 
}

/* Clinical Spotlight */
.clinical-spotlight { 
    padding: 80px 0; position: relative; overflow: hidden; 
}
.spotlight-box { 
    background: #fff; border-radius: 20px; overflow: hidden; 
    box-shadow: 0 25px 50px rgba(0,0,0,0.05); border: 1px solid #eee; transition: 0.4s; 
}
.spotlight-box:hover { 
    box-shadow: 0 30px 60px rgba(31,61,51,0.15); transform: scale(1.01); 
}
.spotlight-content { 
    padding: 60px; 
}
.spotlight-image { 
    position: relative; overflow: hidden; min-height: 400px; background: var(--light-green); 
}
.spotlight-image img { 
    width: 100%; height: 100%; object-fit: cover; position: absolute; 
    top: 0; left: 0; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.spotlight-box:hover .spotlight-image img { 
    transform: scale(1.1); 
}

/* Excellence / Infrastructure Section */
.excellence-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #f0f4f2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.excellence-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0;
    background: var(--light-green);
    transition: height 0.4s ease;
    z-index: -1;
}
.excellence-card:hover::before { height: 100%; }
.excellence-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(31,61,51,0.1);
}
.excellence-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 2px solid var(--accent-gold);
    transition: 0.4s;
}
.excellence-card:hover .excellence-icon {
    background: var(--primary-green);
    color: var(--accent-gold);
    transform: rotateY(360deg);
}

/* Testimonials / Reviews */
#testimonials { 
    background-color: var(--dark-green); 
}
#testimonials .section-title h2 { 
    color: #fff; 
}
#testimonials .review-card { 
    background: rgba(255, 255, 255, 0.05); 
    padding: 40px 30px; 
    border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.1); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
    text-align: center; 
    height: 100%; 
    transition: 0.4s; 
    backdrop-filter: blur(10px);
}
#testimonials .review-card:hover { 
    border-color: var(--accent-gold); 
    box-shadow: 0 15px 30px rgba(216, 160, 58, 0.2); 
    transform: translateY(-5px); 
    background: rgba(255, 255, 255, 0.08); 
}
.stars { 
    color: var(--accent-gold); margin-bottom: 15px; font-size: 1.1rem; 
}
#testimonials .review-text { 
    font-style: italic; color: #eef3f0; margin-bottom: 20px; 
    line-height: 1.7; font-size: 0.95rem; 
}
#testimonials .reviewer-name { 
    font-weight: 700; color: #fff; margin-bottom: 2px; 
}
#testimonials .reviewer-role { 
    font-size: 0.8rem; color: var(--accent-gold); 
    text-transform: uppercase; font-weight: 600; 
}
.reviewSwiper .swiper-wrapper { 
    transition-timing-function: linear !important; 
}

/* FAQ Accordion Layout (Home Page Minimal Version) */
.accordion-button { 
    font-weight: 600; color: var(--primary-green); 
    background-color: #fff; padding: 20px; 
    border-radius: 8px !important; transition: 0.3s; 
}
.accordion-button:not(.collapsed) { 
    background-color: var(--light-green); color: var(--primary-green); 
    box-shadow: none; border-left: 4px solid var(--accent-gold); 
}
.accordion-button:focus { 
    box-shadow: none; border-color: var(--accent-gold); 
}
.accordion-item { 
    border: 1px solid #eee; border-radius: 8px !important; 
    margin-bottom: 15px; overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.02); transition: 0.3s; 
}
.accordion-item:hover { 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: #ddd;
}
.accordion-body { 
    color: #666; padding: 20px; line-height: 1.7; 
}

/* --------------------------------------------------------------------------
   8. About Us Page Specific Components
   -------------------------------------------------------------------------- */
.vision-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    height: 100%;
    border-bottom: 5px solid var(--primary-green);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.vision-card::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 0;
    background: var(--light-green); transition: height 0.4s ease; z-index: -1;
}
.vision-card:hover::before { height: 100%; }
.vision-card:hover { 
    transform: translateY(-10px); border-bottom-color: var(--accent-gold); 
    box-shadow: 0 20px 50px rgba(31,61,51,0.1); 
}
.vision-icon {
    width: 70px; height: 70px; background: var(--primary-green); color: #fff;
    border-radius: 15px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 25px; box-shadow: 0 10px 20px rgba(31,61,51,0.2);
    transition: 0.4s;
}
.vision-card:hover .vision-icon { 
    background: var(--accent-gold); transform: rotateY(180deg); 
}

/* Core Values Value Box */
.value-box { 
    text-align: center; padding: 30px 20px; transition: 0.3s; border-radius: 15px; 
}
.value-box:hover { 
    background: #fff; box-shadow: 0 15px 35px rgba(0,0,0,0.06); transform: translateY(-5px); 
}
.value-box i { 
    font-size: 2.5rem; color: var(--accent-gold); margin-bottom: 20px; transition: 0.3s; 
}
.value-box:hover i { 
    color: var(--primary-green); transform: scale(1.1); 
}

/* Stats Wrapper */
.stats-wrapper { 
    background: var(--primary-green); border-radius: 20px; 
    padding: 50px 30px; position: relative; overflow: hidden; 
}
.stats-wrapper::after { 
    content: ''; position: absolute; right: -50px; bottom: -50px; 
    width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; 
}
.stat-item h3 { 
    font-size: 3rem; color: var(--accent-gold); font-weight: 800; margin-bottom: 5px; 
}
.stat-item p { 
    color: rgba(255,255,255,0.8); font-weight: 600; text-transform: uppercase; 
    letter-spacing: 1px; font-size: 0.85rem; margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-collage { min-height: 350px; margin-bottom: 30px; }
}
@media (max-width: 767px) {
    .about-img-main { width: 65%; }
    .about-img-top, .about-img-bottom { width: 45%; }
    .stat-item { margin-bottom: 30px; }
}

/* --------------------------------------------------------------------------
   9. Contact Page Specific Components
   -------------------------------------------------------------------------- */
.contact-box { 
    background: #fff; padding: 40px; border-radius: 20px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
}
.form-control, .form-select { 
    background: #f8f9fa; border: 1px solid #eee; padding: 15px; border-radius: 10px; 
}
.form-control:focus, .form-select:focus { 
    border-color: var(--accent-gold); box-shadow: none; 
}
.contact-info-item { 
    display: flex; align-items: flex-start; margin-bottom: 30px; 
}
.contact-info-item i { 
    width: 50px; height: 50px; background: var(--light-green); 
    color: var(--primary-green); display: flex; align-items: center; 
    justify-content: center; border-radius: 50%; font-size: 1.2rem; 
    margin-right: 20px; flex-shrink: 0; 
}
.map-container { 
    border-radius: 20px; overflow: hidden; height: 400px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}

/* --------------------------------------------------------------------------
   10. FAQ Page Specific Components
   -------------------------------------------------------------------------- */
.faq-category-title { 
    font-weight: 700; color: var(--dark-green); margin: 40px 0 20px; 
    font-family: 'Poppins', sans-serif; display: flex; align-items: center; 
    gap: 10px; font-size: 1.4rem; 
}
.faq-category-title:first-child { 
    margin-top: 0; 
}
.faq-category-title i { 
    color: var(--accent-gold); 
}

/* Extended FAQ Buttons/Items */
.accordion-button.font-poppins { 
    padding: 20px 25px; border-radius: 12px !important; font-size: 1.05rem; 
}
.accordion-item.faq-item { 
    border: 1px solid #eaeaea; border-radius: 12px !important; 
    margin-bottom: 15px; overflow: hidden; transition: 0.3s; background: #fff; 
}
.accordion-item.faq-item:hover { 
    box-shadow: 0 8px 20px rgba(0,0,0,0.04); border-color: #ddd; 
}
.accordion-body.faq-body { 
    color: #555; padding: 20px 25px 25px; line-height: 1.8; 
    font-size: 0.95rem; border-top: 1px solid #f4f4f4; 
}

/* Support Card */
.support-card { 
    background: var(--primary-green); border-radius: 20px; padding: 40px 30px; 
    color: #fff; position: sticky; top: 120px; 
    box-shadow: 0 15px 35px rgba(31,61,51,0.2); 
}
.support-card h4 { 
    font-weight: 700; font-family: 'Poppins', sans-serif; 
    color: var(--accent-gold); margin-bottom: 15px; 
}
.support-card p { 
    color: rgba(255,255,255,0.8); line-height: 1.7; font-size: 0.95rem; margin-bottom: 25px; 
}
.support-icon-box { 
    display: flex; align-items: center; margin-bottom: 20px; 
}
.support-icon-box i { 
    background: rgba(255,255,255,0.1); width: 45px; height: 45px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; color: var(--accent-gold); font-size: 1.2rem; 
    margin-right: 15px; 
}
.support-icon-box div { 
    font-size: 0.95rem; font-weight: 600; 
}
.support-icon-box div span { 
    display: block; font-size: 0.8rem; font-weight: 400; color: rgba(255,255,255,0.7); 
}

/* --------------------------------------------------------------------------
   11. Products Portfolio Page Specific Components
   -------------------------------------------------------------------------- */
.portfolio-tabs { 
    background: rgba(31, 61, 51, 0.04);
    padding: 8px;
    border-radius: 50px;
    display: inline-flex;
    border: 1px solid rgba(31, 61, 51, 0.08);
    margin: 0 auto 50px;
    width: max-content;
    max-width: 100%;
    justify-content: center;
}
.portfolio-tabs .nav-link {
    border: none !important;
    background: transparent !important;
    color: #475569 !important;
    font-weight: 600 !important;
    border-radius: 50px;
    padding: 12px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}
.portfolio-tabs .nav-link.active {
    background-color: var(--primary-green) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 16px rgba(17, 52, 38, 0.15);
}
.portfolio-tabs .nav-link:hover:not(.active) {
    color: var(--primary-green) !important;
    background-color: rgba(31, 61, 51, 0.05) !important;
}

/* Product Cards */
.product-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(17, 52, 38, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -15px rgba(17, 52, 38, 0.12);
    border-color: rgba(197, 168, 128, 0.4);
}

.product-img-wrap { 
    position: relative;
    height: 270px;
    overflow: hidden;
    background: radial-gradient(circle at center, #ffffff 0%, #f1f5f3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all 0.4s;
}
.product-img-wrap img { 
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-img-wrap img { 
    transform: scale(1.08) translateY(-4px); 
}

.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: rgba(17, 52, 38, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-content { 
    padding: 28px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-title { 
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.5rem;
    line-height: 1.75rem;
}
.product-desc { 
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.2rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.product-price span {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.composition-box { 
    background: var(--bg-gray); padding: 15px; border-radius: 10px; 
    margin-bottom: 20px; border-left: 3px solid var(--accent-gold); 
}
.composition-title { 
    font-size: 0.8rem; text-transform: uppercase; color: var(--primary-green); 
    font-weight: 700; margin-bottom: 5px; 
}
.composition-list { 
    font-size: 0.85rem; color: #444; font-weight: 600; margin: 0; 
}

.product-footer { 
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
    margin-top: auto;
}

.btn-details {
    background: var(--primary-green);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-green);
    text-align: center;
    display: block;
    text-decoration: none;
    width: 100%;
}
.btn-details:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(197, 168, 128, 0.3);
}

/* --------------------------------------------------------------------------
   12. Product Detail Page Specific Components
   -------------------------------------------------------------------------- */
.product-breadcrumb { 
    background: var(--bg-gray); padding: 15px 0; border-bottom: 1px solid #eee; 
}
.product-breadcrumb .breadcrumb { 
    margin: 0; font-size: 0.85rem; font-weight: 600; 
}
.product-breadcrumb a { 
    color: var(--primary-green); text-decoration: none; transition: 0.3s; 
}
.product-breadcrumb a:hover { 
    color: var(--accent-gold); 
}

.product-main-img { 
    background: var(--light-green); border-radius: 20px; padding: 40px; 
    display: flex; justify-content: center; align-items: center; 
    position: relative; border: 1px solid #e0e8e4; 
}
.product-main-img img { 
    width: 100%; max-width: 450px; height: auto; object-fit: contain; 
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1)); 
}

.prod-badge { 
    background: var(--accent-gold); color: #fff; padding: 5px 15px; 
    border-radius: 50px; font-size: 0.75rem; font-weight: 700; 
    text-transform: uppercase; letter-spacing: 1px; display: inline-block; margin-bottom: 15px; 
}
.prod-title { 
    font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; 
    color: var(--dark-green); margin-bottom: 15px; line-height: 1.2; 
}
.prod-meta { 
    display: flex; align-items: center; flex-wrap: wrap; gap: 20px; 
    margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid #eee; 
}
.rx-tag { 
    background: #fee2e2; color: #dc2626; padding: 5px 12px; 
    border-radius: 6px; font-size: 0.8rem; font-weight: 700; border: 1px solid #fca5a5; 
}
.pack-size { 
    color: #666; font-weight: 600; font-size: 0.95rem; 
}

.prod-short-desc { 
    font-size: 1.05rem; color: #555; line-height: 1.8; margin-bottom: 30px; 
}

.feature-list-check { 
    list-style: none; padding: 0; margin-bottom: 30px; 
}
.feature-list-check li { 
    position: relative; padding-left: 30px; margin-bottom: 12px; 
    font-weight: 600; color: var(--primary-green); font-size: 0.95rem; 
}
.feature-list-check li::before { 
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; position: absolute; 
    left: 0; top: 2px; color: var(--accent-gold); font-weight: 900; 
}

.prod-details-tabs { 
    border-bottom: 2px solid #eee; margin-bottom: 30px; gap: 10px;
}
.prod-details-tabs .nav-link { 
    color: #666; font-weight: 600; border: none; padding: 15px 25px; 
    font-size: 1.05rem; position: relative; background: transparent; 
    border-radius: 0; text-transform: none; margin: 0; 
}
.prod-details-tabs .nav-link::after { 
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; 
    height: 3px; background: var(--primary-green); transition: 0.3s; 
}
.prod-details-tabs .nav-link.active { 
    color: var(--primary-green); background: transparent; 
}
.prod-details-tabs .nav-link.active::after, .prod-details-tabs .nav-link:hover::after { 
    width: 100%; 
}

.tab-pane-content { 
    padding: 20px 0; 
}
.tab-pane-content h4 { 
    font-weight: 700; color: var(--dark-green); margin-bottom: 20px; 
    font-family: 'Poppins', sans-serif;
}
.tab-pane-content p { 
    color: #555; line-height: 1.8; margin-bottom: 15px; 
}

.table-custom th { 
    background: var(--primary-green); color: #fff; font-weight: 600; border: none; padding: 15px; 
}
.table-custom td { 
    padding: 15px; border-color: #eee; color: #444; vertical-align: middle; 
}
.table-custom tr:nth-child(even) td { 
    background: var(--light-green); 
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.footer-corporate { 
    background-color: var(--dark-green); color: #fff; padding: 70px 0 30px; 
    border-top: 4px solid var(--accent-gold); 
}
.footer-corporate h5 { 
    font-weight: 700; margin-bottom: 25px; color: var(--accent-gold); 
    text-transform: uppercase; font-size: 1.1rem; letter-spacing: 1px; 
}
.footer-link { 
    color: rgba(255,255,255,0.7); text-decoration: none; display: block; 
    margin-bottom: 12px; transition: 0.3s; font-size: 0.95rem; 
}
.footer-link:hover { 
    color: var(--accent-gold); transform: translateX(8px); 
}
.footer-social a { 
    display: inline-flex; align-items: center; justify-content: center; 
    width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: #fff; 
    border-radius: 50%; margin-right: 10px; transition: 0.4s; text-decoration: none; 
}
.footer-social a:hover { 
    background: var(--accent-gold); color: #fff; transform: translateY(-5px); 
}
.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 25px; 
}

/* --------------------------------------------------------------------------
   14. Mobile Navigation & Header Enhancements (Max-Width: 991.98px)
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    /* Hero Swiper Banner Height reduction for mobile screens */
    .heroSwiper {
        height: auto !important;
        min-height: auto !important;
    }

    /* Adjust trust strip overlap for mobile/tablet screen sizes */
    .trust-strip-container {
        margin-top: -5px !important;
    }

    /* Docked Side-Panel Off-Canvas Menu */
    #offcanvasNavbar {
        width: 300px !important;
        max-width: 80% !important;
        height: 100vh !important;
        margin: 0 !important;
        border-radius: 24px 0 0 24px !important;
        border: none !important;
        border-left: 1px solid rgba(31, 61, 51, 0.08) !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1) !important;
        background: #ffffff !important; /* Clean white background */
        top: 0 !important;
        right: 0 !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    /* Offcanvas Header styling */
    #offcanvasNavbar .offcanvas-header {
        padding: 24px 20px 20px !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }
    
    /* Interactive Circular Close Button */
    #offcanvasNavbar .btn-close {
        background-color: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 50% !important;
        opacity: 0.8 !important;
        padding: 10px !important;
        font-size: 0.85rem !important;
        transition: all 0.2s ease !important;
        box-shadow: none !important;
    }
    #offcanvasNavbar .btn-close:hover {
        opacity: 1 !important;
        background-color: #f1f5f9 !important;
        transform: rotate(90deg) !important;
    }

    /* Body Container setup with vertical padding and layout spacing */
    #offcanvasNavbar .offcanvas-body {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        height: calc(100% - 85px) !important;
        padding: 20px 0 !important; /* vertical spacing */
        overflow-y: auto !important;
        box-sizing: border-box !important;
    }
    #offcanvasNavbar .navbar-nav {
        flex-grow: 1 !important;
        width: 100% !important;
        padding: 0 16px !important; /* Beautiful inset left and right spacing */
        box-sizing: border-box !important;
    }

    /* Spaced list items and separator lines */
    #offcanvasNavbar .navbar-nav > li.nav-item {
        margin: 0 !important;
        width: 100% !important;
        border-bottom: none !important;
    }

    /* Mobile Navigation Links styled as capsules */
    #offcanvasNavbar .nav-link {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: #475569 !important;
        padding: 12px 16px !important;
        margin: 4px 0 !important;
        border-radius: 10px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        transition: all 0.2s ease !important;
    }
    #offcanvasNavbar .nav-link::after {
        display: none !important; /* Hide desktop underline */
    }
    
    /* Active Link state highlight */
    #offcanvasNavbar .nav-link.active {
        background-color: var(--light-green) !important;
        color: var(--primary-green) !important;
        font-weight: 700 !important;
        border-left: 4px solid var(--accent-gold) !important;
        border-radius: 4px 10px 10px 4px !important;
    }
    #offcanvasNavbar .nav-link:hover:not(.active) {
        background-color: rgba(31, 61, 51, 0.04) !important;
        color: var(--primary-green) !important;
    }

    /* Rotating Chevron transition when Dropdown opens */
    #offcanvasNavbar .nav-link i {
        transition: transform 0.25s ease !important;
    }
    #offcanvasNavbar .nav-link[aria-expanded="true"] i {
        transform: rotate(180deg) !important;
    }

    /* Nested Submenu Card spanning full list width */
    #offcanvasNavbar .dropdown-menu {
        position: static !important;
        float: none !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: none !important;
        padding: 8px !important;
        margin: 4px 0 8px !important;
        border-radius: 10px !important;
        width: 100% !important;
        display: none;
        box-sizing: border-box !important;
    }
    #offcanvasNavbar .dropdown-menu.show {
        display: block !important;
    }
    #offcanvasNavbar .dropdown-item {
        font-size: 0.8rem !important;
        padding: 10px 15px !important;
        margin: 2px 0 !important;
        border-radius: 8px !important;
        color: #475569 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        font-weight: 600 !important;
        transition: all 0.2s ease !important;
    }
    #offcanvasNavbar .dropdown-item:hover {
        background-color: var(--light-green) !important;
        color: var(--primary-green) !important;
        padding-left: 20px !important;
    }

    /* Submenu Divider */
    #offcanvasNavbar .dropdown-divider {
        margin: 6px 0 !important;
        border-top: 1px solid rgba(31, 61, 51, 0.08) !important;
    }

    /* Bottom Action Buttons list container overrides */
    #offcanvasNavbar .navbar-nav > li:last-child {
        margin-top: auto !important; /* Push to bottom of offcanvas container list */
        padding: 20px 0 0 0 !important;
        border-top: 1px solid #f1f5f9 !important;
        border-bottom: none !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    #offcanvasNavbar .btn-catalog {
        background: transparent !important;
        border: 2px solid var(--primary-green) !important;
        color: var(--primary-green) !important;
        font-weight: 700 !important;
        border-radius: 50px !important;
        padding: 12px !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }
    #offcanvasNavbar .btn-catalog:hover {
        background: var(--primary-green) !important;
        color: #ffffff !important;
    }
    #offcanvasNavbar .btn-medical {
        background: var(--accent-gold) !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        border-radius: 50px !important;
        padding: 12px !important;
        border: none !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }
    #offcanvasNavbar .btn-medical:hover {
        background: var(--primary-green) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 15px rgba(31, 61, 51, 0.2) !important;
    }
}

/* Toggler Button outline fix */
.navbar-toggler:focus {
    box-shadow: none !important;
}
.navbar-toggler {
    padding: 8px !important;
    border-radius: 8px !important;
    transition: 0.3s !important;
}
.navbar-toggler:hover {
    background-color: var(--light-green) !important;
}

/* Lock background scroll when mobile menu is active */
html.mobile-menu-active,
body.mobile-menu-active {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none !important;
}
#offcanvasNavbar {
    touch-action: auto !important;
}

