/* ==================== Top Bar ==================== */
        .top-bar {
            background: var(--dark-color);
            padding: 12px 0;
            color: white;
            font-size: 13px;
        }
        
        .top-bar a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.3s;
        }
        
        .top-bar a:hover {
            color: var(--primary-color);
        }
        
        .top-bar i {
            margin-right: 8px;
            color: var(--primary-color);
        }
        
        /* ==================== Navigation ==================== */
        .main-navbar {
            background: #fff;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0;
        }
        
        .logo {
            font-size: 18px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            padding: 15px 0;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
        }
        
        .logo img {
            height: 40px;
            width: auto;
            display: block;
        }
        
        .logo i {
            font-size: 24px;
            color: white;
        }
        
        .logo span {
            color: white;
        }
        
        .nav-menu {
            display: flex;
            align-items: stretch;
            list-style: none;
            margin: 0;
            padding: 0;
            height: 100%;
        }
        
        .nav-menu li {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .nav-menu a {
            color: #000;
            text-decoration: none;
            padding: 30px 20px;
            font-weight: 500;
            font-size: 14px;
            text-transform: capitalize;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }
        
        .nav-menu a:hover,
        .nav-menu a.active {
            color: #5b9a3c;
        }
        
        /* Dropdown Menu */
        .nav-menu li.has-dropdown > a::before {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 8px;
            font-size: 11px;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            list-style: none;
            padding: 10px 0;
            margin: 0;
            border-top: 3px solid var(--primary-color);
        }
        
        .nav-menu li.has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu li {
            display: block;
        }
        
        .dropdown-menu a {
            padding: 12px 25px;
            font-size: 13px;
            text-transform: none;
            letter-spacing: 0;
            display: block;
            border-left: 3px solid transparent;
            color: var(--text-dark) !important;
        }
        
        .dropdown-menu a::after {
            display: none;
        }
        
        .dropdown-menu a:hover {
            background: var(--light-bg);
            border-left-color: var(--primary-color);
            padding-left: 30px;
        }
        
        /* Navigation Actions (USD & Login) */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0;
        }
        
        .currency-dropdown {
            position: relative;
        }
        
        .currency-btn {
            background: #2d5a1e;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            height: 100%;
        }
        
        .currency-btn:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        
        .currency-btn i {
            font-size: 10px;
        }
        
        .currency-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            list-style: none;
            padding: 10px 0;
            margin: 0;
            border-top: 3px solid var(--primary-color);
        }
        
        .currency-dropdown:hover .currency-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .currency-menu li {
            display: block;
        }
        
        .currency-menu a {
            padding: 12px 20px;
            font-size: 14px;
            color: var(--text-dark);
            text-decoration: none;
            display: block;
            transition: all 0.3s;
        }
        
        .currency-menu a:hover {
            background: var(--light-bg);
            color: var(--primary-color);
            padding-left: 25px;
        }
        
        .btn-login {
            background: var(--yellow-accent);
            color: #1a1a1a;
            padding: 12px 35px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            height: 100%;
        }
        
        .btn-login:hover {
            background: var(--accent-color);
            color: white;
        }
        
        /* Hide mobile actions on desktop */
        .mobile-nav-actions {
            display: none;
        }
        
        /* Nav Menu Wrapper - for mobile */
        .nav-menu-wrapper {
            display: contents;
        }
        
        /* Mobile Toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #2d5a1e;
            cursor: pointer;
            padding: 10px;
        }
         
        /* Mobile Menu Styles */
        @media (max-width: 991px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-actions {
                display: none;
            }
            
            .nav-menu-wrapper {
                position: fixed;
                top: 0;
                left: -100%;
                width: 320px;
                max-width: 85vw;
                height: 100vh;
                background: #2d5a1e;
                box-shadow: 5px 0 25px rgba(0,0,0,0.5);
                transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                overflow-y: auto;
                z-index: 9999;
                display: block;
            }
            
            .nav-menu-wrapper.active {
                left: 0;
            }
            
            .nav-menu {
                flex-direction: column;
                align-items: flex-start;
                padding: 80px 0 0;
                width: 100%;
                height: auto;
            }
            
            .nav-menu li {
                width: 100%;
            }
            
            .nav-menu a {
                width: 100%;
                padding: 15px 30px;
                color: rgba(255, 255, 255, 0.9);
            }
            
            .nav-menu a:hover {
                background: rgba(255, 255, 255, 0.1);
                color: var(--yellow-accent);
            }
            
            .nav-menu a::after {
                display: none;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(0, 0, 0, 0.2);
                display: none;
                border-top: none;
                border-left: 3px solid var(--yellow-accent);
                margin-left: 30px;
            }
            
            .dropdown-menu a {
                color: rgba(255, 255, 255, 0.8) !important;
            }
            
            .nav-menu li.has-dropdown.active .dropdown-menu {
                display: block;
            }
            
            .mobile-close {
                position: absolute;
                top: 20px;
                right: 20px;
                background: rgba(255, 255, 255, 0.1);
                border: none;
                font-size: 24px;
                color: white;
                cursor: pointer;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s;
            }
            
            .mobile-close:hover {
                background: rgba(255, 255, 255, 0.2);
                transform: rotate(90deg);
            }
            
            /* Show Mobile Nav Actions */
            .mobile-nav-actions {
                display: block;
                width: 100%;
                padding: 20px 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 20px;
            }
            
            .mobile-currency {
                width: 100%;
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
                color: white;
                padding: 12px 20px;
                font-size: 14px;
                margin-bottom: 15px;
                cursor: pointer;
                border-radius: 5px;
            }
            
            .mobile-login {
                width: 100%;
                background: var(--yellow-accent);
                color: #1a1a1a;
                padding: 12px 20px;
                font-size: 14px;
                font-weight: 600;
                text-decoration: none;
                display: block;
                text-align: center;
                border-radius: 5px;
                transition: all 0.3s;
            }
            
            .mobile-login:hover {
                background: var(--accent-color);
                color: white;
            }
        }