* {
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 46, 93, 0.88) 0%, rgba(0, 29, 61, 0.7) 50%, rgba(0, 46, 93, 0.4) 100%);
}

.green-overlay {
    background: linear-gradient(90deg, rgba(0, 46, 93, 0.92) 0%, rgba(0, 46, 93, 0.6) 60%, transparent 100%);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.7s ease-out both;
}

.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}
