/* Slider container */
#home-slider .item {
    position: relative;
    width: 100%;
    height: 500px; /* desktop fixed height */
    overflow: hidden;
}

/* Image uniform size */
#home-slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 most important */
    display: block;
}

/* Ensure content overlays properly */
#home-slider .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* Tablet */
@media (max-width: 991px) {
    #home-slider .item {
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    #home-slider .item {
        height: 250px;
    }
}

/* Force same height for all slides */
#home-slider .item {
    position: relative !important;
    width: 100% !important;
    height: 500px !important;   /* fixed height */
    overflow: hidden !important;
}

/* Force all images to behave same */
#home-slider .item img {
    width: 100% !important;
    height: 500px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Overlay content full size */
#home-slider .slide-content {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-title {
    max-width: 600px;   /* 🔥 controls line break */
    white-space: normal;
    line-height: 1.3;
}

@media (max-width: 991px) {
    #home-slider .item,
    #home-slider .item img {
        height: 350px !important;
    }
}

@media (max-width: 576px) {
    #home-slider .item,
    #home-slider .item img {
        height: 250px !important;
    }
}

thead {
    background-color: #9ec5cc !important;
    color: #004b63 !important;
}

