.hero-image-wrapper,
.hero-intro-box,
.service-card,
.review-card,
.about-preview-text,
.form-wrapper {
    animation: fadeUp 0.8s ease both;
}

.service-card:nth-child(2),
.review-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3),
.review-card:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}