.images-home-hero-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.image {
  display: block;
  border-radius: 12px;
  will-change: transform;
  transition: transform 0.3s ease-out;
}
.home-hero-1 {
  width: 100%;
  z-index: 1;
  animation: floatMain 6s ease-in-out infinite;
}

/* 4. Floating Card Left (hero8.webp) */
.home-hero-2-wrapper {
  position: absolute;
  top: 15%;
  left: 0;
  z-index: 3;
  width: 25%;
  animation: floatCard 5s ease-in-out infinite alternate;
}
.home-hero-3-wrapper {
  position: absolute;
  bottom: 10%;
  right: 0;
  z-index: 2;
  width: 28%;
  animation: floatCard 4s ease-in-out infinite alternate-reverse;
}
.image.home-hero-2, .image.home-hero-3 {
  width: 100%;
  height: auto;
  box-shadow: 0 3px 52px rgba(31, 37, 89, .09);
  border-radius
}
@keyframes floatMain {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-35px); }
}
@keyframes floatCard {
  0% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  100% { transform: translate3d(5px, -35px, 0) rotate(1deg); }
}

@media (max-width: 767px) {
  .home-hero-2-wrapper { width: 35%; }
  .home-hero-3-wrapper { width: 40%; }
}