/* styles.css */
        /* Hamburger Menu Styles */
        
        
        .hamburger-menu {
            display: none;
            cursor: pointer;
            padding: .5rem;
            position: fixed;
            top: 2px;
            left: 20px;
            z-index: 1000;
        }

        .hamburger-icon {
            width: 35px;
            height: 25px;
        }

        .hamburger-icon div {
            width: 100%;
            height: 3px;
            background-color: white;
            margin: 6px 0;
            transition: all 0.3s ease;
        }

        
        /* Navigation Container */
        .nav-container {
            position: fixed;
            top: -100vh;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: #1a202c;
            padding-top: 4rem;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .nav-container.active {
            top: 0;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
        }

        /* Navigation Links */
        .nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: calc(100vh - 4rem);
            overflow-y: auto;
        }

        .nav-links li {
            padding: 1.5rem;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #4299e1;
        }

        /* Scrollbar Styling */
        .nav-links::-webkit-scrollbar {
            width: 4px;
        }

        .nav-links::-webkit-scrollbar-track {
            background: #1a202c;
        }

        .nav-links::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
        }

        /* Show hamburger menu on mobile */
        @media screen and (max-width: 3768px) {
            .hamburger-menu {
                display: block;
            }
        }