 :root {
            --primary: #9ed059;
            --dark: #212122;
            --light: #d8d8d8;
            --transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--light);
            background-color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 0;
        }

        /* Override Bootstrap primary text color to theme primary */
        .text-primary {
            color: var(--primary) !important;
        }

        /* Custom Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark);
            border-radius: 10px;
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, var(--primary), #7fb83d);
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(158, 208, 89, 0.3);
            transition: all 0.3s ease;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(45deg, #7fb83d, var(--primary));
            box-shadow: 0 4px 15px rgba(158, 208, 89, 0.5);
            transform: scale(1.1);
        }

        ::-webkit-scrollbar-thumb:active {
            background: linear-gradient(45deg, #6fa030, #7fb83d);
        }

        /* Firefox Scrollbar */
        html {
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--dark);
        }

        /* Custom scrollbar for specific containers */
        .dropdown-menu::-webkit-scrollbar {
            width: 6px;
        }

        .dropdown-menu::-webkit-scrollbar-thumb {
            background: rgba(158, 208, 89, 0.6);
            border-radius: 6px;
        }

        .dropdown-menu::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.3;
        }

        .navbar-brand img {

            width: 40%;
        }
        .footer-logo img {
            width: 80%;
        }
        
        /* Video Background - Optimized for perfect visibility */
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -100;
            overflow: hidden;
            max-width: 100%;
        }
        
        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.85) contrast(1.3);
        }
        
        /* Content Wrapper - Ensures perfect text visibility */
        .content-wrapper {
            position: relative;
            background: linear-gradient(to bottom, 
                rgba(33, 33, 34, 0.75) 0%, 
                rgba(33, 33, 34, 0.7) 50%, 
                rgba(33, 33, 34, 0.8) 100%);
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }
        
        /* Text Enhancement */
        .text-enhanced {
            text-shadow: 0 2px 8px rgba(0,0,0,0.7);
        }
        
        /* Navigation - Premium Styling */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 10px 0;
            transition: var(--transition);
            background: rgba(33, 33, 34, 0.9);
            border-bottom: 1px solid rgba(158, 208, 89, 0.15);
            max-width: 100%;
            box-sizing: border-box;
            backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
        }
        
        .navbar.scrolled {
            padding: 8px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary) !important;
            letter-spacing: 2px;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }
        
        .nav-link {
            color: var(--light) !important;
            margin: 0 8px;
            font-weight: 600;
            position: relative;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            padding: 12px 16px !important;
            white-space: nowrap;
            text-align: center;
            min-width: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            border-radius: 6px;
        }

        .nav-link:hover {
            color: var(--primary) !important;
            background: rgba(158, 208, 89, 0.1);
            transform: translateY(-2px);
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }
        
        .nav-link:hover:after,
        .nav-link.active:after {
            width: 100%;
        }

        /* Navigation Items Spacing */
        .navbar-nav {
            align-items: center;
            gap: 4px;
        }

        .nav-item {
            position: relative;
        }
        
        .nav-item.dropdown {
            position: relative;
        }

        /* Dropdown Toggle Styling */
        .nav-link.dropdown-toggle::after {
            /* Hide Bootstrap's default dropdown arrow */
            display: none !important;
        }

        /* Add underline effect to dropdown toggle like other nav links */
        .nav-link.dropdown-toggle::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }

        .nav-link.dropdown-toggle:hover::before,
        .nav-item.dropdown.show .nav-link.dropdown-toggle::before {
            width: 100%;
        }

        /* Dropdown Menu Styling */
        .dropdown-menu {
            background: rgba(33, 33, 34, 0.95);
            border: 1px solid rgba(158, 208, 89, 0.2);
            border-radius: 8px;
            padding: 8px 0;
            margin-top: 8px;
            min-width: 180px;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1050;
            position: absolute;
            overflow: hidden;
            max-width: 250px;
        }

        /* Mobile dropdown - click-based */
        @media (max-width: 991px) {
            .dropdown-menu {
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                display: none !important;
                position: static;
                width: 100%;
                min-width: 100%;
                margin-top: 0;
                border-radius: 0;
                background: rgba(33, 33, 34, 0.98);
                border: none;
                border-top: 1px solid rgba(158, 208, 89, 0.2);
                box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
                padding: 0;
            }
            
            .nav-item.dropdown.show .dropdown-menu,
            .dropdown-menu.show {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateY(0) !important;
                display: block !important;
                animation: slideDown 0.3s ease-out;
            }
            
            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            /* Mobile navbar adjustments */
            .navbar-nav {
                gap: 2px;
            }
            
            .nav-link {
                padding: 10px 16px !important;
                margin: 2px 0;
            }
            
            /* Mobile dropdown items */
            .dropdown-item {
                padding: 12px 20px !important;
                margin: 0 !important;
                border-radius: 0 !important;
                border: none !important;
                background: transparent !important;
                font-size: 0.9rem !important;
                min-height: 48px !important;
                display: flex !important;
                align-items: center !important;
                border-bottom: 1px solid rgba(158, 208, 89, 0.1) !important;
            }
            
            .dropdown-item:last-child {
                border-bottom: none !important;
            }
            
            .dropdown-item:hover,
            .dropdown-item:focus {
                background: rgba(158, 208, 89, 0.15) !important;
                transform: none !important;
                box-shadow: none !important;
            }
            
            /* Mobile dropdown toggle arrow */
            /* .nav-link.dropdown-toggle::after {
                display: inline-block !important;
                margin-left: 8px;
                vertical-align: 0.255em;
                content: "";
                border-top: 0.3em solid;
                border-right: 0.3em solid transparent;
                border-bottom: 0;
                border-left: 0.3em solid transparent;
                transition: transform 0.3s ease;
            } */
            
            .nav-item.dropdown.show .nav-link.dropdown-toggle::after {
                transform: rotate(180deg);
            }
        }

        /* Hover-based dropdown for desktop */
        @media (min-width: 992px) {
            .dropdown-menu {
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                display: block !important;
                position: absolute;
                top: 100%;
                left: 0;
                z-index: 1000;
                transition: all 0.3s ease;
            }
            
            .nav-item.dropdown:hover .dropdown-menu,
            .nav-item.dropdown.show .dropdown-menu,
            .dropdown-menu:hover {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateY(0) !important;
                display: block !important;
            }
            
            /* Keep dropdown open when hovering over it */
            .nav-item.dropdown:hover .dropdown-menu {
                pointer-events: auto;
            }
            
            /* Ensure dropdown stays visible when moving mouse to it */
            .nav-item.dropdown {
                position: relative;
            }
            
            .nav-item.dropdown .dropdown-menu {
                margin-top: 0;
                top: calc(100% + 5px);
            }
            
            /* Add a small invisible bridge to prevent dropdown from closing */
            .nav-item.dropdown::after {
                content: '';
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                height: 10px;
                background: transparent;
                z-index: 999;
            }

            /* Better spacing for desktop navigation */
            .navbar-nav {
                gap: 8px;
            }

            .nav-link {
                margin: 0 4px;
                padding: 12px 20px !important;
                min-width: 100px;
            }

            /* Enhanced navbar brand for desktop */
            .navbar-brand img {
                width: 30%;
                transition: var(--transition);
            }

            /* Desktop dropdown items - contained hover effects */
            .dropdown-item {
                overflow: hidden;
                position: relative;
            }

            .dropdown-item:hover {
                transform: translateX(2px) !important;
                background: rgba(158, 208, 89, 0.12) !important;
                box-shadow: inset 3px 0 0 var(--primary), 0 2px 8px rgba(158, 208, 89, 0.1) !important;
            }
        }

        .dropdown-item {
            color: var(--light) !important;
            padding: 15px 20px;
            font-size: 0.95rem;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            background: transparent;
            white-space: nowrap;
            position: relative;
            border-radius: 6px;
            margin: 2px 8px;
            letter-spacing: 0.3px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
            backdrop-filter: blur(2px);
            border: 1px solid transparent;
            overflow: hidden;
            max-width: calc(100% - 16px);
            box-sizing: border-box;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(158, 208, 89, 0.1), transparent);
            transition: left 0.5s ease;
            z-index: -1;
        }

        .dropdown-item:hover {
            background: rgba(158, 208, 89, 0.15);
            color: var(--primary) !important;
            transform: translateX(4px);
            border-color: rgba(158, 208, 89, 0.3);
            box-shadow: 0 2px 8px rgba(158, 208, 89, 0.15);
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .dropdown-item:hover::before {
            left: 0;
        }

        .dropdown-item:focus {
            background: rgba(158, 208, 89, 0.12);
            color: var(--primary) !important;
            border-color: rgba(158, 208, 89, 0.25);
            box-shadow: 0 2px 10px rgba(158, 208, 89, 0.15);
            outline: none;
        }

        /* Language Dropdown Specific Styling */
        .dropdown-menu .dropdown-item[data-lang] {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 40px;
        }

        /* Language Dropdown End Alignment */
        .dropdown-menu-end {
            --bs-position: end;
        }

        @media (min-width: 992px) {
            .dropdown-menu-end {
                right: 0;
                left: auto;
            }
        }
        
        /* Hero Section - Premium Design */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 140px 0 80px;
        }
        
        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 25px;
            letter-spacing: 1.5px;
        }
        
        .hero p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 35px;
            max-width: 700px;
            opacity: 0.9;
        }
        
        /* Button Enhancements */
        .btn-primary-custom {
            background: var(--primary);
            color: var(--dark);
            padding: 14px 38px;
            font-weight: 700;
            letter-spacing: 1px;
            transition: var(--transition);
            border: 2px solid var(--primary);
            border-radius: 4px;
            text-transform: uppercase;
            font-size: 0.95rem;
        }
        
        .btn-primary-custom:hover {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 20px rgba(158, 208, 89, 0.3);
        }
        
        /* Desktop: equal side-by-side CTA buttons with max width */
        .cta-buttons {
            width: 100%;
            max-width: 520px;
        }
        .cta-buttons .btn {
            flex: 1 1 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            text-align: center;
            white-space: nowrap;
        }
        .cta-buttons .btn.btn-outline-light {
            padding: 14px 38px;
            border-width: 2px;
        }

        /* Reduce extra space between hero text and buttons */
        .hero p {
            margin-bottom: 1rem; /* tighten paragraph spacing */
        }
        .hero .cta-buttons {
            margin-top: 0.75rem !important; /* was mt-4 (~1.5rem), now ~12px */
        }
        
        /* Desktop: tighten button inner spacing (normal look) */
        @media (min-width: 992px) {
            .cta-buttons .btn {
                padding: 10px 20px; /* reduce left/right space */
                min-height: 42px;
            }
            .btn-primary-custom {
                padding: 10px 20px; /* override global 14px 38px on desktop */
            }
            .cta-buttons .btn.btn-outline-light {
                padding: 10px 20px; /* match primary on desktop */
            }
        }

        /* XS screens: keep CTA buttons side-by-side on ~360px */
        @media (max-width: 400px) {
            .cta-buttons {
                flex-wrap: nowrap !important; /* prevent stacking */
                gap: 8px !important;          /* smaller gap than gap-3 */
            }
            .cta-buttons .btn {
                padding: 8px 12px;            /* tighter to fit both */
                font-size: 0.95rem;           /* slightly smaller text */
                white-space: nowrap;          /* keep label on one line */
                flex: 1 1 auto;               /* allow equal shrink */
                min-width: 0;                 /* permit flex shrink on small screens */
            }
        }

        /* Trolley Animation - Premium Version */
        .trolley-animation-container {
            height: 140px;
            margin: 60px auto;
            position: relative;
            overflow: hidden;
            max-width: 800px;
        }
        
        .trolley-track {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(216, 216, 216, 0.2);
        }
        
        .trolley {
            width: 110px;
            height: 70px;
            background: var(--primary);
            border-radius: 10px;
            position: absolute;
            bottom: 0;
            left: -150px;
            animation: moveTrolley 12s infinite ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .trolley i {
            font-size: 1.8rem;
            color: var(--dark);
        }
        
        @keyframes moveTrolley {
            0% { left: -150px; transform: rotate(0deg); }
            20% { transform: rotate(3deg); }
            40% { transform: rotate(-2deg); }
            60% { transform: rotate(2deg); }
            80% { transform: rotate(-1deg); }
            100% { left: calc(100% + 150px); transform: rotate(0deg); }
        }
        
        /* Section Styling */
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 70px;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -18px;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        /* Feature Cards - Premium Design */
        .feature-card {
            background: rgba(216, 216, 216, 0.06);
            border: 1px solid rgba(216, 216, 216, 0.12);
            padding: 40px 30px;
            height: 100%;
            transition: var(--transition);
            backdrop-filter: blur(8px);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }
        
        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(158, 208, 89, 0.08) 0%, transparent 100%);
            z-index: -1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(0,0,0,0.25);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }
        
        .feature-card .btn {
            background: linear-gradient(135deg, var(--primary) 0%, #7fb83d 100%);
            border: none;
            color: var(--dark);
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 25px;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }
        
        .feature-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(158, 208, 89, 0.4);
            color: var(--dark);
        }
        
        .feature-card .btn i {
            transition: var(--transition);
        }
        
        .feature-card .btn:hover i {
            transform: scale(1.2);
        }
        
        /* Video Modal Styling */
        .modal-content {
            background: var(--dark);
            border: 1px solid rgba(216, 216, 216, 0.2);
            border-radius: 15px;
            overflow: hidden;
        }
        
        .modal-header {
            background: linear-gradient(135deg, var(--primary) 0%, #7fb83d 100%);
            color: var(--dark);
            border-bottom: none;
            padding: 20px 30px;
        }
        
        .modal-title {
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .btn-close {
            filter: invert(1);
            opacity: 0.8;
        }
        
        .btn-close:hover {
            opacity: 1;
        }
        
        .modal-body iframe {
            border-radius: 0 0 15px 15px;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 100px 0;
            background: rgba(33, 33, 34, 0.96);
        }
        
        .stat-item {
            text-align: center;
            padding: 30px;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
        }

        /* Lighter label before stats like "Up to" */
        .stat-number .upto {
            font-size: 1rem;
            font-weight: 600;
            color: var(--light);
            opacity: 0.9;
            margin-right: 8px;
            vertical-align: text-top;
            letter-spacing: 0.5px;
        }

    section#retailers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
        
        /* Demo Section */
        .demo-section {
            padding: 120px 0;
            position: relative;
        }
        
        .demo-container {
            height: 500px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(216, 216, 216, 0.15);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            position: relative;
        }
        
        .demo-screen {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(158, 208, 89, 0.1) 0%, 
                rgba(33, 33, 34, 0.8) 50%, 
                rgba(158, 208, 89, 0.1) 100%),
                radial-gradient(circle at center, 
                rgba(158, 208, 89, 0.2) 0%, 
                rgba(33, 33, 34, 0.9) 70%);
            transition: all 12s linear;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 1.5rem;
            text-align: center;
        }
        
        .demo-screen::before {
            content: '🛒 Smart Trolley Demo\A🔄 Interactive Shopping Experience\A📊 Real-time Analytics';
            white-space: pre-line;
            text-shadow: 0 2px 10px rgba(0,0,0,0.7);
            line-height: 1.8;
        }
        
        .demo-container:hover .demo-screen {
            background-position: bottom;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 120px 0;
            background: rgba(33, 33, 34, 0.95);
            position: relative;
        }
        
        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }
        
        .contact-form .form-control {
            background: rgba(216, 216, 216, 0.08);
            border: 1px solid rgba(216, 216, 216, 0.2);
            color: var(--light);
            padding: 14px;
            border-radius: 6px;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        /* invalid + valid state visuals */
        .contact-form .form-control.is-invalid {
            border-color: rgba(255, 70, 70, 0.6);
        }
        .contact-form .form-control.is-invalid:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 70, 70, 0.25);
        }
        .contact-form .form-control.is-valid {
            border-color: rgba(158, 208, 89, 0.6);
        }

        .contact-form .form-control:focus {
            background-color: rgba(216, 216, 216, 0.12);
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(158, 208, 89, 0.25);
            outline: none;
        }
        
        .contact-form .form-control::placeholder {
            color: rgba(216, 216, 216, 0.6);
            opacity: 1;
        }
        
        .contact-form .form-control:hover {
            border-color: rgba(158, 208, 89, 0.4);
            background-color: rgba(216, 216, 216, 0.1);
        }
        
        /* Select dropdown styling */
        .contact-form select.form-control {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ed059' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 12px center;
            background-repeat: no-repeat;
            background-size: 16px 12px;
            padding-right: 40px;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }
        /* keep arrow on hover and focus */
        .contact-form select.form-control:hover,
        .contact-form select.form-control:focus {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ed059' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px 12px;
            background-color: inherit;
        }
        /* hide default arrow in old IE/Edge */
        .contact-form select.form-control::-ms-expand {
            display: none;
        }
        
        .contact-form select.form-control option {
            background: var(--dark);
            color: var(--light);
            padding: 10px;
        }
        
        /* Footer - Premium Design */
        footer {
            padding: 80px 0 30px;
            background: rgba(33, 33, 34, 0.98);
            border-top: 1px solid rgba(216, 216, 216, 0.1);
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .footer-links h4:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: var(--transition);
            display: block;
            margin-bottom: 12px;
            opacity: 0.8;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            opacity: 1;
            padding-left: 5px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border: 1px solid rgba(216, 216, 216, 0.2);
            color: var(--light);
            border-radius: 50%;
            margin-right: 12px;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--primary);
            color: var(--dark);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(158, 208, 89, 0.3);
        }
        
        /* Contact Information Icons */
        .contact-section .fas {
            color: var(--primary);
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .contact-section .d-flex:hover .fas {
            transform: scale(1.1);
            filter: brightness(1.2);
        }
        
        /* Contact Section Text Enhancement */
        .contact-section h3 {
            color: var(--primary);
            margin-bottom: 2rem;
        }
        
        .contact-section p {
            color: var(--light);
            opacity: 0.9;
            transition: var(--transition);
        }
        
        .contact-section .d-flex:hover p {
            color: var(--primary);
            opacity: 1;
        }
        
        /* Contact Form Submit Button Enhancement */
        .contact-form .btn-primary-custom {
            width: 100%;
            padding: 16px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1.2px;
            margin-top: 10px;
        }
        
        .contact-form .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(158, 208, 89, 0.4);
        }
        
        .copyright {
            margin-top: 60px;
            padding-top: 25px;
            border-top: 1px solid rgba(216, 216, 216, 0.1);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1199.98px) {
            .section {
                padding: 90px 0;
            }
            
            .hero {
                padding: 100px 0 60px;
            }
        }
        
        @media (max-width: 991.98px) {
            .section {
                padding: 80px 0;
            }
            
            .navbar {
                padding: 0;
            }
            
            .navbar-toggler {
                margin-left: auto;
                margin-right: 0;
            }
            
            .hero {
                text-align: center;
                padding: 120px 0 70px; /* add space on tablet */
            }

            /* Tablet: equal side-by-side CTA buttons */
            .cta-buttons {
                width: 100%;
            }
            .cta-buttons .btn {
                flex: 1 1 calc(50% - 8px);
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-height: 46px;
                text-align: center;
            }
            .cta-buttons .btn.btn-outline-light {
                padding: 12px 30px;
                border-width: 2px;
            }
            
            .hero p {
                margin-left: auto;
                margin-right: auto;
            }
        }
        
       
        
        @media (max-width: 767.98px) {

            .nav-link.dropdown-toggle::before {
                display: none;
            }
            .section {
                padding: 70px 0;
            }
            
            .section-title {
                margin-bottom: 50px;
            }
            
            .navbar-brand {
                font-size: 1.6rem;
            }
            
            .navbar-brand img {
                width: 60%;
                margin-left: 0;
            }
            
            .d-flex.align-items-center {
                width: 50%;
                justify-content: space-between;
            }
            
            /* .navbar-toggler {
                margin-right: 0;
                padding-right: 0;
            } */
            
            .container {
                padding-left: 15px;
                padding-right: 15px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                overflow-x: hidden;
            }
            
            .trolley-animation-container {
                height: 100px;
                margin: 40px auto;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            /* Move hero a bit down on mobile so text is visible */
            .hero {
                padding: 130px 0 70px;
            }
            
            .btn-primary-custom {
                padding: 12px 30px;
            }
            
            /* Mobile: make hero CTA buttons same width and side-by-side */
            .cta-buttons {
                width: 100%;
            }
            .cta-buttons .btn {
                flex: 1 1 calc(50% - 8px); /* two equal buttons with gap-3 (~1rem) */
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-height: 44px; /* tap target */
                text-align: center;
                white-space: nowrap;
            }
            /* Ensure outline button matches height/size */
            .cta-buttons .btn.btn-outline-light {
                padding: 12px 30px; /* match primary */
                border-width: 2px;
            }
            /* On very small screens, keep them on one row by reducing gap */
            @media (max-width: 380px) {
                .cta-buttons {
                    gap: .5rem !important;
                }
                .cta-buttons .btn {
                    flex: 1 1 calc(50% - 4px);
                }
                .hero {
                padding: 100px 0 70px;
            }
            }
            
            .stat-number {
                font-size: 2.4rem;
            }
            
            .navbar-brand img {
                width: 80%;
                margin-left: 0;
            }
            
            .navbar-toggler {
                padding: 4px 8px;
                margin-right: 0;
                margin-left: auto;
            }
            
            .container {
                padding-left: 10px;
                padding-right: 10px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                overflow: hidden;
            }
            
            .navbar-collapse {
                margin-top: 10px;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
        }

        /* Language Dropdown Styling */
        .dropdown-item[data-lang] {
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .dropdown-item[data-lang]:hover {
            background-color: rgba(158, 208, 89, 0.15) !important;
            color: var(--primary) !important;
            padding-left: 25px;
        }

        .dropdown-item[data-lang].active {
            background-color: rgba(158, 208, 89, 0.2) !important;
            color: var(--primary) !important;
            font-weight: 600;
        }

        .dropdown-item[data-lang].active::after {
            content: '✓';
            font-weight: bold;
            color: var(--primary);
        }

        /* FINAL Translation Loading Animation */
        #final-translate-loading {
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            transition: opacity 0.5s ease;
        }

        #final-translate-loading .spinner-border {
            border-color: #28a745;
            border-right-color: transparent;
            animation: spin 1.3s linear infinite;
            border-width: 4px;
        }

        #final-translate-progress {
            color: var(--primary) !important;
            font-weight: 900;
            font-size: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.4);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 2px 4px rgba(0,0,0,0.4), 0 0 10px rgba(158, 208, 89, 0.3); }
            to { text-shadow: 0 2px 4px rgba(0,0,0,0.4), 0 0 20px rgba(158, 208, 89, 0.6); }
        }

        /* FORCE Translation Loading Animation */
        #force-translate-loading {
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: opacity 0.5s ease;
        }

        #force-translate-loading .spinner-border {
            border-color: #ff4444;
            border-right-color: transparent;
            animation: spin 1.5s linear infinite;
            border-width: 5px;
        }

        #force-translate-progress {
            color: var(--primary) !important;
            font-weight: 900;
            font-size: 20px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.5);
            animation: pulse 1s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Ultimate Translation Loading Animation */
        #ultimate-translate-loading {
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            transition: opacity 0.4s ease;
        }

        #ultimate-translate-loading .spinner-border {
            border-color: var(--primary);
            border-right-color: transparent;
            animation: spin 1.2s linear infinite;
            border-width: 4px;
        }

        #ultimate-translate-progress {
            color: var(--primary) !important;
            font-weight: 800;
            font-size: 18px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        /* Complete Translation Loading Animation */
        #complete-translate-loading {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: opacity 0.3s ease;
        }

        #complete-translate-loading .spinner-border {
            border-color: var(--primary);
            border-right-color: transparent;
            animation: spin 1s linear infinite;
        }

        #complete-translate-progress {
            color: var(--primary) !important;
            font-weight: 700;
            font-size: 16px;
        }

        /* Fast Translation Loading Animation */
        #fast-translate-loading {
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: opacity 0.2s ease;
        }

        #fast-translate-loading .spinner-border {
            border-color: var(--primary);
            border-right-color: transparent;
            animation: spin 0.8s linear infinite;
        }

        #fast-translate-progress {
            color: var(--primary) !important;
            font-weight: 600;
            font-size: 14px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Translation Loading Animation (Legacy) */
        #translate-loading {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        #translate-loading .spinner-border {
            border-color: var(--primary);
            border-right-color: transparent;
        }

        #translate-progress {
            color: var(--primary) !important;
            font-weight: 600;
        }

        /* Button Loading States */
        .btn.loading {
            pointer-events: none;
            opacity: 0.8;
        }

        .btn .spinner-border-sm {
            width: 1rem;
            height: 1rem;
        }

        /* Hide Google Translate Elements */
        .goog-te-banner-frame,
        .goog-te-menu-value,
        .goog-te-gadget-simple,
        #google_translate_element {
            display: none !important;
        }

        body {
            top: 0 !important;
        }

        /* Desktop Navigation Improvements */
        @media (min-width: 992px) {
            .navbar-nav {
                gap: 8px;
            }
            
            .nav-link {
                margin: 0 4px;
                min-width: 90px;
            }
            
            .dropdown-menu {
                min-width: 200px;
            }
        }

        /* Language Dropdown Mobile Responsive */
        @media (max-width: 991px) {
            .navbar-nav {
                gap: 0;
                width: 100%;
                padding-top: 20px;
            }
            
            .nav-item {
                width: 100%;
                text-align: center;
            }
            
            .nav-link {
                margin: 0;
                min-width: auto;
                width: 100%;
                padding: 15px 20px !important;
                border-bottom: 1px solid rgba(216, 216, 216, 0.1);
            }
            
            .dropdown-menu {
                min-width: 100%;
                position: static !important;
                transform: none !important;
                border: none;
                border-radius: 0;
                background: rgba(33, 33, 34, 0.8);
                box-shadow: inset 0 1px 0 rgba(158, 208, 89, 0.2);
            }
            
            .dropdown-item[data-lang] {
                padding: 12px 30px;
                font-size: 14px;
                min-height: 45px;
            }
        }

        @media (max-width: 768px) {
            .nav-link {
                font-size: 0.9rem;
                padding: 12px 15px !important;
            }
            
            .dropdown-item[data-lang] {
                padding: 10px 20px;
                font-size: 13px;
                min-height: 40px;
            }
        }

        /* Video Modal Styles */
        #videoModal .modal-content {
            background: rgba(33, 33, 34, 0.95);
            border: 1px solid rgba(158, 208, 89, 0.3);
            border-radius: 12px;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        #videoModal .modal-header {
            background: linear-gradient(135deg, rgba(158, 208, 89, 0.1) 0%, transparent 100%);
            border-bottom: 1px solid rgba(158, 208, 89, 0.2);
            padding: 20px 30px;
        }

        #videoModal .modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--primary);
        }

        #videoModal .video-container {
            position: relative;
            width: 100%;
            background: #000;
            border-radius: 8px;
            overflow: hidden;
        }

        #videoModal .video-container video {
            width: 100%;
            height: auto;
            max-height: 70vh;
            object-fit: contain;
        }

        #videoModal .modal-footer {
            background: linear-gradient(135deg, transparent 0%, rgba(158, 208, 89, 0.05) 100%);
            border-top: 1px solid rgba(158, 208, 89, 0.2);
            padding: 20px 30px;
        }

        /* Smart Technology Section Enhancements */
        .section-title.d-inline-flex {
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .section-title .fas.fa-microchip {
            font-size: 2.5rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }

        /* Watch Video Button Enhancement */
        #watchVideoBtn {
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        #watchVideoBtn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
            z-index: -1;
        }

        #watchVideoBtn:hover:before {
            left: 100%;
        }

        /* Responsive Video Modal */
        @media (max-width: 768px) {
            #videoModal .modal-dialog {
                margin: 10px;
                max-width: calc(100% - 20px);
            }
            
            #videoModal .modal-header,
            #videoModal .modal-footer {
                padding: 15px 20px;
            }
            
            #videoModal .modal-title {
                font-size: 1.2rem;
            }
            
            #videoModal .video-container video {
                max-height: 50vh;
            }
            
            .section-title .fas.fa-microchip {
                font-size: 2rem;
            }
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 80px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), #7fb83d);
            color: var(--dark);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(158, 208, 89, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: linear-gradient(135deg, #7fb83d, var(--primary));
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 30px rgba(158, 208, 89, 0.5);
        }

        .scroll-to-top:active {
            transform: translateY(-1px) scale(1.05);
        }

        .scroll-to-top i {
            transition: transform 0.3s ease;
        }

        .scroll-to-top:hover i {
            transform: translateY(-2px);
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .scroll-to-top {
                bottom: 80px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        /* Animation for scroll progress indicator */
        .scroll-to-top::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: conic-gradient(var(--light) var(--scroll-progress, 0%), transparent 0%);
            border-radius: 50%;
            z-index: -1;
            opacity: 0.7;
        }

        /* No RTL styling - keeping design exactly as English for all languages */

        /* ===================== */
        /* Stat Number component */
        /* Matches image: small "Up to" above big number */
        .stat-number {
            display: inline-flex;               /* stack label above number */
            flex-direction: column;
            align-items: flex-start;
            line-height: 0.95;                  /* tight lines like the sketch */
        }
        .stat-number .upto {
            order: -1;                          /* ensure it stays above the number */
            display: block;
            font: inherit;                      /* keep the original font */
            font-weight: inherit;               /* don't override weight */
            color: var(--light);                     /* don't change color */
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-size: 0.32em;                  /* small label relative to the number */
            margin-bottom: 0.25em;              /* small gap above the number */
        }
        /* Optional: if you ever wrap the unit separately */
        .stat-number .unit {
            font-size: 0.7em;                   /* keep % or x visually balanced */
        }
        /* ===================== */