/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&amp;family=Amiri&amp;display=swap');

body {
    font-family: 'Poppins', Inter, system-ui, sans-serif;
}

/* Arabic Font */
.font-arabic {
    font-family: 'Amiri', serif;
}

/* Initial state for hero text animation */
.hero-text-initial {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Final state for hero text animation */
.hero-text-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animasi bounce-in */
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.animate-bounce-in {
    animation: bounce-in 1s ease-out;
}

/* Animasi Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}