.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    width: 300%;
    animation: slide 24s infinite;
}

.hero-slide {
    width: 100vw;
    height: 55vh;
    background-size: cover;
    background-position: center center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    padding: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.overlay-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    animation: fadeIn 1.2s ease-in-out;
}

.overlay-box h1 {
    font-size: 2.4rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
    color:aqua;
}

.overlay-box p {
    color: var(--secondary-text);
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color:#ffb806;
}

.hero-buttons .btn {
    padding: 0.6rem 1.2rem;
    margin: 0.3rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s all ease;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #ffffff;
    color: #080808;
}

.btn-primary:hover {
    background-color: #facc15;
}

.btn-secondary {
    background-color: #da2626;
    color: white;
}

.btn-secondary:hover {
    background-color: #d8f407;
}

/* Slider Animation */
@keyframes slide {
    0%, 20%   { transform: translateX(0); }
    25%, 45%  { transform: translateX(-100vw); }
    50%, 70%  { transform: translateX(-100vw); }
    75%, 95%  { transform: translateX(-200vw); }
    100%      { transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-slide {
        height: 50vh;
    }

    .overlay-box h1 {
        font-size: 1.5rem;
    }

    .overlay-box p {
        font-size: 0.9rem;
    }

    .hero-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.6rem;
    }
}
