/* Slider Image Size Override - Force Larger Images WITHOUT white space */
.slider-section .banner-img {
    max-width: 100% !important;
    width: 100% !important;
}

.slider-section .banner-img img {
    width: 100% !important;
    height: 75vh !important;
    /* Fixed height relative to viewport */
    max-width: 100% !important;
    min-height: 500px !important;
    /* Minimum height safety */
    object-fit: cover !important;
    object-position: center top !important;
}

@media (max-width: 991px) {
    .slider-section .banner-img img {
        height: 50vh !important;
        min-height: 300px !important;
    }
}

/* Make the image column wider - 50/50 split instead of 7/5 */
.slider-section .col-lg-5.col-md-5 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

.slider-section .col-lg-7.col-md-7 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}