.aegis_logo_fixed {
            position: fixed;
            top: 20px;
            left: 30px;
            z-index: 99999;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(0,0,0,0.5);
            padding: 8px 18px;
            border-radius: 50px;
            backdrop-filter: blur(5px);
        }
        
        .aegis_logo_fixed img {
            width: 45px;
            height: auto;
        }
        
        .aegis_logo_text {
            color: white;
            font-size: 22px;
            font-weight: 600;
            letter-spacing: 1px;
            font-family: 'EB Garamond', serif;
        }
        
        /* ================= FIXED MENU BUTTON (TOP RIGHT - SCROLL NAHI KAREGA) ================= */
        .aegis_menu_fixed {
            position: fixed;
            top: 20px;
            right: 30px;
            z-index: 99999;
        }
        
        .aegis_menu_btn {
            width: 55px;
            height: 55px;
            background: #031728;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: 0.3s;
            border: none;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        
        .aegis_menu_btn:hover {
            background: #f58220;
            transform: scale(1.05);
        }
        
        .aegis_menu_btn span {
            color: white;
            font-size: 30px;
            font-weight: 400;
        }
        
        /* ================= SLIDER (LEFT SIDE) ================= */
        .aegis_side_slider {
            position: fixed;
            top: 0;
            left: -350px;
            width: 320px;
            height: 100%;
            background: #000000;
            z-index: 99999;
            transition: 0.4s ease-in-out;
            box-shadow: 5px 0 25px rgba(0,0,0,0.5);
            overflow-y: auto;
            padding: 30px 0;
        }
        
        .aegis_side_slider.open {
            left: 0;
        }
        
        /* Slider overlay */
        .aegis_slider_overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 99998;
            display: none;
            backdrop-filter: blur(3px);
        }
        
        .aegis_slider_overlay.show {
            display: block;
        }
        
        /* Close button */
        .aegis_close_slider {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 28px;
            cursor: pointer;
            background: none;
            border: none;
            transition: 0.3s;
        }
        
        .aegis_close_slider:hover {
            color: #f58220;
            transform: rotate(90deg);
        }
        
        /* Menu items */
        .aegis_slider_nav {
            margin-top: 70px;
            padding: 0;
            list-style: none;
        }
        
        .aegis_slider_nav li {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .aegis_slider_nav li a {
            display: block;
            padding: 18px 30px;
            color: white;
            font-size: 18px;
            font-weight: 500;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            letter-spacing: 1px;
            transition: 0.3s;
        }
        
        .aegis_slider_nav li a i {
            margin-right: 15px;
            width: 25px;
            font-size: 18px;
            color: #f58220;
        }
        
        .aegis_slider_nav li a:hover {
            background: #1a1a1a;
            padding-left: 40px;
            color: #f58220;
        }
        
        /* Contact info in slider */
        .aegis_slider_contact {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            padding: 20px 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 12px;
        }
        
        .aegis_slider_contact p {
            margin: 8px 0;
        }
        
        .aegis_slider_contact i {
            color: #f58220;
            margin-right: 10px;
            width: 18px;
        }
        
        /* ================= RESPONSIVE ================= */
        @media (max-width: 768px) {
            .aegis_logo_fixed {
                top: 15px;
                left: 15px;
                padding: 5px 12px;
            }
            
            .aegis_logo_fixed img {
                width: 35px;
            }
            
            .aegis_logo_text {
                font-size: 16px;
            }
            
            .aegis_menu_fixed {
                top: 15px;
                right: 15px;
            }
            
            .aegis_menu_btn {
                width: 48px;
                height: 48px;
            }
            
            .aegis_menu_btn span {
                font-size: 26px;
            }
            
            .aegis_side_slider {
                width: 280px;
            }
            
            .demo-content {
                padding: 100px 15px 30px;
            }
        }
        
        @media (max-width: 480px) {
            .aegis_logo_text {
                display: none;
            }
            
            .aegis_logo_fixed img {
                width: 40px;
            }
            
            .aegis_menu_btn {
                width: 42px;
                height: 42px;
            }
            
            .aegis_menu_btn span {
                font-size: 22px;
            }
        }