  
        /* Mobile Menu Styles */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left:0;
             width: 100vw; 
             height: 100vh; 
            background-color: rgba(116, 68, 253,0.8);
            /* opacity:0.5; */
            z-index: 1000;
            padding-top: 60px;
            /* transform: translateX(100%);
            transition: transform 0.3.ease; */
        }

        .mobile-menu-overlay.active {
            display: block;
        }

        .mobile-menu-content {
             max-width: 400px;
            margin: 0 auto;
            padding: 20px; 
          
        }

        .mobile-menu-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-content li {
            padding: 15px 0;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .mobile-menu-content li:last-child {
            border-bottom: none;
        }

        .mobile-menu-content a {
            color: white;
            text-decoration: none;
            font-size: 23px;
            font-weight: 500;
            display: block;
            padding: 10px 20px;
            transition: color 0.3s ease;
        }

        .mobile-menu-content a:hover {
            color: black;
        }

         /* .mobile-menu-content .active a {
            color: black;
        } */

        .mobile-menu-content .theme-btn {
            background-color: #007bff;
            color: white !important;
            padding: 12px 24px;
            border-radius: 25px;
            display: inline-block;
            margin-top: 10px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .mobile-menu-content .theme-btn:hover {
            background-color: #0056b3;
            color: white !important;
        }

        .mobile-menu-close {
            position: absolute;
            top: 50px;
            right: 33px;
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 1001;
        }

        .sidebar__toggle {
            cursor: pointer;
            padding: 10px;
            color: #333;
            font-size: 18px;
        }

        .sidebar__toggle:hover {
            color: #007bff;
            background-color: white;
        }

        /* Hide mobile menu on desktop */
        @media (min-width: 1200px) {
            .mobile-menu-overlay {
                display: none !important;
            }
        }

        /* Demo styling for header */
         /* .header-section-1 {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        } */

        /* .header-1 {
            padding: 15px 0;
        } */

        /* .header-main {
            display: flex;
            align-items: center;
            justify-content:space-between;
        } 
  */
        .logo img {
            max-height: 50px;
        } */
 /* .header-1 {
            padding: 5px;
        } */
        .header-right a {
            color: #333;
            text-decoration: none;
            margin-right: 15px;
        }

        /* .theme-btn {
            background-color: #007bff;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        } */

        .theme-btn:hover {
            background-color: #0056b3;
            color: white;
        }

        /* Hide desktop menu on mobile */
        @media (max-width: 1199px) {
            .header-middle {
                display: none;
            }
            .header-right > a,
            .header-right > .header-button {
                display: none;
            }
        }
    