/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate {
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
}

.animate.visible.fadeInUp {
    animation: fadeInUp 1s forwards; /* Adjust the duration for speed */
}
