@import url("https://fonts.googleapis.com/css2?family=Aref+Ruqaa&display=swap");
body {
    font-family: "Cairo", sans-serif;
}

.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Custom Swiper Styles */
.swiper-pagination {
    position: absolute !important;
    bottom: 1rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d5db; /* gray-300 */
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background-color: #0a8f4e; /* red-600 */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease-out;
}

.animate-pulse-slow {
    animation: pulse 3s infinite;
}

.gradient-bg {
    background: linear-gradient(135deg, #03351d 0%, #12e780 50%, #7cf8bc 100%);
}
