.hero-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    width: 90%;
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold ;
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        display: none;
    }
    .hero-button {
        padding: 5px;
        border-radius: 5px;
    }
}

.hero-description {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color:white;
}

.hero-button {
    padding: 1rem 2rem;
    font-size: 2rem;
    background: #3cb815;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    color:white;
}

.hero-button:hover {
    background: #d43e03;
    color: white !important;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-dot {
    width: 24px;
    height: 12px;
    border-radius: 10%;
    background: rgba(255, 115, 0, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero-dot.active {
    background: rgb(2, 180, 46);
}