.hero-carousel {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.carousel-fade {
    width: 75%;
    max-width: 1200px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.carousel-item.active {
    opacity: 1;
    position: relative;
}

.carousel-indicators {    
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.carousel-indicators span {
    display: inline-block;
    margin: 0 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicators span.active {
    background: #00c3ff;
}

.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .carousel-indicators {
        bottom: 2px;
    }

    .hero-carousel {
        margin-top: 20px;
        width: 100%;
        padding: 5px;
    }

    .carousel-fade {
        width: 90%;
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }
}