/* Background Slideshow Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section .background-slideshow {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    filter: blur(3px);
    -webkit-filter: blur(3px);
    transition: opacity 1s ease-in-out;
}

/* Overlay */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

/* Ensure content is above the overlay and background */
.hero-section > .container {
    position: relative;
    z-index: 2;
}

/* Make sure the row and column also have proper z-index */
.hero-section .row,
.hero-section .col-lg-8 {
    position: relative;
    z-index: 3;
}

/* Hero content specific styles */
.hero-content {
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
}

/* Remove any conflicting styles from the inline style */
.hero-section[style*="background-color"] {
    background-color: transparent !important;
}
