/* Custom Styles */

/* Add any custom styles here that are not covered by Tailwind CSS */

#go-to-top {
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
