/* Advanced Hero Banner CSS */
/* Base styling for the hero banner */
.advanced-hero-banner {
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 9;
}

/* Hero slider */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Animated transitions for slides */
.hero-slide {
    transition: opacity 0.6s ease;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    position: relative;
}

/* Navigation styling */
.hero-dots {
    z-index: 10;
}

.hero-arrows {
    z-index: 10;
}

/* Ensure the banner connects directly to navbar */
.advanced-hero-banner {
    margin-top: 0 !important;
}

/* Animated hover effect for button */
.hero-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-button:hover:after {
    opacity: 1;
}