/* Background Slider Wrapper */
.bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Background Images (with Blur and Dark Overlay) */
.bg-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    /* Slight blur effect */
    transition: opacity 1s ease-in-out;
    position: absolute;
}

/* Dark Overlay */
.bg-slider::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay */
    z-index: 1;
}
