.videoBgContainer {
    position: relative;
    overflow: hidden;
    background: none !important;
}

.video-foreground {
    position: relative;
    z-index: 3;
    background: none !important;
}

.video-shader {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 2;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    background-color: #000000;
}

.video-background {
    background: none !important;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* Add blur effect */
      filter: blur(1px);
    /* adjust 15px to your desired intensity */
}