/* Hero Carousel Styles */
.carousel-container {
    position: relative;
    min-height: 600px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Enhanced carousel dots with pill effect for active state */
.carousel-dot {
    position: relative;
    padding: 0.25rem;
    cursor: pointer;
    outline: none;
}

.carousel-dot span:first-child {
    display: block;
}

/* Active dot becomes a pill/line */
.carousel-dot.active span:first-child {
    width: 2rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #1f2937, #4b5563);
}

/* Hover ripple effect */
.carousel-dot:hover span:last-child {
    transform: scale(1.8);
}

@media (max-width: 1023px) {
    .carousel-container {
        height: auto;
        min-height: 100vh;
    }
}
