/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    animation: fadeInUp 1s ease;
}

.hero p {
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-btn {
    animation: fadeInUp 1s ease 0.4s both;
}


@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
