/* ===== HERO BACKGROUND SLIDESHOW ===== */
.hero-section {
    background: none !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: kenBurnsSlideshow 32s infinite;
    filter: blur(2px);
}

.hero-bg-slide:nth-child(1) {
    background-image: url('../images/front%20page%20imp.jpg');
    animation-delay: 0s;
}

.hero-bg-slide:nth-child(2) {
    background-image: url('../images/front%20img2.jpg');
    animation-delay: 8s;
}

.hero-bg-slide:nth-child(3) {
    background-image: url('../images/front%20img%203.webp');
    animation-delay: 16s;
}

.hero-bg-slide:nth-child(4) {
    background-image: url('../images/front%20img%204.jpg');
    animation-delay: 24s;
}

@keyframes kenBurnsSlideshow {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    2% {
        opacity: 1;
    }

    23% {
        opacity: 1;
        transform: scale(1.2);
    }

    25% {
        opacity: 0;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%) !important;
    opacity: 1 !important;
    z-index: 1;
}

.hero-content {
    z-index: 2 !important;
}

.hero-title,
.hero-subtitle,
.hero-buttons {
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8) !important;
}