/* Style for the Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Hide slides when not in view */
}

/* The Slider container */
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide styles */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; /* Initially hide the slides */
    visibility: hidden; /* Ensure they aren't rendered before active */
    transition: opacity 1s ease-in-out, visibility 0s 1s; /* Fade effect and visibility change */
}

/* Text on each slide */
.banner_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: left;
    padding: 20px;
}

.banner_text h5 {
    font-size: 20px;
    margin-bottom: 10px;
}

.banner_text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.banner_text p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .banner_text h1 {
        font-size: 30px;
    }

    .banner_text p {
        font-size: 16px;
    }
}
