.container {
    padding-top: 0;
    padding-bottom: 0;
}
.carousel-caption{
    top: 5%;
    left: 15%;
    right: unset;
    bottom: unset;
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden; /* Ensures rounded corners */
}
.video-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
}
.video-preview {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 128, 128, 0.4); /* Blue-green color with opacity */
    border-radius: 50%; /* Rounded shape */
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(10px); /* Optional: adds a blur effect for more styling */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
    box-shadow: none;
}
.play-button::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid white; /* Triangle play icon */
    margin-left: 5px; /* Adjust positioning to center the icon */
}
.play-button:hover {
    background-color: rgba(0, 128, 128, 0.8); /* Change to green with opacity on hover */
}
.video-container video {
    display: none; /* Hide video by default */
}
.video-container.active .video-preview {
    display: none; /* Hide preview image when video is active */
}
.video-container.active video {
    display: block; /* Show video when active */
}
.mu-single-slide-content >h1, .mu-single-slide-content >h2, .mu-title h1, .mu-single-service-content h3, #carouselExampleControls .carousel-inner .carousel-caption h3,
#about-title h3, #about-title p, .mu-single-footer h3{font-family: inherit;}
.mu-single-slide-content .card .card-body, #mu-about .card .card-body{    padding: 1.25rem !important;}
.mu-single-slide-content .card .card-body .card-text a{    font-weight: normal;}
.mu-single-service-content p a{color: #6eacaf !important;}
.mu-single-service-content p a:hover, .mu-single-service-content p a:focus{color: #0075b4 !important;}
.mu-single-service-content p+p{margin-top: 0;}
#carouselExampleControls .carousel-inner .carousel-caption h3{color: #fff;}

#mu-banner-service {
    background-color: #fff;
    padding: 30px 0;
}

.carousel-inner {
    height: 350px;
}

.carousel-item {
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
}

.slider-overlay {
    width: 63%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 50px;
}

.slider-text {
    color: #fff;
    max-width: 50%;
    text-align: center;
}

.slider-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.slider-text p {
    font-size: 1.2rem;
    color: #000;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display:  none;
}

/* Responsive design */
@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }

    .video-preview {
        padding-top: 56.25%; /* Maintain the aspect ratio */
    }
    #mu-banner-service .container{max-width: 685px;}
    .carousel-inner{height: auto;}
    .carousel-item{height: 200px;}
    .slider-overlay{width: 100%; padding-left: 0;    justify-content: center;}
    .slider-text{max-width: 100%;text-align: left;}
    .slider-text h2{font-size: 1.7rem;}
    .slider-text p{font-size: 1.3rem;}
}
@media (max-width: 580px) {
    .carousel-inner{height: 310px;}
    .carousel-item{height: 100%;}
    .slider-overlay{width: 100%; padding-left: 0;justify-content: flex-start;align-items: flex-start;}
    .slider-text{max-width: 100%;text-align: left; padding-left: 15px; padding-top: 15px;}
    .slider-text h2{font-size: 1.7rem; color: #fff;}
    .slider-text p{font-size: 1.3rem;color: #fff;}
    .carousel-control-prev-icon,
    .carousel-control-next-icon{display: block;}
}

@media (max-width: 480px) {
    .carousel-inner{height: 195px;}
    .carousel-item{height: 100%;}
    .slider-overlay{width: 100%; padding-left: 0;justify-content: flex-start;align-items: flex-start;}
    .slider-text{max-width: 100%;text-align: left; padding-left: 15px; padding-top: 15px;}
    .slider-text h2{font-size: 1.2rem; color: #fff;}
    .slider-text p{font-size: 1rem;color: #fff;}
    .carousel-control-prev-icon,
    .carousel-control-next-icon{display: block;}
}