/* Background Slideshow Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa; /* Gray background */
}

.hero-section .background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section .hero-content {
    position: relative;
    z-index: 1;
}
