.navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: flex;
            justify-content: flex-end;
        }

        .menu-btn {
            position: relative;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .menu-btn span {
            position: absolute;
            width: 30px;
            height: 3px;
            background: #333;
            border-radius: 3px;
            left: 5px;
            transition: all 0.3s ease;
        }

        .menu-btn span:nth-child(1) {
            top: 10px;
        }

        .menu-btn span:nth-child(2) {
            top: 18px;
        }

        .menu-btn span:nth-child(3) {
            top: 26px;
        }

        .menu-btn.active span:nth-child(1) {
            top: 18px;
            transform: rotate(45deg);
        }

        .menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-btn.active span:nth-child(3) {
            top: 18px;
            transform: rotate(-45deg);
        }

        .menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 150vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            padding-top: 80px;
            z-index: 999;
        }

        .menu.active {
            transform: translateX(0);
        }

        .menu nav {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: .8rem;
            padding: 1rem;
        }

        .menu nav a {
            color: white;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 400;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .menu.active nav a {
            opacity: 1;
            transform: translateY(0);
        }

        .menu.active nav a:nth-child(1) { transition-delay: 0.1s; }
        .menu.active nav a:nth-child(2) { transition-delay: 0.2s; }
        .menu.active nav a:nth-child(3) { transition-delay: 0.3s; }
        .menu.active nav a:nth-child(4) { transition-delay: 0.4s; }
        .menu.active nav a:nth-child(5) { transition-delay: 0.5s; }
        .menu.active nav a:nth-child(6) { transition-delay: 0.5s; }
        .menu.active nav a:nth-child(7) { transition-delay: 0.5s; }
        .menu.active nav a:nth-child(8) { transition-delay: 0.5s; }
        .menu.active nav a:nth-child(9) { transition-delay: 0.5s; }
        .menu.active nav a:nth-child(10) { transition-delay: 0.5s; }
        .menu.active nav a:nth-child(11) { transition-delay: 0.5s; }
 
       .menu nav a:hover {
            transform: scale(1.1);
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

