.hero-content,
.hero-visual,
.feature-card {
    animation: fadeUp 0.75s ease both;
}

.hero-visual {
    animation-delay: 0.15s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

.floating-tag {
    animation: floatTag 3s ease-in-out infinite;
}

.tag-dotnet {
    animation-delay: 0.5s;
}

.tag-sql {
    animation-delay: 1s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatTag {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}