/* Keep carousel slow scrolling */
.carousel {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
    will-change: transform;
    z-index: -1; /* Keeps content above other elements */
}



/* Adjust the size of the logo inside the carousel */
.carousel-icon {
    width: 600px; /* Increase width */
    height: auto; /* Maintain aspect ratio */
    max-width: 80%; /* Prevent it from being too large on small screens */
}



.carousel-images {
    position: absolute;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}





/* Carousel Overlay for Title */
.carousel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10; /* Keep it above the carousel images */
}

/* Large Title */
.carousel-title {
    font-family: 'Satisfy', cursive;
    font-size: 5rem; /* Adjust as needed */
    font-weight: bold;
    color: white;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7); /* Nice text glow */
    margin: 0;
}













