/* Hero Section Carousel Styles */
.carousel-item {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.carousel-item.active {
    display: block;
    opacity: 1;
    z-index: 1;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.carousel-dot.active {
    width: 14px;
    height: 14px;
    background-color: #fff;
}

.carousel-prev, .carousel-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
