
        /* --- GLOBAL VARIABLES & CORE RESET --- */
        :root {
            --primary-dark: #072E1B;
            /* Deep Royal Emerald */
            --primary-emerald: #0A5C36;
            /* Rich Biotech Green */
            --accent-gold: #D4AF37;
            /* Premium Metallic Gold */
            --accent-gold-glow: rgba(212, 175, 55, 0.4);
            --light-bg: #F4F7F5;
            /* Off-White Organic Clean */
            --white: #FFFFFF;
            --text-dark: #1A2B23;
            --text-muted: #5A6E63;
            --glass-bg: rgba(255, 255, 255, 0.85);
            --glass-border: rgba(255, 255, 255, 0.4);
            --font-heading: 'Cinzel', serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
            --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: var(--font-body);
            background-color: var(--light-bg);
            color: var(--text-dark);
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        /* --- REUSABLE UTILITIES & OVERRIDES --- */
        .font-heading {
            font-family: var(--font-heading);
        }

        .text-gold {
            color: var(--accent-gold);
        }

        .bg-emerald {
            background-color: var(--primary-dark);
        }

        /* Premium Golden Button Base */
        .btn-premium-gold {
            background: linear-gradient(135deg, #E6C655 0%, var(--accent-gold) 100%);
            color: var(--primary-dark) !important;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 14px 32px;
            border-radius: 50px;
            border: none;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-decoration: none;
            display: inline-block;
        }

        .btn-premium-gold::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-emerald) 100%);
            transition: var(--transition-smooth);
            z-index: -1;
            opacity: 0;
            transform: scaleX(0);
            transform-origin: right;
        }

        .btn-premium-gold:hover {
            color: var(--white) !important;
            box-shadow: 0 6px 20px rgba(10, 92, 54, 0.4);
            transform: translateY(-3px);
        }

        .btn-premium-gold:hover::before {
            opacity: 1;
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Premium Outline Button */
        .btn-premium-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--accent-gold);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: var(--transition-smooth);
            text-decoration: none;
            display: inline-block;
        }

        .btn-premium-outline:hover {
            background: var(--accent-gold);
            color: var(--primary-dark);
            box-shadow: 0 0 15px var(--accent-gold-glow);
            transform: translateY(-3px);
        }

        

        /* --- TOP BAR --- */
        .top-bar {
            background-color: #041F12;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .top-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .top-link:hover {
            color: var(--accent-gold);
        }

        /* --- HEADER / NAVIGATION --- */
        .navbar-premium {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--glass-border);
            /* padding: 0px; */
            transition: var(--transition-smooth);
            z-index: 1050;
        }

        .navbar-premium.scrolled {
            padding: 10px 0;
            background: rgba(7, 46, 27, 0.95);
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }

        .navbar-premium.scrolled .nav-link {
            color: rgba(255, 255, 255, 0.9);
        }

        .navbar-premium.scrolled .navbar-brand img {
            filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.2));
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            padding: 0;
            margin: 0;
        }

        /* Logo sizes enhanced for better width visibility */
        .navbar-logo {
            max-height: 90px;
            width: auto;
            object-fit: cover;
            transition: var(--transition-smooth);
           
        }

        .navbar-premium.scrolled .navbar-logo {
            max-height: 60px;
        }

        .nav-link {
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 14px;
            margin: 0 4px;
            position: relative;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* Custom golden bottom line added seamlessly for all links */
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: var(--transition-smooth);
        }

        .nav-link:hover::after,
        .nav-link.active::after,
        .nav-item.show .nav-link::after {
            width: 100%;
        }

        .nav-link:hover,
        .nav-item.show .nav-link {
            color: var(--accent-gold) !important;
        }

        /* Completely removes Bootstrap default caret indicator dot/arrow */
        .dropdown-toggle::after {
            display: none !important;
        }

        /* Rotating dynamic motion for the custom dropdown arrow */
        .dropdown-arrow-icon {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .nav-item.show .dropdown-arrow-icon {
            transform: rotate(180deg);
        }

        /* Dropdown Menu Box Styling */
        .dropdown-menu-premium {
            background: rgba(7, 46, 27, 0.98);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
            margin-top: 15px !important;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: block;
        }

        .dropdown-menu-premium.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item-premium {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            font-size: 0.8rem;
            padding: 5px 20px;
            transition: var(--transition-smooth);
        }

        .dropdown-item-premium:hover {
            background: rgba(212, 175, 55, 0.15);
            color: var(--accent-gold) !important;
            padding-left: 28px;
        }

        /* Toggler Custom Icon */
        .navbar-toggler {
            border: none;
            outline: none !important;
            padding: 4px 8px;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%230A5C36' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
            transition: var(--transition-smooth);
        }

        .navbar-premium.scrolled .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }
/*==============================
  SUB MENU
===============================*/

.dropdown-submenu{
    position:relative;
}

.submenu-menu{

    position:absolute;
    top:0;
    left:100%;

    min-width:260px;

    display:none;

    background:#072E1B;

    border:1px solid rgba(212,175,55,.25);

    border-radius:10px;

    padding:8px 0;

    list-style:none;

    z-index:99999;

}

@media(min-width:992px){

.dropdown-submenu:hover>.submenu-menu{

display:block;

}

}

/* MOBILE */

@media(max-width:991.98px){

.submenu-menu{

position:static;

display:none;

background:transparent;

border:none;

box-shadow:none;

padding-left:15px;

}

.submenu-menu.active{

display:block;

}

}
    @media (max-width:991.98px){

.dropdown-menu-premium{
    display:none;
}

.dropdown-menu-premium.show{
    display:block;
}}    

/* Mango parent */

.submenu-toggle{
    color:#fff !important;
    background:transparent !important;
}

.submenu-toggle:hover,
.submenu-toggle:focus{
    background:rgba(212,175,55,.15) !important;
    color:#D4AF37 !important;
}

/* Mobile */

@media(max-width:991.98px){

    .submenu-toggle.active{
        background:rgba(212,175,55,.15) !important;
        color:#D4AF37 !important;
    }

}
      
        @media (max-width: 991.98px) {
            .top-bar {
                display: none !important;
            }

            .navbar-premium {
                background: rgba(7, 46, 27, 0.98);
                border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            }

            .navbar-logo {
                max-height: 60px;
            }

            .nav-link {
                color: rgba(255, 255, 255, 0.85) !important;
                padding: 12px 20px;
                margin: 4px 0;
                border-radius: 8px;
                justify-content: space-between;
            }

            .nav-link:hover,
            .nav-item.show .nav-link {
                background: rgba(255, 255, 255, 0.05);
            }

            .nav-link::after {
                display: none;
            }

            .dropdown-menu-premium {
                background: transparent;
                border: none;
                box-shadow: none;
                margin-top: 0 !important;
                padding-left: 20px;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
            }

            .dropdown-menu-premium.show {
                display: block;
            }

            .dropdown-item-premium {
                padding: 4px 16px;
            }

            .dropdown-item-premium:hover {
                background: transparent;
                padding-left: 20px;
            }
        }
           
         /* --- HERO SLIDER MASTER HUB --- */
    .hero-slider {
        width: 100%;
        background: #020F08;
        overflow: hidden;
        padding: 0;
    }

    /* Top Blend Overlay so that transparent headers integrate seamlessly */
    .hero-top-blend-gradient {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 140px;
        background: linear-gradient(180deg, rgba(2, 15, 8, 0.9) 0%, rgba(2, 15, 8, 0) 100%);
        z-index: 4;
        pointer-events: none;
    }

    /* CAROUSEL CONTROLLER SETUP */
    #heroCarousel {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }

    /* PREMIUM OVERLAY LAYER */
    .carousel-premium-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(2, 15, 8, 0.2) 0%, rgba(2, 15, 8, 0.5) 75%, #020F08 100%);
        pointer-events: none;
        z-index: 2;
    }

    /* SYSTEM CORE IMAGES RATIOS CONFIGURATION */
    .hero-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        background: #020F08;
    }

    /* PREMIUM CAPTION TEXT OVERLAYS POSITIONS */
    .premium-caption {
        position: absolute;
        bottom: 12%;
        left: 8%;
        right: auto;
        z-index: 3;
        max-width: 650px;
        padding-bottom: 40px;
    }
    .caption-badge {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(212, 175, 55, 0.3);
        padding: 6px 16px;
        border-radius: 30px;
        color: #fff;
        font-size: 0.78rem;
        display: inline-block;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 600;
        backdrop-filter: blur(5px);
    }
    .small-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    .btn-premium-gold-sm {
        background: linear-gradient(135deg, #d4af37 0%, #aa841c 100%);
        color: #020F08 !important;
        font-size: 0.8rem;
        font-weight: 700;
        padding: 10px 24px;
        border-radius: 6px;
        text-decoration: none;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        display: inline-block;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    .btn-premium-gold-sm:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    }

    /* ==========================================================
       DYNAMIC LETTER-BY-LETTER KEYFRAME ENGINE (FIXED TIMING)
       ========================================================== */
    .animate-text-letters span {
        display: inline-block;
        opacity: 0;
        transform: scale(1.4) translateY(-15px);
        filter: blur(4px);
    }

    /* Triggers keyframes instantly when .active class is applied */
    .carousel-item.active .animate-text-letters span {
        animation: letterReveal 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    @keyframes letterReveal {
        0% {
            opacity: 0;
            transform: scale(1.4) translateY(-15px);
            filter: blur(4px);
        }
        100% {
            opacity: 1;
            transform: scale(1) translateY(0);
            filter: blur(0);
        }
    }

    /* Sequential letter delays using animation-delay */
    .carousel-item.active .animate-text-letters span:nth-child(1) { animation-delay: 0.1s; }
    .carousel-item.active .animate-text-letters span:nth-child(2) { animation-delay: 0.15s; }
    .carousel-item.active .animate-text-letters span:nth-child(3) { animation-delay: 0.2s; }
    .carousel-item.active .animate-text-letters span:nth-child(4) { animation-delay: 0.25s; }
    .carousel-item.active .animate-text-letters span:nth-child(5) { animation-delay: 0.3s; }
    .carousel-item.active .animate-text-letters span:nth-child(6) { animation-delay: 0.35s; }
    .carousel-item.active .animate-text-letters span:nth-child(7) { animation-delay: 0.4s; }
    .carousel-item.active .animate-text-letters span:nth-child(8) { animation-delay: 0.45s; }
    .carousel-item.active .animate-text-letters span:nth-child(9) { animation-delay: 0.5s; }
    .carousel-item.active .animate-text-letters span:nth-child(10) { animation-delay: 0.55s; }
    .carousel-item.active .animate-text-letters span:nth-child(11) { animation-delay: 0.6s; }
    .carousel-item.active .animate-text-letters span:nth-child(12) { animation-delay: 0.65s; }
    .carousel-item.active .animate-text-letters span:nth-child(13) { animation-delay: 0.7s; }
    .carousel-item.active .animate-text-letters span:nth-child(14) { animation-delay: 0.75s; }
    .carousel-item.active .animate-text-letters span:nth-child(15) { animation-delay: 0.8s; }

    /* Delays override engine for nested .text-gold children */
    .carousel-item.active .animate-text-letters .text-gold span:nth-child(1) { animation-delay: 0.65s; }
    .carousel-item.active .animate-text-letters .text-gold span:nth-child(2) { animation-delay: 0.7s; }
    .carousel-item.active .animate-text-letters .text-gold span:nth-child(3) { animation-delay: 0.75s; }
    .carousel-item.active .animate-text-letters .text-gold span:nth-child(4) { animation-delay: 0.8s; }
    .carousel-item.active .animate-text-letters .text-gold span:nth-child(5) { animation-delay: 0.85s; }
    .carousel-item.active .animate-text-letters .text-gold span:nth-child(6) { animation-delay: 0.9s; }
    .carousel-item.active .animate-text-letters .text-gold span:nth-child(7) { animation-delay: 0.95s; }
    .carousel-item.active .animate-text-letters .text-gold span:nth-child(8) { animation-delay: 1.0s; }
    .carousel-item.active .animate-text-letters .text-gold span:nth-child(9) { animation-delay: 1.05s; }
    .carousel-item.active .animate-text-letters .text-gold span:nth-child(10) { animation-delay: 1.1s; }

    /* --- DESKTOP RENDER VIEW --- */
    @media(min-width: 1200px) {
        .hero-img {
            aspect-ratio: 16/6.8;
            object-fit: cover;
        }
    }

    /* --- LAPTOP RENDER VIEW --- */
    @media(max-width: 1199px) {
        .hero-img {
            aspect-ratio: 16/7.5;
            object-fit: cover;
        }
        .premium-caption {
            bottom: 10%;
            left: 6%;
        }
    }

    /* --- TABLET RENDER VIEW --- */
    @media(max-width: 991px) {
        .hero-img {
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .premium-caption {
            bottom: 12%;
            max-width: 80%;
        }
        .premium-caption h1 {
            font-size: 2rem !important;
        }
    }

    /* --- MOBILE RESPONSIVE ENGINE (ZERO CUT ENGINE) --- */
    @media(max-width: 768px) {
        .hero-slider {
            background: #020F08;
        }
        .hero-img {
            width: 100%;
            height: auto;
            object-fit: contain;
            aspect-ratio: auto;
            background: #020F08;
        }
        .carousel-item {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #020F08;
            position: relative;
        }
        .premium-caption {
            bottom: 5% !important;
            left: 4% !important;
            width: 92%;
            padding-bottom: 10px;
        }
        .premium-caption h1 {
            font-size: 1.35rem !important;
        }
        .caption-badge {
            padding: 4px 10px;
            font-size: 0.65rem;
        }
        .btn-premium-gold-sm {
            padding: 6px 16px;
            font-size: 0.7rem;
        }
    }

    /* GLASSMORPHIC SLIDER NAVIGATION CONTROLS */
    .premium-control-btn {
        width: 7%;
        z-index: 5;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .hero-slider:hover .premium-control-btn {
        opacity: 1;
    }
    .control-glass-circle {
        width: 46px; height: 46px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(12px);
        display: flex; align-items: center; justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .premium-control-btn:hover .control-glass-circle {
        background: var(--accent-gold, #d4af37);
        border-color: var(--accent-gold, #d4af37);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        transform: scale(1.08);
    }
    .premium-control-btn:hover .control-glass-circle i {
        color: #020F08 !important;
    }

    /* PREMIUM INDICATORS DASHES STYLE */
    .premium-indicators button {
        width: 28px !important;
        height: 3px !important;
        background-color: rgba(255, 255, 255, 0.3) !important;
        border: none !important;
        border-radius: 2px;
        transition: all 0.3s ease !important;
    }
    .premium-indicators button.active {
        width: 45px !important;
        background-color: var(--accent-gold, #d4af37) !important;
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    }

    /* --- LOWER BENTO STATS HUB BAR COUPLING --- */
    .hero-bento-stats-bar {
        margin-top: -40px;
        z-index: 10;
        padding-bottom: 20px;
    }
    .bento-mini-stat-card {
        background: rgba(4, 31, 18, 0.85);
        border: 1px solid rgba(212, 175, 55, 0.2);
        backdrop-filter: blur(15px);
        border-radius: 16px;
        padding: 22px 25px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .bento-mini-stat-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-gold, #d4af37);
        background: rgba(5, 34, 20, 0.95);
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
    }
    .stat-icon-wrapper {
        width: 44px; height: 44px;
        border-radius: 12px;
        background: rgba(212, 175, 55, 0.08);
        border: 1px solid rgba(212, 175, 55, 0.2);
        display: flex; align-items: center; justify-content: center;
    }
    .style-zIndex { z-index: 6; }

    @media(max-width: 991px) {
        .premium-control-btn {
            opacity: 1 !important;
            width: 10%;
        }
        .control-glass-circle {
            width: 38px; height: 38px;
        }
    }
       


        /* --- ABOUT US STYLES --- */
        .about-corporate-section {
            background-color: var(--white);
            z-index: 1;
        }

        /* Organic Background Shapes */
        .organic-blur-decor {
            position: absolute;
            top: 20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            filter: blur(80px);
            z-index: 1;
            pointer-events: none;
        }

        /* Asymmetric Layout Frame Containers */
        .about-matrix-container {
            width: 100%;
            max-width: 500px;
            height: 520px;
            margin: 0 auto;
        }

        /* Decorative Gold Shadow Back Panel */
        .matrix-gold-backdrop {
            position: absolute;
            top: 40px;
            left: -20px;
            width: 70%;
            height: 80%;
            border: 2px solid var(--accent-gold);
            border-radius: 24px;
            z-index: 0;
            pointer-events: none;
        }

        /* Core Global Image Frame Zoom Transition Triggers */
        .image-hover-zoom {
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            transition: var(--transition-smooth);
        }

        .image-hover-zoom img {
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .image-hover-zoom:hover img {
            transform: scale(1.08);
        }

        /* Primary Image Frame Setup */
        .matrix-main-frame {
            position: absolute;
            top: 0;
            right: 0;
            width: 85%;
            height: 75%;
            border-radius: 24px;
            z-index: 2;
            border: 4px solid var(--white);
        }

        /* Secondary Interlocking Sub-Frame setup */
        .matrix-secondary-frame {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 55%;
            height: 48%;
            border-radius: 20px;
            z-index: 3;
            border: 4px solid var(--white);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18) !important;
        }

        /* Micro Glassmorphism Floating Experience Badge Overlay */
        .matrix-experience-badge {
            position: absolute;
            bottom: 12%;
            right: -5%;
            width: 140px;
            height: 140px;
            background: rgba(7, 46, 27, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--accent-gold);
            border-radius: 50%;
            z-index: 4;
            padding: 6px;
            box-shadow: 0 12px 30px rgba(7, 46, 27, 0.3);
            animation: floatingElement 5s ease-in-out infinite;
        }

        .badge-inner-glass {
            border: 1px dashed rgba(212, 175, 55, 0.4);
            border-radius: 50%;
        }

        .sub-letter-spacing {
            font-size: 0.65rem;
            letter-spacing: 1.2px;
            font-weight: 600;
            line-height: 1.3;
        }

        /* Feature Row Micro Elements */
        .feature-icon-wrapper {
            width: 48px;
            height: 48px;
            background-color: rgba(10, 92, 54, 0.06);
            border-radius: 12px;
            border: 1px solid rgba(10, 92, 54, 0.1);
            transition: var(--transition-smooth);
        }

        .about-feature-box:hover .feature-icon-wrapper {
            background-color: var(--primary-dark);
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 20px rgba(7, 46, 27, 0.15);
        }

        .about-feature-box:hover .feature-icon-wrapper i {
            color: var(--accent-gold) !important;
        }

        .text-size-md {
            font-size: 1.05rem;
        }

        .leading-sm {
            line-height: 1.2;
        }

        /* Tablet Responsive Shifts for About Matrix Container */
        @media (max-width: 991.98px) {
            .about-matrix-container {
                height: 440px;
                max-width: 420px;
                margin-bottom: 30px;
            }

            .matrix-experience-badge {
                right: 0;
                bottom: 8%;
                width: 125px;
                height: 125px;
            }
        }

        @media (max-width: 575.98px) {
            .about-matrix-container {
                height: 320px;
                max-width: 100%;
            }

            .matrix-main-frame {
                width: 100%;
                height: 100%;
            }

            .matrix-gold-backdrop {
                display: none;
            }
        }


        /* --- PRODUCTS GRID MAIN STYLES --- */
        .products-ecosystem-section {
            background-color: #F8FAF9;
            z-index: 1;
        }

        /* Abstract Glow Blurs background */
        .product-glow-decor-1 {
            position: absolute;
            top: -10%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(3, 94, 51, 0.2) 0%, transparent 70%);
            filter: blur(60px);
            z-index: 1;
            pointer-events: none;
        }

        .product-glow-decor-2 {
            position: absolute;
            bottom: 0;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
            filter: blur(60px);
            z-index: 1;
            pointer-events: none;
        }

        /* Bento Cards Standard Architecture */
        .bento-card {
            box-shadow: 0 15px 35px rgba(7, 46, 27, 0.06);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 2;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .bento-img-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: #041F12;
        }

        .bento-img-overlay::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(4, 31, 18, 0.2) 0%, rgba(4, 31, 18, 0.85) 75%, #041f12 100%);
            z-index: 2;
            transition: all 0.5s ease;
        }

        .transition-transform-long {
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .bento-content-absolute {
            position: relative;
            z-index: 3;
        }

        /* Hover Mechanics on Bento Framework */
        .bento-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(4, 31, 18, 0.18);
        }

        .bento-card:hover .transition-transform-long {
            transform: scale(1.06);
        }

        .bento-card:hover .bento-img-overlay::after {
            background: linear-gradient(to bottom, rgba(4, 31, 18, 0.1) 0%, rgba(4, 31, 18, 0.9) 65%, #041f12 100%);
        }

        /* Badge and Tags Typo Framework */
        .bento-badge-gold {
            background: linear-gradient(135deg, #E6C655 0%, var(--accent-gold) 100%);
            color: var(--primary-dark);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 5px 14px;
            border-radius: 50px;
            text-transform: uppercase;
        }

        .bento-badge-emerald {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(5px);
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 5px 14px;
            border-radius: 50px;
            text-transform: uppercase;
        }

        .bento-price-tag {
            font-size: 0.85rem;
            font-weight: 600;
            color: #E6C655;
            background: rgba(0, 0, 0, 0.4);
            padding: 4px 12px;
            border-radius: 6px;
            border-left: 2px solid var(--accent-gold);
        }

        .rgba-white-text {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
        }

        .bento-micro-spec {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Bio Fertilizer Special Square Block Items */
        .bento-organic-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.05;
            pointer-events: none;
            background-image: radial-gradient(var(--accent-gold) 1.5px, transparent 1.5px);
            background-size: 15px 15px;
            z-index: 1;
        }

        .bento-icon-box {
            width: 45px;
            height: 45px;
            background: rgba(212, 175, 55, 0.12);
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-radius: 10px;
        }

        /* Arrow Movement Micro Animations */
        .bento-link-arrow {
            transition: var(--transition-smooth);
        }

        .bento-link-arrow:hover {
            color: var(--white) !important;
        }

        .bento-link-arrow:hover .transition-arrow {
            transform: translateX(5px);
            color: var(--accent-gold);
        }

        .transition-arrow {
            transition: transform 0.3s ease;
        }

        .fs-8 {
            font-size: 0.8rem !important;
        }

        .fs-7 {
            font-size: 0.88rem !important;
        }

        /* Responsive Scaling for Bento Layouts */
        @media (max-width: 767.98px) {
            .bento-card-lg {
                min-height: 480px;
            }

            .bento-content-absolute {
                padding: 4px !important;
            }
        }

        /* --- MAIN SECTION CONFIGURATION --- */
        .why-choose-us-section {
            background: linear-gradient(135deg, #041A0E 0%, #08331E 50%, #03140B 100%);
            z-index: 1;
        }

        /* Fluid Liquid Glow Decorator Elements */
        .matrix-glow-emerald {
            position: absolute;
            top: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(10, 92, 54, 0.35) 0%, transparent 70%);
            filter: blur(80px);
            pointer-events: none;
            z-index: 1;
        }

        .matrix-glow-gold {
            position: absolute;
            bottom: -20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, transparent 70%);
            filter: blur(70px);
            pointer-events: none;
            z-index: 1;
        }

        /* Technical Bento Checklist Feature Cards */
        .matrix-feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .matrix-icon-glow {
            width: 50px;
            height: 50px;
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
        }

        /* Feature Cards Hover Mechanics */
        .matrix-feature-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }

        .matrix-feature-card:hover .matrix-icon-glow {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            box-shadow: 0 0 15px var(--accent-gold-glow);
        }

        .matrix-feature-card:hover .matrix-icon-glow i {
            color: var(--primary-dark) !important;
        }

        /* Right Side Complex Stat Glass Panel Layout */
        .matrix-stat-panel {
            background: linear-gradient(180deg, rgba(10, 92, 54, 0.4) 0%, rgba(4, 31, 18, 0.6) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
        }

        .stat-panel-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.02;
            pointer-events: none;
            background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
            background-size: 20px 20px;
            z-index: 1;
        }

        /* Spin Slow Animation utility */
        .animate-spin-slow {
            animation: spinClockwise 12s linear infinite;
        }

        .tracking-wider {
            letter-spacing: 0.8px;
        }

            /* --- CORE CONFIGURATION SETUP --- */
        .contact-premium-section {
            background-color: #F3F6F5;
            z-index: 1;
        }

        /* Abstract Subtle Backlit Ambient Light Maps */
        .contact-glow-1 {
            position: absolute;
            top: -15%; left: -10%; width: 550px; height: 550px;
            background: radial-gradient(circle, rgba(10, 92, 54, 0.05) 0%, transparent 70%);
            filter: blur(70px); pointer-events: none; z-index: 1;
        }
        .contact-glow-2 {
            position: absolute;
            bottom: -15%; right: -10%; width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            filter: blur(65px); pointer-events: none; z-index: 1;
        }

        /* Left Side Detail Corporate Block Card */
        .contact-info-panel {
            box-shadow: 0 20px 45px rgba(4, 31, 18, 0.04);
            border: 1px solid rgba(0,0,0,0.03);
        }
        .vector-icon-box {
            width: 44px; height: 44px; min-width: 44px;
            background: rgba(212, 175, 55, 0.06);
            border: 1px solid rgba(212, 175, 55, 0.18);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem;
        }
        .contact-social-btn {
            width: 38px; height: 38px;
            border-radius: 8px; background: #f0f4f2;
            color: #3d5247; display: flex; align-items: center; justify-content: center;
            text-decoration: none; font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .contact-social-btn:hover {
            background: var(--primary-emerald); color: var(--white);
            transform: translateY(-3px);
        }
        .contact-social-btn.contact-social-wa:hover {
            background: #25D366; border-color: #25D366;
        }

        /* Right Side Liquid Metallic Emerald Form Canvas */
        .contact-form-panel {
            background: linear-gradient(145deg, #041f12 0%, #06301c 100%);
            border: 1px solid rgba(212,175,55,0.15);
            box-shadow: 0 30px 60px rgba(4, 31, 18, 0.25);
        }

        /* Premium Form Floating Mechanics & Input Architectures */
        .premium-input-group {
            margin-bottom: 4px;
        }
        .premium-label {
            display: block; font-size: 0.78rem; font-weight: 600;
            color: rgba(255,255,255,0.6); text-transform: uppercase;
            letter-spacing: 0.5px; margin-bottom: 6px;
        }
        .premium-control {
            width: 100%; padding: 13px 16px 13px 42px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px; color: var(--white);
            font-size: 0.88rem; font-weight: 400;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .premium-control::placeholder {
            color: rgba(255,255,255,0.6);
        }
        .text-area-control {
            padding-left: 42px; resize: none;
        }
        .input-icon {
            position: absolute; left: 16px; top: 50%;
            transform: translateY(-50%); color: rgba(255,255,255,0.35);
            font-size: 0.95rem; transition: var(--transition-smooth);
            pointer-events: none;
        }

        /* Customizing Native Dropdowns Inside Dark Themes */
        .premium-select option {
            background-color: #041f12; color: #ffffff;
        }

        /* Interactive Dynamic Focus Multipliers */
        .premium-control:focus {
            background: rgba(255, 255, 255, 0.07);
            border-color: var(--accent-gold); outline: none;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.12);
        }
        .premium-control:focus + .input-icon,
        .premium-control:focus ~ .position-relative .input-icon {
            color: var(--accent-gold);
        }

        /* Responsive Breakpoints Utility Adjustments */
        @media (max-width: 575.98px) {
            .contact-info-panel, .contact-form-panel { padding: 1.75rem !important; }
        }
        .hero-badge{ text-align: center;border-radius: 20px;}


        .premium-gallery-section {
        background-color: #f4f7f1;
        z-index: 1;
    }
    .gallery-glow-1 { position: absolute; top: -10%; left: -5%; width: 450px; height: 450px; background: radial-gradient(circle, rgba(10,92,54,0.03) 0%, transparent 70%); filter: blur(60px); pointer-events: none; }
    .gallery-glow-2 { position: absolute; bottom: -10%; right: -5%; width: 450px; height: 450px; background: radial-gradient(circle, rgba(212,175,55,0.03) 0%, transparent 70%); filter: blur(60px); pointer-events: none; }

    /* Filter Nav Tabs Engine UI */
    .gallery-nav-tabs {
        border: 1px solid rgba(0,0,0,0.05);
        background: #fff;
    }
    .gallery-tab-btn {
        background: transparent; border: none; outline: none !important;
        padding: 8px 22px; font-size: 0.88rem; font-weight: 600;
        color: var(--text-dark); border-radius: 6px;
        transition: var(--transition-smooth);
    }
    .gallery-tab-btn.active, .gallery-tab-btn:hover {
        background: var(--primary-dark);
        color: var(--white) !important;
    }

    /* Media Cards Visual Core layouts */
    .gallery-media-card {
        height: 250px;
        background: #020F08;
        box-shadow: 0 10px 30px rgba(4,31,18,0.05);
        border: 1px solid rgba(0,0,0,0.02);
    }
    .gallery-card-overlay {
        position: absolute; inset: 0; background: rgba(7,46,27,0.4);
        display: flex; align-items: center; justify-content: center;
        opacity: 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 2;
    }
    .video-overlay-dark { opacity: 1; background: rgba(2,15,8,0.25); }
    
    .gallery-media-card:hover .gallery-card-overlay {
        opacity: 1; background: rgba(7,46,27,0.7);
    }
    .gallery-media-card:hover img { transform: scale(1.06); }
    .gallery-media-card img { transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }

    /* Action Elements Inside Cards */
    .overlay-icon {
        color: #fff; font-size: 1.5rem;
        transform: translateY(10px); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .gallery-media-card:hover .overlay-icon { transform: translateY(0); }
    .video-play-pulse { transform: none !important; }

    .badge-type {
        position: absolute; bottom: 15px; left: 15px;
        background: rgba(255,255,255,0.9); color: var(--primary-dark);
        font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
        padding: 4px 10px; border-radius: 4px; text-transform: uppercase;
    }
    .badge-type.type-video {
        background: var(--accent-gold); color: var(--primary-dark);
    }

    /* Swiper Sleek Button Controls Configuration */
    .slider-control-container .gallery-swiper-prev,
    .slider-control-container .gallery-swiper-next {
        width: 40px; height: 40px; border-radius: 50%;
        background: #fff; border: 1px solid rgba(0,0,0,0.06);
        color: var(--primary-dark); box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        transition: var(--transition-smooth);
    }
    .slider-control-container .gallery-swiper-prev::after,
    .slider-control-container .gallery-swiper-next::after { display: none; }
    .slider-control-container .gallery-swiper-prev:hover,
    .slider-control-container .gallery-swiper-next:hover {
        background: var(--accent-gold); border-color: var(--accent-gold);
        color: var(--primary-dark);
    }
    .slider-control-container .gallery-swiper-prev { left: -15px; }
    .slider-control-container .gallery-swiper-next { right: -15px; }

    @media(max-width: 991px) {
        .slider-control-container .gallery-swiper-prev, .slider-control-container .gallery-swiper-next { display: none !important; }
        .gallery-media-card { height: 220px; }
    }


       /* --- MAIN FOOTER ARCHITECTURE --- */
        .premium-corporate-footer {
            background: linear-gradient(180deg, #020F08 0%, #041F12 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.15);
            z-index: 1;
        }

        /* Abstract Glow Subtle Elements inside dark theme */
        .footer-matrix-glow {
            position: absolute;
            bottom: -15%; left: 30%; width: 500px; height: 350px;
            background: radial-gradient(circle, rgba(10, 92, 54, 0.25) 0%, transparent 70%);
            filter: blur(65px); pointer-events: none; z-index: 1;
        }

        /* Typography Heading & Alignment Parameters */
        .footer-heading {
            font-size: 0.85rem;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 8px;
        }
        .footer-heading::after {
            content: ''; position: absolute; left: 0; bottom: 0;
            width: 30px; height: 1.5px; background-color: var(--accent-gold);
        }

        /* ISO and Certification Badge Blocks */
        .cert-badge-box {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 6px 12px; border-radius: 6px;
        }

        /* Functional Links Interactivity Lists */
        .footer-links-list li {
            margin-bottom: 12px;
        }
        .footer-links-list li a {
            font-size: 0.85rem; color: rgba(255, 255, 255, 0.6);
            text-decoration: none; display: inline-flex; align-items: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .link-dot {
            font-size: 0.55rem; color: var(--accent-gold); opacity: 0;
            width: 0; margin-right: 0; transition: all 0.3s ease;
        }
        
        /* Links Interactive Hover States */
        .footer-links-list li a:hover {
            color: var(--accent-gold) !important;
            transform: translateX(4px);
        }
        .footer-links-list li a:hover .link-dot {
            opacity: 1; width: 10px; margin-right: 6px;
        }

        /* Contact Vector System Configuration */
        .footer-vector-circle {
            width: 26px; height: 26px; border-radius: 50%;
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.2);
            display: inline-flex; align-items: center; justify-content: center;
        }
        .footer-contact-vectors a:hover {
            color: var(--white) !important;
        }

        /* Legal Base Bar Sub-elements */
        .footer-bottom-legal-bar {
            border-color: rgba(255, 255, 255, 0.06) !important;
        }
        .footer-legal-link:hover {
            color: var(--accent-gold) !important;
        }

        .me-2\.5 { margin-right: 0.65rem !important; }
        .tracking-widest { letter-spacing: 2px !important; }

        /* Dynamic Input Override elements */
        .footer-mini-newsletter input:focus {
            border-color: var(--accent-gold) !important;
        }
