/* Homepage banner specific styles */
@media (max-width: 768px) {
    /* Target only homepage banner images */
    .swiper.hero-swiper.h-screen .swiper-slide img.absolute.inset-0.w-full.h-full {
        object-fit: cover !important;
        object-position: center !important;
    }

    /* Override any global styles that might set object-fit to contain */
    .absolute.inset-0.w-full.h-full {
        object-fit: cover;
    }

    /* Ensure the banner takes full height */
    .swiper.hero-swiper.h-screen {
        height: 100vh !important;
        min-height: 100vh !important;
    }

    /* Pagination dots styling for mobile */
    .swiper-pagination {
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        background: rgba(255, 255, 255, 0.3) !important;
        opacity: 1 !important;
        margin: 0 !important;
        border-radius: 50% !important;
        transition: all 0.3s ease !important;
    }

    .swiper-pagination-bullet-active {
        background: #06b6d4 !important; /* cyan color */
        transform: scale(1.2) !important;
    }
}
