* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.5;
    font-family: 'Poppins', sans-serif !important;
    overflow: hidden;
    overflow-x: hidden
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    height: calc(100vh - 70px); 
}

.bg-video {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 105%;
    object-fit: cover;
    background: radial-gradient(#fff, #ffd6d6);

}

.overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.container {
    height: 100%;
}

.carousel-item {
    position: relative; 
}

.my-custom-btn {
    position: absolute;
    bottom: 170px; 
    left: 50%; 
    transform: translateX(-50%);
    padding: 15px 30px; 
    font-size: 18px; 
    border: none;
    border-radius: 5px;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(114, 26, 26, 0);
    width: 40px;
    height: 70px;
    margin: auto;
}

/* Custom CSS for buttons */
.carousel-inner .pearl-btn {
    background-color: rgb(212, 212, 15);
    color:#fff;
    border:none;
}

.carousel-inner .pearl-btn:hover {
    background-color: #e0a362; 
    border:none;
}

.carousel-inner .sweep-btn {
    background-color: red;
    color: #ffffff;
    border:none;
}

.carousel-inner .sweep-btn:hover {
    background-color: #753318; 
    border:none;
}

.carousel-inner .glass-btn {
    background-color: darkblue;
    color: #ffffff;
    border:none;
}

.carousel-inner .glass-btn:hover {
    background-color: #0b7dda; 
    border:none;
}

.carousel-inner .tylesh-btn {
    background-color: green;
    color: #ffffff;
    border:none;
}


.carousel-inner .tylesh-btn:hover {
    background-color: #11ce1a; 
    border:none;
}

.carousel-inner .solve-btn {
    background-color: #0381fe;
    color: #ffffff;
    border:none;
}

.carousel-inner .solve-btn:hover {
    background-color: #18d2f3; 
    border:none;
}

.text-center {
    text-align: center;
}

.vh-100 {
    height: 100vh;
}
.carousel-indicators li {
    text-indent: -9999px;
    overflow: hidden;
}
.navbar-brand {
    color: red; 
    font-size: 18px; 
    font-weight: bold; 
}

.nav-link.btn {
    color: white; 
    background-color: red; 
    border-color: red; 
}

.nav-link.btn:hover {
    background-color: #ff6666; 
    color: white; 
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.custom-animation {
    animation: fadeInOut 2s infinite;
}
@media (max-width: 768px) {
    .video-container {
        height: 50vh; 
    }

    .my-custom-btn {
        bottom: -20px; 
        padding: 10px 20px; 
        font-size: 16px; 
    }

    .navbar-brand {
        font-size: 14px !important; 
    }

    .carousel-item {
        height: 50vh; 
    }

    .bg-video {
        height: 50vh; 
    }
    .nav-link.btn {
        padding: 5px 10px; 
        font-size: 12px; 
        width: auto; 
        max-width: 100px; 
        display:flex;
    }
    .navbar-collapse {
        display: flex;
        justify-content: center; 
}
}