/* Extracted styles for the myCarousel element from Bootstrap */
#myCarousel {
    position: relative;
}

#myCarousel .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#myCarousel .carousel-inner .item {
    display: none;
}

#myCarousel .carousel-inner .item.active,
#myCarousel .carousel-inner .item.next,
#myCarousel .carousel-inner .item.prev {
    display: block;
}

#myCarousel .carousel-inner .item.active {
    left: 0;
}

#myCarousel .carousel-inner .item.next,
#myCarousel .carousel-inner .item.prev {
    position: absolute;
    top: 0;
    width: 100%;
}

#myCarousel .carousel-inner .item.next {
    left: 100%;
}

#myCarousel .carousel-inner .item.prev {
    left: -100%;
}

#myCarousel .carousel-inner .item img {
    width: 100%;
    display: block;
}

/* Add more extracted styles for your specific customization */

/* Indicator styles */
#myCarousel .carousel-indicators {
    margin: 0;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

#myCarousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border: none;
    background-color: #888;
    border-radius: 50%;
    cursor: pointer;
}
/* Apply a fading effect to myCarousel */
#myCarousel .carousel-inner .item {
    opacity: 0;
    transition: opacity 1s;
}

#myCarousel .carousel-inner .item.active {
    opacity: 1;
}

#myCarousel .carousel-indicators .active {
    background-color: #333;
}
        /* Common button styles */
        .button {
            display: inline-block;
            padding: 10px 20px;
            font-size: 18px;
            text-align: center;
            text-decoration: none;
            background-color: #007BFF;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        /* Styles for the "Get Started" button */
        .get-started-button {
            background-color: #007BFF; /* Blue background color */
            margin-right: 10px; /* Add spacing between buttons */
        }

        /* Styles for the "Watch Video" button */
        .watch-video-button {
            background-color: #FF5733; /* Orange background color */
        }
/* styles.css *//* Your existing CSS styles */
/* Your existing CSS styles */
/* Your existing CSS styles */
.popup {
    display: none;
    position: fixed;
    top: 20%;
    left: 0;
    width: 100%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
    
    justify-content: center;
    align-items: center;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.video-container video {
    max-width: 100%;
    max-height: 100%;
}
.close-button {
    position: absolute;
    top: 50%;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.close-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


#loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff; /* Optional background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top of other content */
}
