.bgvideo-container {
      position: relative;
      width: 100%;
      height: 810px!important; /* Increased height */
      overflow: hidden;
    }
 
    .bgvideo-container iframe {
      position: absolute;
      top: 43%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100vw; /* Full width of the viewport */
      height: 56.25vw; /* Maintain 16:9 aspect ratio */
      min-width: 100%;
      pointer-events: none; /* Prevent interaction */
    }

    .bgvideo-container:hover iframe {
      pointer-events: none!important; /* Allow interaction on hover */
    }
    /* Responsive adjustments */


@media screen and (max-width: 480px) {
  .bgvideo-container { 
      position: relative;
      width: 100%;
      height: 325px!important; /* Increased height */
      overflow: hidden;
      margin-top: 90px;
    }

    .bgvideo-container iframe {
      position: absolute;
      top: 39%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100vw; /* Full width of the viewport */
      height: 56.25vw; /* Maintain 16:9 aspect ratio */
      min-width: 100%;
      pointer-events: none; /* Prevent interaction */
    }
}