    /* ===== FONTS ===== */
    h1, h2, h3, h4 {
        font-family: 'HomepageBaukasten Bold', Arial, sans-serif;
        font-weight: bold;
    }
    p {
        font-family: 'Roboto', Arial, sans-serif;
        font-weight: normal;
    }

    /* ===== SPLASH VIDEO ===== */
    .video-splash-overlay {
        position: fixed; top: 0; left: 0;
        width: 100%; height: 100vh;
        z-index: 9999; background: #000;
        display: flex; align-items: center; justify-content: center;
        overflow: hidden;
    }
    .video-splash-overlay video { width: 100%; height: 100%; object-fit: cover; }
    .video-splash-overlay.splash-exit { animation: splashExit 0.5s ease-in-out forwards; }
    @keyframes splashExit {
        to { opacity: 0; visibility: hidden; pointer-events: none; }
    }
    .hero-hidden { opacity: 0; }
    .hero-reveal { animation: heroReveal 0.8s ease-out forwards; }
    @keyframes heroReveal {
        from { opacity: 0; transform: scale(1.02); }
        to { opacity: 1; transform: scale(1); }
    }
    @media (prefers-reduced-motion: reduce) {
        .video-splash-overlay { display: none; }
    }

    /* ===== HOMEPAGE NAVBAR BACKGROUND ===== */
    /* Background now handled globally on .navbar-main in styles_front.html */
    html.no-scroll, body.no-scroll {
        margin: 0 !important; padding: 0 !important;
        overflow: hidden !important;
        height: 100vh !important; max-height: 100vh !important;
        background: #e8eef5 !important;
    }
    body.no-scroll #preloader { display: none !important; }
    .hero-no-scroll {
        position: fixed !important;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100%; height: 100vh !important;
        overflow: hidden !important;
        margin-top: 0 !important; padding-top: 0 !important;
    }
    body.homepage-hero .hero-fullscreen {
        margin-top: 0 !important; padding-top: 0 !important;
    }
    .hero-fullscreen { position: relative; min-height: 100vh; }

    /* no-scroll applies on all screen sizes — homepage is a single viewport */

    /* ===== BACKGROUND ===== */
    .hero-bg {
        position: fixed; top: 0; left: 0;
        width: 100%; height: 100%;
        z-index: 1; background: #000; overflow: hidden;
        -webkit-transform: translateZ(0);
    }
    .hero-bg-img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
    }
    .hero-bg::after {
        content: ''; position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.15);
        z-index: 1;
    }

    /* ===== HERO LAYOUT ===== */
    .hero-container {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        z-index: 5;
        display: flex;
        align-items: center;
        padding: 0 6%;
    }
    .hero-row {
        display: flex;
        align-items: center;
        gap: 60px;
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
    }

    /* Left Column */
    .hero-col-left {
        flex: 1 1 60%;
        min-width: 0;
    }

    /* ===== TITLE ===== */
    .hero-title {
        color: #f6d00b;
        font-size: 2.8rem;
        line-height: 1.15;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        max-width: 600px;
    }

    /* ===== DESCRIPTION ===== */
    .hero-desc {
        color: #fff;
        font-family: 'Roboto', Arial, sans-serif !important;
        font-weight: 100 !important;
        text-align: justify;
        font-size: 18px !important;
        line-height: 1.4 !important;
        margin-bottom: 18px;
        max-width: 800px;
    }
    .hero-desc p {
        font-family: 'Roboto', Arial, sans-serif !important;
        font-size: 18px !important;
        line-height: 1.4 !important;
        font-weight: 100 !important;
        margin: 0 0 28px 0;
        color: #fff !important;
    }
    .hero-desc p:last-child {
        margin-bottom: 0;
    }

    /* ===== BUTTONS ===== */
    .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 16px;
    }
    .hero-btn {
        display: inline-block !important;
        padding: 13px 32px !important;
        font-family: 'HomepageBaukasten Bold', Arial, sans-serif !important;
        font-size: 14px !important;
        font-weight: normal !important;
        border-radius: 15px !important;
        text-decoration: none !important;
        letter-spacing: 0.3px !important;
        transition: all 0.25s ease !important;
    }
    .hero-btn-primary {
        background: rgba(0, 74, 173, 0.7) !important;
        color: #fff !important;
        box-shadow: 0 2px 8px rgba(0, 74, 173, 0.3) !important;
        border: none !important;
    }
    .hero-btn-primary:hover {
        background: rgba(0, 74, 173, 1) !important;
        box-shadow: 0 4px 16px rgba(0, 74, 173, 0.4) !important;
        transform: translateY(-1px);
        color: #fff !important;
    }
    .hero-btn-secondary {
        background: rgba(0, 74, 173, 0.7) !important;
        color: #fff !important;
        border: 1.5px solid rgba(0, 74, 173, 0.7) !important;
    }
    .hero-btn-secondary:hover {
        background: rgba(0, 74, 173, 1) !important;
        color: #fff !important;
        transform: translateY(-1px);
        border-color: rgba(0, 74, 173, 1) !important;
    }

    /* ===== CERTIFICATIONS - BOTTOM RIGHT ===== */
    .hero-certifications {
        position: absolute;
        bottom: 80px;
        right: 6%;
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .hero-certifications img {
        height: 55px;
        width: auto;
        object-fit: contain;
        opacity: 1;
    }
    .hero-certifications .badge-no-bg { mix-blend-mode: multiply; }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(24px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .hero-animate-up { animation: fadeInUp 0.7s ease-out 0.2s both; }
    .hero-animate-up-delay { animation: fadeInUp 0.7s ease-out 0.4s both; }

    /* ===== RESPONSIVE ===== */

    /* Large screens */
    @media (min-width: 1400px) {
        .hero-title { font-size: 3.2rem; }
        .hero-desc, .hero-desc p { font-size: 23px !important; }
    }

    /* Medium screens */
    @media (max-width: 1200px) {
        .hero-title { font-size: 2.4rem; }
    }

    /* Tablet - stack layout */
    @media (max-width: 991px) {
        .hero-col-left {
            text-align: center;
        }
        .hero-row {
            flex-direction: column;
            gap: 20px;
        }
        .hero-desc {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-actions {
            justify-content: center;
        }
        .hero-certifications {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: auto;
            width: 100%;
            justify-content: center;
            padding: 14px 5%;
            z-index: 10;
            background: rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }
        .hero-certifications img {
            height: 50px;
            opacity: 1;
        }
        .homepage-footer-inner {
            flex-direction: column;
            gap: 4px;
            text-align: center;
            padding: 8px 0;
        }
    }

    /* Mobile */
    @media (max-width: 768px) {
        .hero-title { font-size: 1.8rem; }
        .hero-desc { text-align: left; margin-bottom: 18px; }
        .hero-desc, .hero-desc p { font-size: 1rem !important; line-height: 1.6 !important; }
        .hero-btn { padding: 10px 24px !important; font-size: 13px !important; }
        .hero-certifications {
            bottom: 28px;
            gap: 10px;
            flex-wrap: wrap;
            padding: 12px 5%;
        }
        .hero-certifications img {
            height: 42px;
        }
    }

    /* Small mobile */
    @media (max-width: 576px) {
        .hero-title { font-size: 1.5rem; margin-bottom: 10px; }
        .hero-desc, .hero-desc p { font-size: 0.95rem !important; line-height: 1.5 !important; }
        .hero-desc { margin-bottom: 14px; }
        .hero-desc p { margin: 0 0 8px 0; }
        .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
        .hero-btn { width: 180px; text-align: center; padding: 10px 18px !important; font-size: 12px !important; }
        .hero-certifications {
            bottom: 24px;
            gap: 8px;
            padding: 10px 4%;
        }
        .hero-certifications img {
            height: 34px;
        }
        .homepage-footer-inner {
            font-size: 0.6rem;
        }
    }

    /* ===== HOMEPAGE FOOTER ===== */
    .homepage-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10;
        background: rgba(255, 255, 255, 0.6);
        padding: 2px 0;
        line-height: 1;
    }
    .homepage-footer .container {
        padding-top: 0;
        padding-bottom: 0;
    }
    .homepage-footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: 'Roboto', Arial, sans-serif;
        font-weight: normal;
        font-size: 0.72rem;
        color: #4a5568;
        line-height: 1.2;
    }
    .homepage-footer-inner a {
        color: #004aad;
        text-decoration: none;
    }
    .homepage-footer-inner a:hover {
        color: #f6d00b;
    }

    /* Malay language */
    html[lang="ms"] .hero-title { font-size: 2.6rem; }
    @media (max-width: 768px) { html[lang="ms"] .hero-title { font-size: 1.8rem; } }
    @media (max-width: 576px) { html[lang="ms"] .hero-title { font-size: 1.5rem; } }
