body553, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
}

.video-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
   z-index:-1 ;
}

.video-banner video {
    width: 100%;
    height: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner-text {
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    padding-top: 100px !important;
    color: #fff;
}

.heading {
    font-size: 150px;
    color: #fff !important;
}

.subheading {
    font-size: 30px;
    padding-top: 40px !important;
}

.overlay-image {
    position: absolute;
    bottom: 30px;
    right: 80px;
    width: 300px; /* You can adjust this */
    height: auto; 
}

.overlay-image img {
    width: 100%;
}


@media (max-width: 768px) {
    .video-banner {
        height: 60vh;
    }
    
    .heading {
        font-size: 75px; /* Larger font size */
    }
    
    .subheading {
        font-size: 20px;
        margin-top: 0px;
        padding-top: 0px !important;
    }
    
    .overlay-image {
        display: none; /* Hide image */
    }
}



@media all and (max-width: 480px) {
    .video-banner {
        height: 40%;
    }
  
/* Mobile responsiveness */
@media all and (max-width: 768px) {
    .video-banner {
        height: 50%;
    }
    
