.responsive-banner {
    position: relative;
    height: 500px !important;
    background-size: cover;
    background-position: center;
    width: 100%;
    z-index: 1; /* Establishes a stacking context */
}

/* The Dark Overlay */
.responsive-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Your requested 0.6 shadow */
    z-index: 0; /* Sits above the image but below the text */
}

/* Ensures the text stays above the shadow */
.responsive-banner .container {
    position: relative;
    z-index: 2; 
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .responsive-banner {
        height: 300px !important;
    }
}

/* Ensure the text container stays above the shadow */
.responsive-banner .container {
    position: relative;
    z-index: 2;
}

/* Mobile Devices */
@media (max-width: 768px) {
    .responsive-banner {
        height: 300px !important;
    }
}

/* Swiper Fix */
.swiper-wrapper {
    height: auto !important;
}