/* Base Styles */
body {
    background-color: #fff;
    font-family: 'Nunito', sans-serif;
}

:root {
    --primary: #00c2a8;
    --text-dark: #333333;
    --bg-color: #ffffff; 
    --radius-large: 35px;
    --radius-outer: 37px; /* 35px curve + 2px physical overlap */
    --radius-small: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    background-color: var(--bg-color); 
    padding: 15px 0; 
}

/* --- Premium SaaS Preloader --- */
    #lifed-loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        z-index: 999999;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity 0.6s cubic-bezier(0.8, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.8, 0, 0.2, 1);
    }

    .loader-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .loader-logo {
        height: 55px; /* Matches your header logo height */
        width: auto;
        /* Smooth pulsing effect */
        animation: saas-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    .loader-progress {
        width: 100px;
        height: 3px;
        background: #e8f2eb; /* Your light green bg color */
        border-radius: 4px;
        overflow: hidden;
        position: relative;
    }

    .loader-progress::after {
        content: '';
        position: absolute;
        top: 0;
        left: -50%;
        height: 100%;
        width: 50%;
        background: #00ad9c; /* Your primary brand color */
        border-radius: 4px;
        animation: saas-slide 1.5s ease-in-out infinite;
    }

    @keyframes saas-pulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(0.96); opacity: 0.6; }
    }

    @keyframes saas-slide {
        0% { left: -50%; }
        100% { left: 100%; }
    }

    /* Class applied via JS to fade out */
    #lifed-loader.loader-hidden {
        opacity: 0;
        visibility: hidden;
    }

/* --- Master Wrapper --- */
.header-wrapper {
    position: relative;
    /* Expanded for a massive, edge-to-edge premium desktop width */
    max-width: 1800px; 
    width: 98%; 
    margin: 0 auto;
}

/* --- Hero Section (Contains Media ONLY) --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    background-color: #000; 
    border-radius: var(--radius-large);
    overflow: hidden; 
    transform: translateZ(0); 
}

/* --- Media Backgrounds --- */
.media-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}

.media-container video, .media-container img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; top: 0; left: 0;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease-in-out;
}

/* --- Logo Cutout (Top Left) --- */
.logo-cutout {
    position: absolute;
    /* Physically pulled 2px outside the clipping zone to obliterate the Safari bug */
    top: -2px; left: -2px; 
    background: var(--bg-color);
    /* Compensate padding by 2px to keep logo perfectly aligned */
    padding: 27px 30px 25px 27px; 
    border-top-left-radius: var(--radius-outer); 
    border-bottom-right-radius: var(--radius-large); 
    z-index: 10;
    display: flex;
    align-items: center;
}

/* Pure CSS Native Swooshes (Perfectly smooth, no jagged SVGs) */
.logo-cutout::before {
    content: ''; position: absolute;
    /* 2px offset brings it perfectly flush with the video edge */
    top: 2px; left: 100%; 
    width: var(--radius-large); height: var(--radius-large);
    background: transparent;
    border-top-left-radius: var(--radius-large);
    box-shadow: -15px -15px 0 15px var(--bg-color);
}

.logo-cutout::after {
    content: ''; position: absolute;
    top: 100%; left: 2px;
    width: var(--radius-large); height: var(--radius-large);
    background: transparent;
    border-top-left-radius: var(--radius-large);
    box-shadow: -15px -15px 0 15px var(--bg-color);
}

.custom-logo {
    height: 70px; width: auto; object-fit: contain; z-index: 9; position: relative;
}

/* --- Video Cutout (Bottom Right) --- */
.video-cutout {
    position: absolute;
    bottom: -2px; right: -2px; 
    background: var(--bg-color);
    /* Shift padding to house the thumbnail correctly */
    padding: 20px 2px 2px 20px;
    border-bottom-right-radius: var(--radius-outer);
    border-top-left-radius: var(--radius-large); 
    z-index: 10;
}

.video-cutout::before {
    content: ''; position: absolute;
    bottom: 2px; right: 100%;
    width: var(--radius-large); height: var(--radius-large);
    background: transparent;
    border-bottom-right-radius: var(--radius-large);
    box-shadow: 15px 15px 0 15px var(--bg-color);
}

.video-cutout::after {
    content: ''; position: absolute;
    bottom: 100%; right: 2px;
    width: var(--radius-large); height: var(--radius-large);
    background: transparent;
    border-bottom-right-radius: var(--radius-large);
    box-shadow: 15px 15px 0 15px var(--bg-color);
}

.video-thumbnail {
    width: 300px; height: 160px;
    border-radius: var(--radius-small);
    border-bottom-right-radius: var(--radius-large); 
    position: relative; display: flex; align-items: center; justify-content: center;
    cursor: pointer; overflow: hidden; 
}

.video-thumbnail:hover .media-container video,
.video-thumbnail:hover .media-container img {
    transform: scale(1.08); 
}

.play-btn {
    position: absolute; z-index: 5;
    width: 50px; height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px); pointer-events: none;
}
.play-btn::after {
    content: ''; width: 0; height: 0;
    border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 14px solid #fff;
    margin-left: 4px;
}

/* --- Desktop Navigation --- */
.desktop-nav {
    position: absolute; top: 30px; right: 40px;
    display: flex; align-items: center; gap: 30px; z-index: 20; 
}
.desktop-nav ul { display: flex; list-style: none; gap: 25px; }
.desktop-nav a {
    color: #fff; text-decoration: none; font-weight: 800; font-size: 15px;
    transition: 0.3s; text-shadow: 0 2px 10px rgba(0,0,0,0.6); 
}
.auth-buttons { display: flex; gap: 15px; }
.btn-login {
    background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px);
    color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); 
    padding: 8px 20px; border-radius: 8px; font-weight: 800; font-size: 14px;
    cursor: pointer; text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}
.btn-register {
    background: var(--primary); color: #fff; border: none;
    padding: 8px 20px; border-radius: 8px; font-weight: 800; font-size: 14px;
    cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* --- Hero Content --- */
.content-area {
    position: absolute; top: 40%; right: 10%; transform: translateY(-50%);
    color: #fff; max-width: 500px; z-index: 10;
}
.content-area h1 {
    font-size: 52px; line-height: 1.15; margin-bottom: 20px;
    font-weight: 900; text-shadow: 0 4px 20px rgba(0,0,0,0.7); 
}
.content-area p {
    font-size: 18px; line-height: 1.5; font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* --- Search Bar (Desktop) --- */
.desktop-search {
    position: absolute; bottom: 40px; right: 360px;
    background: #fff; padding: 10px 20px; border-radius: 30px;
    display: flex; align-items: center; gap: 10px; width: 300px;
    z-index: 10; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.desktop-search input {
    border: none; outline: none; width: 100%;
    font-size: 16px; font-weight: 700; color: var(--text-dark);
}
.desktop-search input::placeholder { font-weight: 700; color: #999; }
.desktop-search .icon { color: var(--primary); }

/* --- SaaS Premium Mobile Menu --- */
.mobile-menu-btn {
    display: none; position: absolute; top: 25px; right: 25px; z-index: 30;
    background: transparent; border: none; cursor: pointer;
}
.mobile-menu-btn span {
    display: block; width: 30px; height: 3px; background: #fff; margin-bottom: 6px;
    border-radius: 2px; transition: 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.mobile-nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); z-index: 100;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transform: translateY(-20px); transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-nav-overlay .close-btn {
    position: absolute; top: 30px; right: 30px; background: none; border: none;
    font-size: 45px; color: #333; cursor: pointer; line-height: 1;
}
.mobile-nav-overlay ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 25px; }
.mobile-nav-overlay a { font-size: 28px; font-weight: 900; color: #333; text-decoration: none; display: block; opacity: 0; transform: translateY(20px); transition: all 0.4s ease; }

.mobile-nav-overlay.active li:nth-child(1) a { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.mobile-nav-overlay.active li:nth-child(2) a { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.mobile-nav-overlay.active li:nth-child(3) a { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.mobile-nav-overlay.active li:nth-child(4) a { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.mobile-nav-overlay.active li:nth-child(5) a { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.mobile-nav-overlay.active li:nth-child(6) a { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

.mobile-auth-wrapper { margin-top: 40px; display: flex; gap: 15px; opacity: 0; transform: translateY(20px); transition: all 0.4s ease 0.7s; }
.mobile-nav-overlay.active .mobile-auth-wrapper { opacity: 1; transform: translateY(0); }

.mobile-search-widget { display: none; }

/* =======================================================
    PERFECT MOBILE RESPONSIVE CSS
    ======================================================= */
@media (max-width: 992px) {
    
    /* Maintained White Side Margins for Mobile */
    .header-wrapper { 
        width: 92%; 
        margin: 0 auto; 
    }
    
    /* Reduced Height */
    .hero-section { min-height: 550px; }
    
    /* Cleanly scaled cutouts with perfect CSS curves */
    .logo-cutout { padding: 15px 22px 15px 15px; }
    .custom-logo { height: 50px; }

    .video-cutout { padding: 15px 2px 2px 15px; }
    .video-thumbnail { width: 180px; height: 110px; }

    .desktop-nav, .desktop-search { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* Content Area */
    .content-area {
        top: 40%; right: auto; left: 5%; transform: translateY(-50%); width: 90%;
    }
    .content-area h1 { font-size: 38px;  }
    .content-area p { font-size: 16px; }

    /* Mobile Search Widget */
    .mobile-search-widget { 
        display: block; z-index: 10; position: relative;
        background: #2a2a2a; padding: 18px; border-radius: 12px; margin-top: 25px; box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }
    .mobile-search-widget label { color: #fff; font-size: 16px; font-weight: 800; display: block; margin-bottom: 12px; }
    .mobile-search-widget .input-group { display: flex; background: #111; border-radius: 6px; overflow: hidden; }
    .mobile-search-widget input {
        flex: 1; background: transparent; border: none; padding: 12px 15px;
        color: #fff; outline: none; font-size: 14px; font-weight: 600;
    }
    .mobile-search-widget input::placeholder { color: #888; }
    .mobile-search-widget button { background: var(--primary); border: none; padding: 0 15px; cursor: pointer; color: #fff; }
}



/*--- SEARCH SECTION ---*/

/* =========================================
   2. AIRBNB-STYLE SEARCH SECTION
   ========================================= */
.abnb-section {
    padding: 55px 15px;
    position: relative;
    z-index: 100;
}

.abnb-container {
    width: 100%;
    max-width: 850px; 
    margin: 0 auto;
    position: relative;
}

/* --- MOBILE TRIGGER BUTTON --- */
.abnb-mobile-trigger {
    display: none; /* Hidden on desktop */
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 40px;
    padding: 14px 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: box-shadow 0.2s ease;
}

.abnb-mobile-trigger:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.abnb-mobile-trigger i {
    font-size: 18px;
    color: #222;
}

/* --- MAIN SEARCH BAR WRAPPER --- */
.abnb-bar-wrapper {
    position: relative;
    width: 100%;
}

/* Mobile Close Button (Hidden on Desktop) */
.abnb-mobile-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 200;
}

/* The Main Pill Bar */
.abnb-bar {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #ebebeb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: background-color 0.3s ease;
}

/* Active state for the whole bar (turns gray) */
.abnb-bar.is-active {
    background-color: #ebebeb;
}

/* Individual Clickable Blocks */
.abnb-block {
    flex: 1;
    padding: 12px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 66px;
}

/* Hover states */
.abnb-bar:not(.is-active) .abnb-block:hover { background-color: #f7f7f7; }
.abnb-bar.is-active .abnb-block:hover:not(.is-active) { background-color: #dddddd; }

/* Active Block State (Turns white with shadow) */
.abnb-block.is-active {
    background-color: #fff !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 12;
}

/* Vertical Dividers between blocks */
.abnb-divider {
    width: 1px;
    height: 32px;
    background-color: #dddddd;
    transition: opacity 0.2s ease;
}

/* Hide divider when adjacent blocks are active */
.abnb-block:hover + .abnb-divider,
.abnb-block.is-active + .abnb-divider,
.abnb-divider.hide-divider {
    opacity: 0;
}

/* Text Styling inside blocks */
.abnb-label {
    font-size: 12px;
    font-weight: 800;
    color: #222;
    margin-bottom: 2px;
    padding-left: 2px;
}

.abnb-input {
    border: none;
    background: transparent;
    padding: 0 2px;
    outline: none;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Nunito', sans-serif;
}

.abnb-input::placeholder {
    color: #717171;
    font-weight: 500;
}

/* --- SEARCH BUTTON --- */
.abnb-btn-wrap {
    padding-right: 8px;
    z-index: 12;
}

.abnb-btn {
    background-color: #00ad9c;
    color: #fff;
    border: none;
    border-radius: 50px;
    height: 48px;
    width: 48px; /* Default circular width */
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: width 0.3s cubic-bezier(0.2, 0, 0, 1), background-color 0.3s ease;
    overflow: hidden;
    position: relative;
}

.abnb-btn:hover { background-color: #008f81; }

.abnb-btn-icon {
    font-size: 16px;
    position: absolute;
    left: 16px; /* Fixed anchor prevents moving during expansion */
}

.abnb-btn-text {
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
    white-space: nowrap;
    margin-left: 38px; /* Gap between icon and text */
    transition: opacity 0.2s ease;
    font-family: 'Nunito', sans-serif;
}

/* Expanded Button State */
.abnb-btn.is-expanded { width: 115px; }
.abnb-btn.is-expanded .abnb-btn-text { opacity: 1; transition-delay: 0.1s; }

/* --- DROPDOWNS --- */
.abnb-dropdown {
    position: absolute;
    top: 85px; 
    background-color: #fff;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 5;
}

.abnb-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown: Where */
.abnb-dropdown-where {
    left: 33%; /* Centers under Where block */
    width: 400px;
    padding: 32px;
}

.abnb-where-title {
    font-size: 14px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
}

.abnb-where-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.abnb-where-item:hover { background-color: #f7f7f7; }

.abnb-where-icon {
    background-color: #f1f1f1;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    font-size: 20px;
    color: #222;
}

.abnb-where-item.nearby .abnb-where-icon {
    color: #fff;
    background-color: #00ad9c;
}

.abnb-where-text { display: flex; flex-direction: column; }
.abnb-where-city { font-weight: 700; color: #222; font-size: 16px; }
.abnb-where-desc { font-weight: 500; color: #717171; font-size: 14px; }


/* Dropdown: Who (Guests) */
.abnb-dropdown-who {
    right: 0;
    width: 350px;
    padding: 16px 32px;
}

.abnb-who-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.abnb-who-text { display: flex; flex-direction: column; }
.abnb-who-title { font-weight: 700; color: #222; font-size: 16px; }
.abnb-who-desc { font-weight: 500; color: #717171; font-size: 14px; }

.abnb-who-controls { display: flex; align-items: center; gap: 15px; }
.abnb-who-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #b0b0b0;
    background: transparent;
    color: #717171;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    transition: border-color 0.2s, color 0.2s;
}

.abnb-who-btn:hover:not(.disabled) { border-color: #222; color: #222; }
.abnb-who-btn.disabled { opacity: 0.3; cursor: not-allowed; }
.abnb-who-count { font-size: 16px; font-weight: 500; color: #222; width: 16px; text-align: center; }

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 991px) {
    
    /* Show initial trigger button, hide main bar */
    .abnb-mobile-trigger { display: flex; }
    .abnb-bar-wrapper { display: none; }

    /* When active/open on mobile */
    .abnb-bar-wrapper.mobile-active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #f7f7f7;
        z-index: 9999;
        padding: 80px 20px 20px 20px;
        overflow-y: auto;
    }

    .abnb-mobile-close { display: flex; }

    /* Stack the blocks visually */
    .abnb-bar { flex-direction: column; border-radius: 20px; background-color: transparent; border: none; box-shadow: none; gap: 15px;}
    .abnb-divider { display: none; }
    
    .abnb-block { 
        width: 100%; 
        border-radius: 20px; 
        align-items: flex-start; 
        padding: 16px 20px; 
        background-color: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border: 1px solid #ebebeb;
    }

    .abnb-block.is-active { box-shadow: 0 8px 25px rgba(0,0,0,0.1); }

    /* Mobile Search Button */
    .abnb-btn-wrap { width: 100%; padding: 0; margin-top: 10px; }
    .abnb-btn { width: 100% !important; border-radius: 15px; justify-content: center !important; height: 55px; }
    .abnb-btn-text { opacity: 1 !important; display: inline-block; margin-left: 10px; }
    .abnb-btn-icon { position: static; left: auto; }
    
    /* Adjust Dropdowns to flow naturally under blocks */
    .abnb-dropdown { 
        position: static; 
        width: 100% !important; 
        box-shadow: none; 
        border-radius: 0; 
        padding: 15px 0 5px 0; 
        transform: none; 
        display: none; 
        background: transparent;
    }
    .abnb-dropdown.is-open { display: block; }
}



/*---- PROGRAM SECTION ---*/

/* Base Section Styles */
.wellbeing-section {
    background-color: #fff;
    padding: 80px 0;
    font-family: 'Nunito', sans-serif;
    overflow: hidden;
}

/* 1. Main Heading */
.main-heading {
    color: #00ad9c;
    font-weight: 800; /* extrabold */
    /* Using clamp for responsiveness while hitting 48pt on desktop */
    font-size: clamp(24pt, 4vw, 48pt); 
    text-align: center;
    margin-bottom: 10px;
}

/* 2. Sub-Heading */
.sub-heading {
    color: #808285;
    font-weight: 500; /* medium */
    font-size: clamp(16pt, 2.5vw, 27pt);
    text-align: center;
    margin-bottom: 50px;
}

/* 11. Cards Styling */
.program-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-img-wrapper {
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: transform 0.3s ease;
}

.program-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

/* 9. Duration tag */
.duration-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #00ad9c;
    color: #f1f2f2;
    font-weight: 800; /* extrabold */
    font-size: 9.9pt;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* 3. Program Title */
.program-title {
    color: #808285;
    font-weight: 700; /* bold */
    font-size: 16pt;
    text-align: left;
    text-decoration: none;
    margin-bottom: 15px;
    display: block;
    line-height: 1.3;
}

.program-title:hover {
    color: #00ad9c; /* Subtle hover effect */
}

/* 4. Program description */
.program-desc {
    color: #606060;
    font-weight: 500; /* medium */
    font-size: 12pt;
    text-align: left;
    margin-bottom: auto; /* Pushes the footer to the bottom */
    line-height: 1.5;
}

/* 5. Horizontal line */
.card-divider {
    border: 0;
    border-top: 0.25pt solid #5fba46;
    margin: 20px 0;
    opacity: 1;
}

/* Location and Button Container */
.card-footer-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 6. & 7. Location styling */
.location-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-icon {
    color: #5fba46;
    font-size: 14pt;
}

.location-text {
    color: #606060;
    font-weight: 500; /* medium */
    font-size: 11pt;
    text-align: left;
}

/* 8. Know More round button */
.btn-know-more {
    background-color: #00ad9c;
    color: #f1f2f2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-know-more i {
    font-size: 10pt;
    margin-left: 2px; /* Center alignment adjustment for chevron */
}

.btn-know-more:hover {
    background-color: #008f81;
    color: #fff;
}

/* 10. View More Button */
.btn-view-more {
    background-color: #00ad9c;
    color: #ffffff;
    font-weight: 700;
    font-size: 14pt;
    padding: 12px 35px;
    border-radius: 8px; /* partially rounded */
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 40px;
}

.btn-view-more:hover {
    background-color: #008f81;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Animation: Ease in from bottom to top */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Staggered animation delays for elements */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@media (max-width: 768px) {
    .sub-heading {
        line-height: 24px;
        margin-top: 10px;
    }
}



/*-- STATS SECTION -- */

.stats-section {
    padding: 60px 0;
    overflow: hidden;
}

/* Custom Wide Container to match the "black lines" margin */
.custom-container {
    width: 100%;
    max-width: 1600px; /* Adjusts how wide the green box stretches */
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
}

/* 1. Main Rounded Rectangle */
.main-rounded-container {
    background-color: #d5e2d6;
    border-radius: 40px;
    padding: 70px 140px; /* Increased padding for the larger width */
}

/* Custom Gap to increase space between inner squares */
.custom-gap {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
}

@media (min-width: 1200px) {
    .custom-gap {
        --bs-gutter-x: 6rem; /* Huge gap for desktop */
    }
}

/* 2. Inside Rounded Squares (Cards) */
.stat-card {
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.10); /* 10% opacity, 7px X, 7px Y, 5px blur */
    padding: 45px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* Image/SVG Container */
.stat-icon {
    height: 85px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    max-height: 100%;
    width: auto;
}

/* 3. Main Title */
.stat-main-title {
    color: #00ad9c;
    font-family: 'Nunito', sans-serif;
    font-weight: 700; /* bold */
    font-size: 53px;
    margin-bottom: 5px;
    line-height: 1.2;
}

/* 4. Sub Title */
.stat-sub-title {
    color: #606060;
    font-family: 'Nunito', sans-serif;
    font-weight: 800; /* extrabold */
    font-size: 21px;
    margin-bottom: 15px;
}

/* 5. Short Description */
.stat-desc {
    color: #606060;
    font-family: 'Nunito', sans-serif;
    font-weight: 400; /* regular */
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 250px; /* Keeps text nicely wrapped like in the image */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991px) {
    .stat-main-title {
        font-size: 42px;
    }
    .main-rounded-container {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .main-rounded-container {
        padding: 40px 20px;
        border-radius: 30px;
    }
    .stat-card {
        padding: 40px 20px;
        border-radius: 30px;
    }
    .custom-container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/*---- TESTIMONIAL SECTION ----*/

.wellbeing-section {
    background-color: #fff;
    padding: 50px 0;
    font-family: 'Nunito', sans-serif;
    overflow: hidden;
}

.main-heading {
    color: #00ad9c;
    font-weight: 800;
    font-size: clamp(24pt, 4vw, 30pt); 
    text-align: center;
    margin-bottom: 0px !important;
}

.sub-heading {
    color: #808285;
    font-weight: 500;
    font-size: clamp(16pt, 2.5vw, 17pt);
    text-align: center;
    margin-bottom: 50px;
}

.program-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-img-wrapper {
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: transform 0.3s ease;
}

.program-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.duration-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #00ad9c;
    color: #f1f2f2;
    font-weight: 800;
    font-size: 9.9pt;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-title {
    color: #00ad9c;
    font-weight: 700;
    font-size: 14pt;
    text-align: left;
    text-decoration: none;
    margin-bottom: 15px;
    display: block;
    line-height: 1.2;
}

.program-title:hover {
    color: #808285;
}

.program-desc {
    color: #606060;
    font-weight: 500;
    font-size: 11pt;
    text-align: left;
    margin-bottom: auto;
    line-height: 1.2;
}

.card-divider {
    border: 0;
    border-top: 0.25pt solid #5fba46;
    margin: 20px 0;
    opacity: 1;
}

.card-footer-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-icon {
    color: #5fba46;
    font-size: 14pt;
}

.location-text {
    color: #606060;
    font-weight: 500;
    font-size: 11pt;
    text-align: left;
}

.btn-know-more {
    background-color: #00ad9c;
    color: #f1f2f2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-know-more i {
    font-size: 10pt;
    margin-left: 2px;
}

.btn-know-more:hover {
    background-color: #008f81;
    color: #fff;
}

.btn-view-more {
    background-color: #00ad9c;
    color: #ffffff;
    font-weight: 700;
    font-size: 12pt;
    padding: 12px 35px;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 40px;
}

.btn-view-more:hover {
    background-color: #008f81;
    color: #ffffff;
    transform: translateY(-2px);
}

.stats-section {
    padding: 50px 80px;
    overflow: hidden;
}

.custom-container-stat {
    width: 100%;
    max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
}

.main-rounded-container {
    background-color: #d5e2d6;
    border-radius: 36px;
    padding: 70px 140px;
}

.custom-gap {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
}

@media (min-width: 1200px) {
    .custom-gap {
        --bs-gutter-x: 3rem;
    }
}

.stat-card {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.10);
    padding: 25px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    height: 95px;
    margin-bottom: 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    max-height: 100%;
    width: auto;
}

.stat-main-title {
    color: #00ad9c;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.stat-sub-title {
    color: #606060;
    font-weight: 800;
    font-size: 21px;
    margin-bottom: 8px;
}

.stat-desc {
    color: #606060;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 250px;
}

@media (max-width: 991px) {
    .stat-main-title { font-size: 38px; }
    .main-rounded-container { padding: 50px 30px; }
    .stat-sub-title { font-size: 21px; }
}

@media (max-width: 768px) {
    .stat-main-title { font-size: 38px; }
    .main-rounded-container { padding: 40px 20px; border-radius: 30px; }
    .stat-card { padding: 40px 20px; border-radius: 30px; }
    .custom-container { padding-right: 15px; padding-left: 15px; }
    .stats-section { padding: 50px 11px; }
    .stat-sub-title { font-size: 21px; }
}

/* =========================================
   NEW: TESTIMONIALS SECTION CSS (CORRECTED)
   ========================================= */

        .custom-container-testi {
            width: 100%;
            max-width: 1500px;
            margin-right: auto;
            margin-left: auto; 
            padding: 60px;
        }

        /* =========================================
           2. TESTIMONIALS SECTION CSS
           ========================================= */
        .testimonial-wrapper {
            background-image: url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?auto=format&fit=crop&w=1920&q=80'); 
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            padding: 100px 0 80px 0;
            width: 100%;
            margin: 0;
            overflow: hidden;
        }

        .testimonial-heading-1 {
            color: #fff;
            text-align: center;
            font-weight: 400; 
            font-size: 24px;
            margin-bottom: 14px;
        }

        .testimonial-heading-2 {
            color: #fff;
            text-align: center;
            font-weight: 800; 
            font-size: clamp(32px, 4vw, 36px); 
            margin-bottom: 50px;
            text-transform: uppercase;
        }

        /* =========================================
           NATIVE CSS FLEX SLIDER (Replaces Bootstrap Carousel Hack)
           ========================================= */
        .custom-slider-track {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none; /* Hide scrollbar for Firefox */
            -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
            padding-top: 40px; /* Safe space for the overlapping top badge */
            padding-bottom: 40px; /* Safe space for the bottom drop shadow */
            scroll-behavior: smooth;
        }
        
        .custom-slider-track::-webkit-scrollbar {
            display: none; /* Hide scrollbar for Chrome/Safari/Webkit */
        }

        .testi-card-wrapper {
            flex: 0 0 100%; /* 1 item on mobile */
            scroll-snap-align: start;
            padding-left: 15px; 
            padding-right: 15px; 
            display: flex;
            flex-direction: column;
        }

        @media (min-width: 768px) {
            .testi-card-wrapper {
                flex: 0 0 50%; /* 2 items on tablet */
            }
            
        }
        
        @media (max-width: 768px) {
            .custom-container-testi {
                padding: 50px 12px !important;
            }
        }
        
        @media (min-width: 992px) {
            .testi-card-wrapper {
                flex: 0 0 33.333333%; /* 3 items on desktop */
            }
        }

        /* =========================================
           CARD INTERIOR STYLING
           ========================================= */

        .testi-card-inner {
            background-color: #fff;
            border-radius: 20px; 
            padding: 40px 30px 30px 30px; 
            flex-grow: 1; 
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
        }

        .quote-badge {
            background-color: #00ad9c;
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            position: absolute;
            top: -25px; 
            left: 50%;
            transform: translateX(-50%);
            z-index: 2; 
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .reviewer-img {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background-color: #d1d3d4; 
            object-fit: cover;
        }

        .reviewer-details {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .reviewer-name {
            color: #00ad9c;
            font-weight: 700; 
            font-size: 16pt;
            line-height: 1.1;
            margin: 0 0 4px 0;
        }

        .reviewer-desig {
            color: #606060;
            font-weight: 500; 
            font-size: 12pt;
            margin: 0;
            line-height: 1.1;
        }

        .testi-title {
            color: #00ad9c;
            text-align: left;
            font-weight: 700; 
            font-size: 20px;
            margin-bottom: 12px;
        }

        .testi-content {
            color: #606060;
            text-align: left;
            font-weight: 700; 
            font-size: 12px;
            line-height: 1.6;
            margin: 0;
        }

        /* Indicators and Buttons */
        .carousel-indicators {
            position: relative;
            margin-top: 10px;
            margin-bottom: 40px;
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #fff;
            opacity: 0.5;
            border: none;
            padding: 0;
            transition: opacity 0.3s ease;
        }

        .carousel-indicators button.active {
            opacity: 1;
        }

        .btn-testi-learn {
            background-color: #00ad9c;
            color: #fff;
            font-weight: 700; 
            font-size: 12pt;
            padding: 12px 35px;
            border-radius: 12px; 
            border: none;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .btn-testi-learn:hover {
            background-color: #008f81;
            color: #fff;
            transform: translateY(-2px);
        }

/*--- LIFED PRACTICE SECTION ---*/

/* =========================================
   1. BASE STYLES & LAYOUT
   ========================================= */

/* Renamed to avoid conflicts, and removed padding */
.lifed-container {
    width: 100%;
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
}


/* =========================================
   2. THE LIFED WAY SECTION CSS
   ========================================= */
.lifed-section {
    padding: 50px 80px;
    background-color: #fff;
}

/* 1. Rounded out rectangle */
.lifed-rounded-container {
    background-color: #e8f2eb;
    border-radius: 36px;
    padding: 80px 85px; 
}

/* 2. First heading */
.lifed-heading-1 {
    color: #808285;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 600; /* semibold */
    font-size: 24px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* 3. Main Heading */
.lifed-heading-2 {
    color: #00ad9c;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 800; /* extrabold */
    font-size: 36px;
    margin-bottom: 60px;
    text-transform: uppercase;
}

/* Custom class to increase gap between cards */
.lifed-gap {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 5rem; /* Increased vertical gap for mobile wrapping */
}

@media (min-width: 1200px) {
    .lifed-gap {
        --bs-gutter-x: 3rem; /* Increased horizontal gap for desktop */
    }
}

/* Wrapper to handle overlapping SVG icon */
.lifed-card-wrapper {
    position: relative;
    padding-top: 55px; /* Half of the 110px SVG size to prevent clipping */
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* SVG Image Container Positioned on top */
.lifed-svg-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px; /* SVG container size */
    height: 110px;
    z-index: 2; /* Sits above the card */
    display: flex;
    justify-content: center;
    align-items: center;
}

.lifed-svg-container svg {
    width: 100%;
    height: 100%;
}

/* 4. The Card Box */
.lifed-card-inner {
    background-color: #fff;
    border-radius: 21px;
    box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.10); /* Drop shadow specified */
    padding: 73px 15px 30px 15px; /* Extra top padding so content is below the SVG */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* 6. Card Heading */
.lifed-card-title {
    color: #00ad9c;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 700; /* bold */
    font-size: 25px;
    margin-bottom: 15px;
}

/* 7. Card Description */
.lifed-card-desc {
    color: #606060;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 500; /* medium */
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: auto; /* pushes button to the bottom */
}

/* 8. Horizontal Line */
.lifed-card-divider {
    border: 0;
    border-top: 0.25pt solid #5fba46;
    width: 100%;
    margin: 20px 0;
    opacity: 1;
}

/* 9. Rounded Know More Button */
.btn-lifed-know-more {
    background-color: #00ad9c;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800; /* extrabold */
    font-size: 9.9pt;
    padding: 8px 25px;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-lifed-know-more:hover {
    background-color: #008f81;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive gap adjustments for the cards row */
@media (max-width: 991px) {
    .lifed-card-wrapper {
        margin-bottom: 20px; 
    }
    .lifed-rounded-container {
        padding: 50px 20px;
    }
    .lifed-heading-2 {
        font-size: 27px;
    }
    .lifed-section {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    
    .lifed-section {
        padding: 36px 15px;
    }
}
       
/*--- Regenerative Wellbeing ---*/


/* =========================================
   2. REGENERATIVE WELLBEING SECTION CSS
   ========================================= */

.regen-section {
    background-color: #fff;
    padding: 40px 0;
}

.regen-container {
    width: 100%;
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 5%;
    padding-left: 5%;
}

.regen-heading-1 {
    color: #808285;
    text-align: center;
    font-weight: 400; 
    font-size: clamp(20px, 2.5vw, 22px); 
    margin-bottom: 10px;
}

.regen-heading-2 {
    color: #00ad9c;
    text-align: center;
    font-weight: 800; 
    font-size: clamp(28px, 4vw, 35px); 
    margin-bottom: 60px;
    text-transform: uppercase;
    line-height: 1.2;
}

.regen-gap {
    --bs-gutter-x: 2.5rem;
    --bs-gutter-y: 3.5rem;
}

/* 4. Card Styling (Padding removed, overflow added) */
.regen-card {
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #e6e6e6; 
    overflow: hidden; /* Ensures child elements don't spill out */
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.regen-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* 5. Full-width Card Image */
.regen-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0; /* Only rounds the top corners */
    margin: 0; /* Ensures flush fit */
}

/* Text Content Container (Padding applied here instead) */
.regen-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 25px 20px 30px 20px; /* Padding for text and button */
}

.regen-card-title {
    color: #00ad9c; /* Updated to match the green in your reference image */
    text-align: left;
    font-weight: 700; 
    font-size: 17px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.regen-card-desc {
    color: #606060;
    text-align: left;
    font-weight: 400; /* Regular looks better than 300 here for readability */
    font-size: 12px; /* Bumped up slightly for readability */
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1; 
}

.btn-regen-know-more {
    background-color: #00ad9c;
    color: #fff;
    font-weight: 800; 
    font-size: 11px;
    border-radius: 12px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start; 
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-regen-know-more:hover {
    background-color: #008f81;
    color: #fff;
}

.btn-regen-learn-main {
    background-color: #00ad9c;
    color: #fff;
    font-weight: 700; 
    font-size: 12pt;
    padding: 12px 35px;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.btn-regen-learn-main:hover {
    background-color: #008f81;
    color: #fff;
    transform: translateY(-2px);
}

/*---- Healthmate section ----*/

/* =========================================
   NEW: BUILDING A HEALTHIER CULTURE CSS
   ========================================= */
.culture-section {
    background-color: #f7f5ed;
    padding: 58px 0;
    font-family: 'Nunito', sans-serif;
    overflow: hidden;
}

.culture-container {
    width: 100%;
    max-width: 1300px; /* Slightly tighter container to match the image proportions */
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

/* 3.a. First Column Heading */
.culture-heading {
    color: #00ad9c;
    text-align: left;
    font-weight: 800; /* extrabold */
    /* Scalable font-size reaching 48px on large screens */
    font-size: clamp(32px, 4vw, 40px); 
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* 3.b. First Column Description */
.culture-desc {
    color: #606060;
    text-align: left;
    font-weight: 500; /* medium */
    /* Scalable font-size reaching 24px on large screens */
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 90%; /* Prevents text from stretching too wide on massive screens */
}

/* 3.c. Button */
.btn-culture-mate {
    background-color: #00ad9c;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800; /* extrabold */
    font-size: clamp(18px, 2vw, 19px); /* 23px max */
    padding: 15px 35px;
    border-radius: 12px; /* Matches standard styling */
    border: none;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-culture-mate:hover {
    background-color: #008f81;
    color: #fff;
    transform: translateY(-2px);
}

/* 4. Second Column Image */
.culture-img-wrapper {
    text-align: center;
}

.culture-img {
    width: 100%;
    max-width: 450px; /* Restricts the image to a nice vertical portrait proportion */
    height: auto;
    border-radius: 30px; /* Applies the rounded corners */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); /* Adds depth to the image */
    object-fit: cover;
}

/* Mobile specific adjustments */
@media (max-width: 991px) {
    .culture-text-col {
        margin-bottom: 50px; /* Adds space between text and image when stacked */
        text-align: center;
    }
    .culture-heading {
        text-align: center;
    }
    .culture-desc {
        text-align: center;
        max-width: 100%;
    }
    .culture-heading {
        font-size: clamp(23px, 4vw, 40px);
        margin-bottom: 14px;
    }
    
    .culture-desc {
        font-size: clamp(15px, 2.5vw, 22px);
        margin-bottom: 23px;
    }
    
    .btn-culture-mate {
        font-size: clamp(14px, 2vw, 19px);
    }

}

/*--- CONTACT FORM ---*/

/* =========================================
   NEW: CONTACT US SECTION CSS
   ========================================= */

.contact-section {
    background-color: #fff;
    padding: 80px 0;
    font-family: 'Nunito', sans-serif;
}

.contact-container {
    width: 100%;
    max-width: 1200px; /* Restricting width so it matches the centered design */
    margin: 0 auto;
    padding: 0 15px;
}

/* 1 & 2. Headings */
.contact-heading-1 {
    color: #808285;
    text-align: center;
    font-weight: 400; /* regular */
    font-size: 23px;
    margin-bottom: 5px;
}

.contact-heading-2 {
    color: #00ad9c;
    text-align: center;
    font-weight: 800; /* extrabold */
    font-size: clamp(32px, 4vw, 34px); /* Responsive max 48px */
    margin-bottom: 60px;
    text-transform: uppercase;
}

/* Form Layout & Styling */
.contact-form {
    width: 100%;
}

.contact-form-group {
    margin-bottom: 40px;
}

/* Label styling */
.contact-label {
    display: block;
    color: #606060;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 17px);
    text-align: left;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Input styling */
.contact-input {
    width: 100%;
    background-color: transparent !important; /* Maintains background */
    border: none;
    border-bottom: 1px solid #d1d3d4; /* Just a line */
    border-radius: 0; /* Ensures no rounded borders natively */
    padding: 10px 0;
    color: #606060;
    font-family: 'Nunito', sans-serif;
    font-weight: 600; /* semibold */
    font-size: clamp(16px, 2vw, 17px);
    outline: none;
    transition: border-color 0.3s ease;
}

/* Placeholder styling */
.contact-input::placeholder {
    color: #606060;
    opacity: 0.6; /* Slightly faded so it looks like a placeholder, but keeps the color */
    font-weight: 600; /* semibold */
}

/* Focus state styling */
.contact-input:focus {
    border-bottom-color: #00ad9c; /* Highlights line on click */
    background-color: transparent !important;
    box-shadow: none;
}

/* Removing autofill background color standard in Chrome/Webkit */
.contact-input:-webkit-autofill,
.contact-input:-webkit-autofill:hover, 
.contact-input:-webkit-autofill:focus, 
.contact-input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #606060 !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Textarea specific */
.contact-textarea {
    resize: vertical; /* Only allow vertical resizing */
    min-height: 50px;
}

/* Bottom Row Styling (Privacy & Button) */
.contact-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows stacking on small mobile screens */
    gap: 20px;
}

.contact-privacy-text {
    color: #606060;
    font-family: 'Nunito', sans-serif;
    font-weight: 600; /* semibold */
    font-size: clamp(14px, 1.5vw, 20px);
    margin: 0;
}

/* Submit Button */
.btn-contact-submit {
    background-color: #00ad9c;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800; /* extrabold */
    font-size: clamp(16px, 2vw, 14px);
    padding: 12px 45px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-contact-submit:hover {
    background-color: #008f81;
    transform: translateY(-2px);
}

/* Responsive spacing for columns */
@media (min-width: 768px) {
    .contact-col-left {
        padding-right: 40px;
    }
    .contact-col-right {
        padding-left: 40px;
    }
}

/* Responsive spacing for columns */
@media (max-width: 768px) {
    .contact-heading-1 {
        font-size: 18px;
    }
    .contact-heading-2 {
        font-size: clamp(23px, 4vw, 34px);
    }
    
    .contact-container {
        padding: 0 26px;
    }
    
    .contact-privacy-text {
        font-size: clamp(16px, 1.5vw, 20px);
    }
    
    .btn-contact-submit {
        font-size: clamp(14px, 2vw, 14px);
        padding: 10px 44px;
    }
}

/*---- FOOTER ---*/

/* =========================================
   NEW: SITE FOOTER CSS
   ========================================= */

.site-footer-wrapper {
    background-color: #414242;
    color: #eaeaea;
    font-family: 'Nunito', sans-serif;
    padding: 70px 0 30px 0;
    overflow: hidden;
}

.site-footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Reusable Link Style */
.site-footer-wrapper a {
    color: #eaeaea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer-wrapper a:hover {
    color: #00ad9c;
}

/* Column 1: Brand & Socials */
.site-footer-logo-wrapper {
    margin-bottom: 20px;
}

.site-footer-logo-svg {
    height: 45px; /* Adjust height as needed */
    width: auto;
}

.site-footer-tagline {
    font-size: 16px;
    font-weight: 400; /* Regular */
    line-height: 1.6;
    margin-bottom: 25px;
    color: #eaeaea;
}

.site-footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.site-footer-social-icon {
    background-color: #00ad9c;
    color: #fff !important;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.site-footer-social-icon:hover {
    background-color: #008f81;
    transform: translateY(-2px);
}

/* Column 2 & 3: Headings */
.site-footer-heading {
    font-size: 22px;
    font-weight: 600; /* Semibold */
    color: #eaeaea;
    margin-bottom: 25px;
}

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

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

.site-footer-links a {
    font-size: 16px;
    font-weight: 400; /* Regular */
}

/* Column 3: Contact Info */
.site-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.site-footer-round-icon {
    background-color: #00ad9c;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    flex-shrink: 0;
}

.site-footer-contact-item a {
    font-size: 16px;
    font-weight: 400;
}

.site-footer-timing {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #eaeaea;
}

/* Footer Divider & Copyright */
.site-footer-divider {
    border-top: 0.5px solid #eaeaea;
    margin: 40px 0 25px 0;
    opacity: 0.3; /* Adjusted opacity to match visual weight of the image */
}

.site-footer-copyright {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #eaeaea;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .site-footer-col {
        margin-bottom: 40px;
    }
}

