/* Custom Scroll Reveal Class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Mobile Nav Toggle Visibility */
#nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}