/* assets/animations.css */

/* Animation for fading in titles and paragraphs */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation for cards sliding in from the bottom */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Applying the animations */
.page-heading, .page-paragraph {
    animation: fadeIn 0.8s ease-out forwards;
}

.card {
    animation: slideInUp 0.6s ease-out forwards;
}