        /* --- Global Variables --- */
        :root {
            --primary-blue: #0B2B40;      /* Darkest blue for footer/contact */
            --secondary-blue: #2B5773;    /* Features bar blue */
            --accent-gold: #B58500;       /* Gold for active states */
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f4f6f8;
            --white: #ffffff;
            --font-sans: 'Montserrat', sans-serif;
            --font-serif: 'Merriweather', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        a { text-decoration: none; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* --- Reusable Buttons --- */
        .btn {
            display: inline-block;
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-glass {
            background: rgba(255, 255, 255, 0.4);
            border: 1px solid rgba(0, 0, 0, 0.2);
            color: var(--text-dark);
            backdrop-filter: blur(5px);
        }

        .btn-gradient {
            background: linear-gradient(180deg, #ffffff 0%, #d1d5db 100%);
            border: 1px solid #a1a1aa;
            color: var(--text-dark);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .btn-dark {
            background: var(--secondary-blue);
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.2);
        }

        /* --- Header / Navbar --- */
        .header {
            position: fixed;
            top: 30px;
            width: 100%;
            z-index: 100;
        }

        .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(6px);
    border-radius: 50px;
    padding: 10px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin: 0 auto;
    max-width: 1100px;
}


.emptyspace {
    min-width: 8vw;
}



        .logo img { height: 55px; }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 1rem;
        }

        .nav-links a.active {
            color: var(--accent-gold);
            font-weight: 600;
        }

        .lang-switch {
            font-weight: 700;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .lang-switch img { height: 15px; }

        /* --- Hero Section --- */
        .hero {
    position: relative;
    height: 80vh;
    background-image: url('/assets/heroepaes01.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-image 1s ease-in-out; 
}

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.65);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            padding-top: 50px;
        }

        .hero h1 {
            font-family: var(--font-sans);
            font-size: 3.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 40px;
        }

        /* Hero Button wrapper to match Figma's double pill look */
        /* .hero-btn-wrapper {
            display: inline-block;
            background: rgba(255,255,255,0.3);
            padding: 8px 15px;
            border-radius: 60px;
            border: 1px solid rgba(0,0,0,0.1);
        } */

        /* --- Features Bar --- */
        .features-container {
            position: relative;
            z-index: 20;
            margin-top: -60px !important; /* Pull up to overlap hero */
        }

        .features-bar {
            background: var(--secondary-blue);
            border-radius: 60px;
            display: flex;
            justify-content: space-between;
            padding: 30px 50px;
            color: var(--white);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            text-align: left;
        }

        .feature-item i {
            font-size: 2rem;
            color: #d1d5db; /* Light grayish silver */
        }

        .feature-item h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .feature-item p {
            font-size: 0.85rem;
            color: #cbd5e1;
        }

        /* --- Section Titles --- */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            color: var(--text-dark);
            font-weight: 700;
            display: inline-block;
            border-bottom: 3px solid var(--text-dark);
            padding-bottom: 5px;
            margin-bottom: 10px;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* --- About Us --- */
        .about-section {
            padding: 100px 0;
            background: var(--white);
        }

        .about-grid {
            display: flex;
            gap: 80px;
            align-items: center;
        }

        .about-images {
            flex: 1;
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .leaf-img {
            width: 200px;
            height: 380px;
            object-fit: cover;
        }

        /* Exact cuts based on image_361e8c.jpg */
        .leaf-left { border-radius: 180px 0 180px 0; }
        .leaf-right { border-radius: 0 180px 0 180px; margin-top: 60px; }

        .about-content {
            flex: 1.2;
        }

        .about-content i {
            font-size: 2.5rem;
            color: var(--secondary-blue);
            margin-bottom: 10px;
            margin-left: 20px;
        }

        .who-we-are {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .thick-line {
            width: 6px;
            height: 45px;
            background-color: var(--secondary-blue);
        }

        .who-we-are h3 {
            font-family: var(--font-serif);
            font-style: italic;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--secondary-blue);
            text-transform: uppercase;
        }

        .about-text {
            border-left: 1px solid #d1d5db;
            padding-left: 20px;
            color: var(--text-light);
            font-size: 1.05rem;
            margin-bottom: 30px;
        }

        /* --- Mid Banner --- */
        .mid-banner {
            background-image: url('./assets/mbg01.png');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            padding: 120px 20px;
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .mid-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(11, 43, 64, 0.6);
        }

        .mid-banner-content {
            position: relative;
            z-index: 1;
        }

        .mid-banner h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .mid-banner p { margin-bottom: 30px; font-size: 1.1rem; }

        /* --- Services --- */
        .services-section {
            padding: 100px 0;
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: #f8f9fa; /* Very light gray */
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* The Slanted Image CSS */
        .service-img-wrapper {
            height: 220px;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
        }

        .service-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-text {
            padding: 20px 25px 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-text h4 {
            color: var(--text-dark);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .service-text p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .read-more-link {
            color: var(--secondary-blue);
            font-weight: 700;
            font-size: 1rem;
        }

        /* --- Products Grid --- */
        .product-section {
            padding: 80px 0;
            background: var(--white);
        }

        .product-board {
            max-width: 900px;
            margin: 0 auto 40px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        .product-header {
            background: var(--secondary-blue);
            color: var(--white);
            text-align: center;
            padding: 15px;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: #e2e8f0; /* Borders color */
            gap: 1px; /* Creates the thin lines between images */
        }

        .product-grid img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            background: var(--white);
            padding: 10px;
            display: block;
        }

        /* --- Join Team --- */
        .join-team-section {
            background-image: url('./assets/team01.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }
        
        .join-team-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255,255,255,0.5); /* Light overlay based on image */
        }

        .join-team-content {
            position: relative;
            z-index: 1;
        }

        .join-team-content h2 {
            font-family: var(--font-serif);
            font-size: 2.8rem;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .join-team-content p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            font-weight: 500;
        }

        /* --- Contact Section --- */
        .contact-footer-section {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 80px 0 0;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-header h2 {
            font-family: var(--font-sans);
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        /* Contact Form Card */
        .contact-card {
            background: #11364d; /* Slightly lighter than background */
            border-radius: 20px;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            margin-bottom: 80px;
        }

        .contact-info-panel {
            background: #194059; /* Distinct left panel color */
            padding: 50px;
        }

        .contact-info-panel h3 {
            font-size: 1.5rem;
            margin-bottom: 40px;
        }

        .info-row {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            font-size: 0.95rem;
            align-items: flex-start;
        }

        .info-row i { margin-top: 5px; }

        .social-row {
            display: flex;
            gap: 15px;
            margin-top: 60px;
        }

        .social-row a {
            color: rgba(255,255,255,0.6);
            font-size: 1.5rem;
            transition: 0.3s;
        }

        .social-row a:hover { color: var(--white); }

        .contact-form-panel {
            padding: 50px;
            position: relative;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .input-group {
            display: flex;
            flex-direction: column;
        }

        .input-group label {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contact-form-panel input, .contact-form-panel textarea {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            color: var(--white);
            padding: 8px 0;
            font-size: 0.9rem;
            outline: none;
        }
        
        .contact-form-panel input::placeholder, .contact-form-panel textarea::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .btn-send {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.3);
            color: var(--white);
            float: right;
            margin-top: 20px;
        }

        .btn-send:hover { background: rgba(255,255,255,0.2); }

        /* --- Footer Links Area --- */
        .footer-links-area {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 60px 0;
            display: grid;
            grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr;
            gap: 40px;
        }

        .footer-col h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul a {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .footer-col ul a:hover { color: var(--white); }

        /* Subscribe Box */
        .subscribe-box img {
            background: var(--white);
            padding: 5px 10px;
            border-radius: 4px;
            height: 35px;
            margin-bottom: 20px;
        }

        .subscribe-box p { font-size: 0.9rem; margin-bottom: 15px; font-weight: 600; }

        .sub-input {
            display: flex;
            background: rgba(255,255,255,0.1);
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .sub-input input {
            background: transparent;
            border: none;
            padding: 12px;
            color: var(--white);
            flex-grow: 1;
            outline: none;
        }

        .sub-input button {
            background: var(--white);
            color: var(--primary-blue);
            border: none;
            padding: 0 20px;
            font-weight: 600;
            cursor: pointer;
        }

        .footer-bottom {
            background: #081f2e; /* Darker bottom strip */
            padding: 20px 0;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
        }

        .footer-bottom .social-mini a {
            color: var(--white);
            margin: 0 5px;
            font-size: 1.2rem;
        }

        /* --- Responsive --- */
        @media (max-width: 1024px) {
            .nav-wrapper { flex-direction: column; gap: 15px; border-radius: 20px; }
            .features-bar { flex-wrap: wrap; border-radius: 20px; }
            .about-grid { flex-direction: column; }
            .leaf-right { margin-top: 0; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-card { grid-template-columns: 1fr; }
            .footer-links-area { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .services-grid { grid-template-columns: 1fr; }
            .product-grid { grid-template-columns: repeat(2, 1fr); }
            .form-row { grid-template-columns: 1fr; }
            .footer-links-area { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; }
        }


        /* --- Floating Animation Keyframes --- */
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

@keyframes floatUpright {
    0%, 100% { transform: rotate(90deg); }
    50% { transform: rotate(0deg); }
}



/* Update your existing leaf classes */
.leaf-left { 
    border-radius: 180px 0 180px 0; 
    animation: floatUpDown 5s ease-in-out infinite;
}

.leaf-right { 
    border-radius: 0 180px 0 180px; 
    margin-top: 60px; 
    animation: floatUpDown 5s ease-in-out infinite;
    animation-delay: 2.5s; /* Delays the start so they move in opposite directions */
}













/* --- Mobile Bottom Nav Hidden on Desktop --- */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    /* --- 1. Fix Header: Keep logo and language side-by-side --- */
    .nav-wrapper {
        flex-direction: row !important; /* Forces them to stay on the same line */
        justify-content: space-between;
        padding: 10px 20px;
        border-radius: 50px;
    }
    
    /* Hide desktop links */
    .nav-wrapper .nav-links {
        display: none; 
    }

    /* --- 2. Fix Hero Text: Scale down for mobile screens --- */
    .hero {
        height: 75vh; /* Give it a bit more height on mobile */
    }
    
    .hero h1 { 
        font-size: 1.8rem; /* Scaled down from 2.5rem */
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    /* --- 3. Fix Features Box: Stack vertically and prevent overlap --- */
    .features-bar { 
        flex-direction: column; /* Stack items top-to-bottom */
        gap: 25px; /* Add breathing room between each item */
        padding: 30px 20px;
        border-radius: 20px;
        margin-bottom: 40px; /* Pushes the next section down so it isn't cut off */
    }
    
    .feature-item {
        align-items: flex-start; /* Aligns the icon to the top of the text block */
    }

    /* --- 4. Bottom Nav Adjustments --- */
    body {
        padding-bottom: 100px; /* Increased from 75px to ensure no content is hidden */
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
        z-index: 9999;
        justify-content: space-around;
        align-items: center;
        height: 70px;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-light);
        font-size: 0.75rem;
        font-weight: 600;
        gap: 5px;
        width: 100%;
        height: 100%;
        transition: color 0.3s ease;
    }

    .mobile-nav-item i {
        font-size: 1.3rem;
        transition: transform 0.3s ease;
    }

    .mobile-nav-item.active {
        color: var(--accent-gold);
    }
    
    .mobile-nav-item.active i {
        transform: scale(1.15); 
    }

    img.leaf-img.leaf-left {
    max-width: 40vw;
}

img.leaf-img.leaf-right {
    max-width: 40vw;
}

.nav-wrapper {
    max-width: 80vw;
}


}


.hero h1 {
    margin-top: 10px;
}

header.header {
    display: flex;
}

h1 {
    font-size: 37px !important;
}



header.header {
    padding: 0px 20px;
}

.nav-wrapper {
    min-height: 65px;
}


a.btn.btn-glass {
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    min-width: 20vw;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    backdrop-filter: blur(3px);
    border: solid 3px #33333373;
    box-shadow: 2px -2px 30px rgb(0 0 0 / 31%);
    background: linear-gradient(90deg, rgb(131 129 129 / 46%) 0%, rgb(255 255 255 / 42%) 100%);
    font-size: 22px;
}


a.btn.btn-glass:hover {
    backdrop-filter: blur(0px);
    border: solid 3px #ffffffed;
    box-shadow: 2px -2px 30px rgb(0 0 0 / 31%);
    background: #0000;
    font-size: 22px;
    color: #fff;
}



.container {
    max-width: 85vw;
    margin: 0 auto;
    padding: 0 20px;
}


a.read-more-link {
    text-shadow: 2px 2px #0000003b;
}

.contact-page-wrapper {
    background-color: var(--primary-blue);
    padding: 80px 0 0;
    color: var(--white);
}


.wfi-banner {
    margin: 56px 0px;
}

.contact-highlight {
    
    text-shadow: 1px 1px 3px rgb(0 0 0 / 72%) !important;
   
}


.circle-img-container {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    max-height: 100%;
}

.split-image-col {
    height: 100%;
    min-width: max-content;
}

.split-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    align-content: space-between;
}

.split-text-col {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 100%;
    min-height: 100%;
}

.imgspec {
    max-height: 300px;
}

.rotat {
    transform: rotate(180deg);
}


.title-center h2 {
    margin-top: 80px;
}


.block-header.red-theme {
    display: flex;
    flex-direction: column;
}

.thick-line {
    display: none;
}

.block-header.red-theme {
    border-left: solid 13px #b91c1c;
    padding-left: 16px;
}

.instructor-card {
    margin: 0;
}


 .flxbl {
    margin-top: 65px;
    display: flex;
    flex-direction: column;
    border-left: solid 13px #2b5773;
    padding-left: 18px;
}

ul.attendee-list {
    margin: 0;
    border-left: solid 1px;
    padding-left: 16px;
}

.sub-header-red {
    margin: 18px;
}

ul.text-list {
    margin: 0;
}

.sub-header-red {
    margin-left: 0;
}


.modules-grid {
    margin: 0;
}