
        /* Overlay for background when menu is open */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1040;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        /* Main slide-in menu container */
        .slide-menu {
            position: fixed;
            top: 0;
            right: -75%;
            width: 75%;
            height: 100%;
            background: #fff;
            z-index: 1050;
            transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        
        /* When menu is active */
        .menu-active .slide-menu {
            right: 0;
        }
        
        .menu-active .menu-overlay {
            opacity: 1;
            visibility: visible;
        }
        
        /* Menu header with close button */
        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            background: #f8f9fa;
        }
        
        .menu-close {
            background: none;
            border: none;
            font-size: 22px;
            cursor: pointer;
            color: #444;
            transition: color 0.3s;
        }
        
        .menu-close:hover {
            color: #dc3545;
        }
        
        /* Menu content area */
        .menu-content {
            flex-grow: 1;
            position: relative;
            overflow: hidden;
        }
        
        /* Menu list styling */
        .menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
            transition: transform 0.3s ease;
            transform: translateX(0);
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }
        
        .submenu {
            list-style: none;
            padding: 0;
            margin: 0;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 100%;
            transition: transform 0.3s ease;
        }
        
        .menu-active-submenu .menu-list {
            transform: translateX(-100%);
        }
        
        .menu-active-submenu .submenu {
            transform: translateX(-100%);
        }
        
        .menu-item {
            border-bottom: 1px solid #eee;
            position: relative;
        }
        
        .menu-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
            background:white;
        }
        
        .menu-link:hover, .menu-link:focus {
            background-color: #f8f9fa;
            color: #333;
        }
        
        .has-submenu::after {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 12px;
            color: #999;
        }
        
        /* Submenu header */
        .submenu-header {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            background-color: #f8f9fa;
            border-bottom: 1px solid #eee;
        }
        
        .back-btn {
            background: none;
            border: none;
            padding: 0 10px 0 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            color: #555;
        }
        
        .back-btn i {
            margin-right: 10px;
        }
        
        /* Animations for menu items */
        .slide-menu.menu-active .menu-item {
            animation: slideIn 0.3s forwards;
            opacity: 0;
            transform: translateX(20px);
        }
        
        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .slide-menu.menu-active .menu-item:nth-child(1) { animation-delay: 0.1s; }
        .slide-menu.menu-active .menu-item:nth-child(2) { animation-delay: 0.15s; }
        .slide-menu.menu-active .menu-item:nth-child(3) { animation-delay: 0.2s; }
        .slide-menu.menu-active .menu-item:nth-child(4) { animation-delay: 0.25s; }
        .slide-menu.menu-active .menu-item:nth-child(5) { animation-delay: 0.3s; }
        .slide-menu.menu-active .menu-item:nth-child(6) { animation-delay: 0.35s; }
        
        /* Toggle button for mobile */
        .menu-toggle {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            z-index: 1030;
            color: #333;
        }
        
        /* Menu background gradient */
        /* .menu-item:nth-child(odd) .menu-link {
            background: linear-gradient(to right, rgba(248, 249, 250, 0.5), rgba(255, 255, 255, 0));
        } */
        
        /* Active menu item */
        .menu-link.active {
            border-left: 4px solid #007bff;
            background-color: rgba(0, 123, 255, 0.05);
        }
   