
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-yellow: #ffcc00;
            --accent-red: #00338b;
            --dark-blue: #00235b;
            --dark-bg: #2d3237;
            --nav-bg: #222222;
            --text-grey: #666;
            --light-grey: #f9f9f9;
            --white: #ffffff;
        }


        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Roboto', sans-serif; overflow-x: hidden; color: #333; background-color: #f4f4f4; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* --- TOP BAR & HEADER (Desktop) --- */
        .top-bar { background-color: var(--dark-bg); color: #ccc; padding: 10px 0; font-size: 13px; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .top-bar .container { display: flex; justify-content: space-between; align-items: center; }
        .top-info span { margin-right: 20px; }
        .top-info i { margin-right: 5px; color: #fff; }
        .top-social a { margin-left: 15px; color: #ccc; transition: 0.3s; }
        .top-social a:hover { color: var(--primary-yellow); }

        .main-header { background: var(--white); padding: 15px 0; transition: all 0.3s ease; border-bottom: 1px solid #eee; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo img { width: 240px; height: auto; }
        
        .header-features { display: flex; gap: 20px; }
        .feature-box { display: flex; align-items: center; font-size: 13px; color: #333; border-right: 1px solid #eee; padding-right: 20px; }
        .feature-box:last-child { border: none; }
        .feature-box i { color: #999; font-size: 18px; margin-right: 8px; }
        .feature-text strong { display: block; color: #444; font-weight: 700; }
        
        /* --- NAVBAR & STICKY LOGIC --- */
        .navbar { 
            background-color: var(--nav-bg); 
            height: 60px;
            position: relative; 
            z-index: 1000; 
            width: 100%;
            transition: all 0.3s ease;
        }

        .navbar.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            animation: slideDown 0.3s ease forwards;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .nav-container { 
            max-width: 1200px; 
            margin: 0 auto; 
            display: flex; 
            height: 100%; 
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
        }

        .mobile-logo { display: none; }
        .mobile-logo img { height: 40px; width: auto; }

        .nav-links { display: flex; height: 100%; align-items: center; }
        .nav-links li { height: 100%; position: relative; }
        .nav-links > li > a { 
            display: flex; 
            align-items: center; 
            height: 100%; 
            padding: 0 20px; 
            color: #fff; 
            font-size: 14px; 
            font-weight: 700; 
            font-family: 'Oswald', sans-serif; 
            text-transform: uppercase; 
            transition: 0.3s;
        }

        .nav-links > li.active > a, 
        .nav-links > li:hover > a { background-color: var(--primary-yellow); color: #222; }

        /* --- DROPDOWN (DESKTOP) --- */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            min-width: 250px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            z-index: 999;
            border-top: 3px solid var(--primary-yellow);
        }

        .nav-links li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li { height: auto; border-bottom: 1px solid #eee; width: 100%; }
        .dropdown-menu li a {
            color: #333;
            padding: 12px 20px;
            display: block;
            font-size: 13px;
            height: auto;
            font-weight: 500;
            text-transform: capitalize;
            font-family: 'Roboto', sans-serif;
        }
        .dropdown-menu li:hover a {
            background-color: #f9f9f9;
            color: var(--primary-yellow);
            padding-left: 25px;
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
        }

        /* --- PLACEHOLDER CONTENT AREA --- */
        .content-placeholder {
            min-height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Oswald', sans-serif;
            font-size: 30px;
            color: #ccc;
            background: #fff;
        }

        /* =========================================
           MODERN FOOTER
           ========================================= */
        .modern-footer {
            background-color: #111;
            color: #a0a0a0;
            padding-top: 80px;
            font-family: 'Roboto', sans-serif;
        }
        .footer-top-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid #222;
        }
        .f-widget h4 {
            font-family: 'Oswald', sans-serif;
            color: #fff;
            font-size: 20px;
            margin-bottom: 30px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 10px;
        }
        .f-widget h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-yellow);
        }
        .footer-logo-img {
            max-width: 280px;
            margin-bottom: 20px;
        }
        .f-about p { line-height: 1.8; margin-bottom: 25px; font-size: 14px; }
        .f-social a {
            display: inline-flex; justify-content: center; align-items: center;
            width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); color: #fff;
            border-radius: 50%; margin-right: 8px; transition: 0.3s; font-size: 14px;
        }
        .f-social a:hover { color: #ffcc00; transform: translateY(-3px); border-color: var(--primary-yellow); box-shadow: 0 10px 40px rgba(255, 204, 0, 0.744); }
        .f-links ul li { margin-bottom: 12px; border-bottom: 1px solid #1a1a1a; padding-bottom: 12px; }
        .f-links ul li:last-child { border: none; }
        .f-links ul li a { transition: 0.3s; font-size: 14px; display: flex; align-items: top; }
        .f-links ul li a i { margin-right: 10px; margin-top: 5px; font-size: 10px; color: var(--primary-yellow); }
        .f-links ul li a:hover { color: var(--primary-yellow); padding-left: 5px; }
        .f-contact li { display: flex; margin-bottom: 20px; }
        .f-contact i { color: var(--primary-yellow); font-size: 18px; margin-right: 15px; margin-top: 5px; }
        .f-contact span { font-size: 14px; line-height: 1.6; }
        .f-newsletter p { font-size: 14px; margin-bottom: 20px; }
        .newsletter-form { position: relative; }
        .newsletter-form input { width: 100%; padding: 15px; background: #222; border: none; color: #fff; font-size: 13px; border-radius: 4px; outline: none; }
        .newsletter-form button { position: absolute; right: 5px; top: 5px; height: calc(100% - 10px); background: var(--primary-yellow); color: #111; border: none; padding: 0 20px; border-radius: 4px; cursor: pointer; font-weight: 700; font-family: 'Oswald', sans-serif; transition: 0.3s; }
        .newsletter-form button:hover { background: #fff; }
        .footer-bottom-bar { padding: 25px 0; text-align: center; font-size: 15px; background-color: #0d0d0d; }
        .footer-bottom-bar a:hover{ color: #ffcc00;}

        /* =========================================
           RESPONSIVE MEDIA QUERIES
           ========================================= */
        @media screen and (max-width: 991px) {
            .top-bar, .main-header { display: none; } /* Hide Top & Main Header on Mobile */
            .mobile-logo, .menu-toggle { display: block; }
            .navbar { padding: 10px 0; height: auto; align-items: center; }
            .mobile-logo img{ width: 260px; height: auto;}
            .nav-links {
                position: fixed; top: 60px; left: -100%; width: 100%; height: calc(100vh - 60px);
                background-color: #222; flex-direction: column; align-items: flex-start;
                transition: left 0.4s ease; overflow-y: auto; padding-bottom: 50px; display: block;
            }
            .nav-links.active { left: 0; }
            .nav-links li { width: 100%; height: auto; display: block; border-bottom: 1px solid #333; }
            .nav-links > li > a { padding: 15px 20px; width: 100%; display: flex; justify-content: space-between; align-items: center; font-size: 16px; }
            
            .dropdown-menu {
                position: static; visibility: visible; opacity: 1; transform: none;
                background-color: #2d3237; display: none; width: 100%; box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
                padding: 0; border-top: none;
            }
            .dropdown-menu li { border-bottom: 1px solid #3a4046; padding-left: 20px; }
            .dropdown-menu li a { color: #ccc; font-size: 14px; padding: 12px 20px; }
            
            /* Class toggled by JS for mobile dropdown */
            li.dropdown-active .dropdown-menu { display: block; }
            li.dropdown-active > a { background-color: #333; color: var(--primary-yellow); }
            li.dropdown-active > a i { transform: rotate(180deg); transition: 0.3s; }
            
            .footer-top-grid { grid-template-columns: 1fr; gap: 40px; }
        }










        
    /* =========scroll & whatsapp btn======== */



/* --- WhatsApp Icon Styling --- */
.whatsapp-icon {
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    z-index: 1000; 
    transition: transform 0.3s ease;
    width: 46px; 
    height: 46px;
}

.whatsapp-icon img {
    width: 100%; 
    height: 100%;
    object-fit: contain;
    border-radius: 50%; 
}

.whatsapp-icon:hover {
    transform: scale(1.1); 
}

/* --- Scroll to Top Button Styling --- */
.scroll-to-top-btn {
    position: fixed;
    bottom: 80px; 
    right: 20px; 
    z-index: 999;
    background-color: #0d0d0d; 
    color: #ffcc00; 
    border: 1px solid #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 25px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s;
}

.scroll-to-top-btn.show {
    display: block;
    opacity: 1;
}

.scroll-to-top-btn:hover {
    background-color: #ffcc00;
    color: #0d0d0d;
}