/* Add this to your CSS file */
#landing-page-animated-bg.with-background-image {
  position: relative;
}

#landing-page-animated-bg.with-background-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/MainSite/images/bg-flag-about.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1; /* Place it behind the Vanta canvas */
}

/* Ensure content remains visible */
#landing-page-animated-bg.with-background-image .main-heading {
  position: relative;
  z-index: 2;
}