.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .structural-grid {
            background-image: linear-gradient(#8E97A422 1px, transparent 1px), linear-gradient(90deg, #8E97A422 1px, transparent 1px);
            background-size: 40px 40px;
        }
        .bento-card {
            border: 1px solid #8E97A4;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .bento-card:hover {
            border-color: #ba0013;
            transform: translateY(-4px);
            box-shadow: 8px 8px 0px 0px rgba(186, 0, 19, 0.1);
        }
        .btn-structural {
            position: relative;
            overflow: hidden;
            transition: all 0.2s ease;
        }
        .btn-structural:active {
            transform: scale(0.98);
        }
        
        /* Carousel Styles */
        .carousel-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 0;
        }
        .carousel-slide.active {
            opacity: 1;
            z-index: 10;
        }
        .carousel-overlay {
            background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .animate-marquee {
            animation: marquee 30s linear infinite;
        }

        #services-slider::-webkit-scrollbar {
            display: none;
        }
        #services-slider {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Mobile Menu Styles */
        .mobile-menu-overlay {
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .mobile-menu-overlay.open {
            transform: translateX(0);
        }
        .menu-backdrop {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        .menu-backdrop.active {
            opacity: 1;
            pointer-events: auto;
        }
