document.addEventListener('DOMContentLoaded', function () {
  const backgroundVideos = document.querySelectorAll('video');
  backgroundVideos.forEach(video => {
    video.muted = true; // Ensure video is muted
    video.autoplay = true; // Ensure autoplay is enabled
  });
});