@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Vazirmatn', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1E40AF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1E3A8A;
}

/* Animation for cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-white {
    animation: fadeIn 0.6s ease-out forwards;
}

.bg-white:nth-child(1) {
    animation-delay: 0.1s;
}

.bg-white:nth-child(2) {
    animation-delay: 0.2s;
}

.bg-white:nth-child(3) {
    animation-delay: 0.3s;
}

/* Hover effects for social icons */
a.bg-white:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}