@media (max-width: 768px) {
    .nav-links.active {
        display: block;
    }

    .hero-content { 
    	margin-top:120px;
    }


/* Paste inside @media (max-width: 768px) */

/* 1. The Container Animation */
.nav-links {
    display: flex; /* Must be flex, NOT none */
    position: fixed;
    top: 0;
    right: -100%; /* Start HIDDEN off-screen to the right */
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    
    /* The Slide Animation */
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

/* 2. The Active State (Triggered by JS) */
.nav-links.active {
    right: 0; /* Slides to visible */
}

/* 3. The Links "Pop-Up" Stagger Effect */
.nav-links li {
    opacity: 0;
    transform: translateY(20px); /* Start slightly lower */
    transition: all 0.3s ease-out;
}

/* When active, float them up one by one */
.nav-links.active li {
    opacity: 1;
    transform: translateY(0);
}

/* Delays for the stagger effect */
.nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
.nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
.nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
.nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
.nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
.nav-links.active li:nth-child(6) { transition-delay: 0.6s; }


}
