.bg-parallax-zoom {
  position: relative;
  overflow: hidden;
  background-attachment: fixed; /* PARALLAX */
}

/* Create animated layer */
.bg-parallax-zoom::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit; /* fallback: use direct URL if needed */
  background-size: cover;
  background-position: center;
  transform: scale(1.05); /* base slight zoom */
  transition: transform 0.6s ease;
  z-index: 0;
}

/* Hover zoom */
.bg-parallax-zoom:hover::before {
  transform: scale(1.12);
}

/* Keep content above */
.bg-parallax-zoom > * {
  position: relative;
  z-index: 1;
}