#hero {
    position: relative;
    height: 100vh;
    background-color: #000; /* Optional: add a background color for fallback */
    color: #fff;
}

#hero .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

#heroCarousel .carousel-item img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(60%); /* Darken images for text contrast */
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.carousel-fade .carousel-item.active {
    opacity: 1;
}
