.video-wrapper,
.image-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Adjust height as needed */
    overflow: hidden;
    /* Prevents overflow */
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    /* Places the video behind other elements */
    transform: translate(-50%, -50%);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the area */
    z-index: 0;
    /* Places the image behind other elements */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust for dimming effect */
    z-index: 1;
    /* Ensure overlay is above the video/image */
}

.container-home {
    position: absolute;
    /* Change to absolute positioning */
    top: 50%;
    /* Center vertically */
    left: 50%;
    /* Center horizontally */
    transform: translate(-50%, -50%);
    /* Centering transform */
    z-index: 2;
    /* Ensure this is above the overlay */
    color: white;
    /* Change text color for better visibility */
    text-align: center;
    /* Center the content */
}

.carousel-indicators li {
    background-color: black !important;

    /* Change the color of the indicators */
}

.carousel-indicators .active {
    background-color: gold !important;
    /* Change the color of the active indicator */
}
.icon-space {
    margin-right: 4px; /* Adjust the value as needed */
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 7s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 0;
        transform: translateY(0);
    }
}

.marquee {
    display: inline-block;
    font-size: 2rem; /* Adjust the font size as needed */
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-align: center; /* Center the text */
}

.marquee::before {
    content: attr(data-text);
    position: absolute;
    right: 100%; /* Start from the right */
    animation: marquee 3s linear forwards;
    color: gold; /* Change color as desired */
}
@keyframes marquee {
    0% {
        right: 100%; /* Start from the right */
    }
    0% {
        right: 0%; /* Move to the center */
    }
100% {
        right: 200%; /* Move off-screen to the right */
    }
}
