/* Keyframe Animations */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* Apply Animations to Elements */


/* .css-lnhrpw.main-title {
    animation: fadeIn 1s ease-out forwards;
} */

.css-117ogzv,
.css-q9065 {
    animation: slideUp 0.8s ease-out forwards;
}

.css-xppv5p {
    animation: slideUp 1s ease-out forwards;
}

.css-u88knv {
    animation: slideUp 1s ease-out forwards;
    /* Staggered animation for content blocks */
}

.css-u88knv {
    --block-index: 0;
    /* Default index */
}

.css-u88knv:nth-child(1) {
    --block-index: 1;
}

.css-u88knv:nth-child(2) {
    --block-index: 2;
}

.css-iwg5os,
.css-1drhy6z {
    animation: scaleIn 0.6s ease-out forwards;
}


/* Ensure animations only run once on page load */

[data-animated="true"] {
    animation: none !important;
}