.custom-swiper-button {
    width: 50px;
    height: 50px;
    background-color: #1F2937; /* gray-800 */
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    color: #FEFCE8 !important; /* yellow-200 */
}

.custom-swiper-button:hover {
    background-color: #FEFCE8; /* yellow-200 */
    color: #1F2937 !important; /* gray-800 */
    transform: scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.custom-swiper-button::after {
    font-size: 20px !important;
    font-weight: bold;
}

/* Position the arrows outside the slider */
.swiper-button-next {
    right: -25px;
}

.swiper-button-prev {
    left: -25px;
}

/* Responsive positioning for mobile */
@media (max-width: 768px) {
    .swiper-button-next {
        right: 10px;
    }
    
    .swiper-button-prev {
        left: 10px;
    }
}


@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

@keyframes pulse-subtle {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
    }
}

.animate-pulse-subtle {
    animation: pulse-subtle 4s ease-in-out infinite;
}