/* Mobile-specific fixes for banner display */
@media (max-width: 768px) {
    /* Reset main slider dimensions */
    .main-slider {
        height: auto !important;
        min-height: 200px !important;
        margin-top: 0 !important;
    }
    
    
    
    /* Adjust content dimensions */
    .banner-content {
        min-height: 33vh !important;
        padding-bottom: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Ensure images display properly and fill the banner-content */
    .banner-image img {
        height: 100% !important;
        object-fit: fill !important; /* Changed from fill to cover to ensure the image covers the entire banner-content */
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Position navigation correctly */
    .slider-nav {
        position: relative !important;
        bottom: auto !important;
        top: auto !important;
        margin-bottom: 15px !important;
        z-index: 10 !important;
    }
    
    /* Size navigation buttons */
    .prev-btn,
    .next-btn {
        width: 30px !important;
        height: 30px !important;
        margin: 0 5px !important;
    }
    
    /* Size navigation dots */
    .dot {
        width: 8px !important;
        height: 8px !important;
        margin: 0 3px !important;
    }
    
    /* Connect banner to features section */
    .features {
        margin-top: 0 !important;
    }
    
    /* Fix slider content margin */
    .slide-content {
        margin-top: 0 !important;
    }
    
    /* Remove any additional white space */
    .slide-image {
        margin-bottom: 0 !important;
    }
    
    .slide-image img {
        margin-bottom: 0 !important;
    }
} 