  /* =========================================
           UPDATED CSS: WHITE & ROYAL BLUE ONLY
           ========================================= */
        :root {
            /* User Specified Colors - No Orange */
            --royal: #0800A3; 
            --royal-light: #2940ff;
            --white: #ffffff;
            
            --bg: #ffffff;       /* Pure White Background */
            --fg: #0800A3;       /* Royal Blue Text (Main) */
            --muted: #4b5563;     /* Dark Grey Text */
            --card: rgba(255, 255, 255, 0.9); 
            --border: rgba(8, 0, 163, 0.2); /* Stronger Blue Border */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--fg);
            overflow-x: hidden;
            
            /* PREMIUM WHITE SHOWROOM BACKGROUND */
            background-color: #ffffff;
            /* Subtle Blue Gradient Sheen */
            background-image: linear-gradient(160deg, rgba(8, 0, 163, 0.02) 0%, rgba(255, 255, 255, 0) 50%);
            background-attachment: fixed;
            min-height: 100vh;
        }

        /* Override Tailwind's text-white class to work with white background */
        h1, h2, h3, p, span, li, a {
            color: var(--fg) !important;
        }

        .text-white {
            color: var(--white) !important;
        }

        /* Exceptions for Hero Section (White Text on Blue Overlay) */
        #home h1, #home p, #home span, .hero-slide div {
            color: #ffffff !important;
        }
        
        /* Force the accent class (which was orange) to be blue */
        .text-accent {
            color: var(--royal) !important;
        }
        .bg-accent {
            background-color: var(--royal) !important;
        }
        .from-accent {
            --tw-gradient-from: var(--royal) !important;
        }
        .to-accent {
            --tw-gradient-to: var(--royal) !important;
        }

        /* Custom scrollbar - Blue Track, Blue Thumb */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f0f0f0;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--royal);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--royal-light);
        }

        /* Gradient text - Blue to Light Blue */
        .gradient-text {
            background: linear-gradient(90deg, var(--royal) 0%, var(--royal-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Gradient border - Subtle Blue */
        .gradient-border {
            position: relative;
        }

        .gradient-border::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--royal), var(--royal-light));
        }

        /* Button - SOLID BLUE with Lighter Blue Hover */
        .btn-gradient {
            background: linear-gradient(90deg, var(--royal) 0%, var(--royal-light) 100%);
            transition: all 0.4s ease;
            padding: 12px 32px;
            border: none;
            border-radius: 4px; /* Sharp corners */
            color: white !important;
            font-weight: 700; 
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(8, 0, 163, 0.3);
        }

        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(8, 0, 163, 0.5); /* Stronger Blue Glow */
            background: linear-gradient(90deg, var(--royal-light) 0%, var(--royal) 100%);
        }

        /* Glass header - White Glass */
        .glass-header {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .glass-header.solid {
            background: rgba(255, 255, 255, 0.98);
            border-bottom: 1px solid var(--royal);
        }

        /* Menu link - Blue Underline */
        .menu-link {
            position: relative;
            color: var(--fg) !important;
        }

        .menu-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--royal);
            transition: width 0.3s ease;
        }

        .menu-link:hover::after {
            width: 100%;
        }

        /* Hero slider */
        .hero-slide {
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            position: absolute;
            inset: 0;
        }

        .hero-slide.active {
            opacity: 1;
        }

        /* Card hover - Clean White Card */
        .product-card {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }

        .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(8, 0, 163, 0.15); /* Blue Shadow */
            border-color: var(--royal);
        }

        /* Reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Mobile menu - White Background */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #ffffff;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        /* Indicator dots */
        .indicator-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(8, 0, 163, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .indicator-dot.active {
            background: var(--royal); /* Blue Dots */
            transform: scale(1.3);
        }

        /* Arrow buttons */
        .slider-arrow {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid var(--royal);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-arrow svg {
            color: var(--royal);
        }

        .slider-arrow:hover {
            background: var(--royal);
            border-color: var(--royal);
        }
        
        .slider-arrow:hover svg {
            color: #ffffff;
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Noise overlay */
        .noise-overlay {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* Feature Box - White with Blue Accents */
        .feature-box {
            background: #ffffff;
            border: 1px solid var(--border);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        }

        .feature-box::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--royal), var(--royal-light));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-box:hover::after {
            transform: scaleX(1);
        }

        .feature-box:hover {
            border-color: var(--royal);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(8, 0, 163, 0.1);
        }
        
        /* Fallback for images */
        img {
            background-color: #f0f0f0;
        }
        
        /* Logo text colors override */
        h2 span, h1 span {
            color: var(--royal) !important;
        }
        
        .gradient-text {
            color: transparent !important;
        }