.image-carousel-blust {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.image-stack-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: auto;
  perspective: 1000px;
}

.image-box {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 1;
  transform: translateX(0) rotate(0deg) scale(0.9);

}

.image-box.front {
  z-index: 3;
  animation: lift-up 1.5s ease forwards;
}

.image-box.back-1 {
  z-index: 2;
  animation: slide-out-right 1.5s ease forwards;
  animation-delay: 0.3s;
}

.image-box.back-2 {
  z-index: 1;
  animation: slide-out-left 1.5s ease forwards;
  animation-delay: 0.3s;
}

@keyframes lift-up {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-20px) scale(1);
    opacity: 1;
  }
}


@keyframes slide-out-right {
  0% {
    transform: translateX(0) rotate(0deg) scale(0.9);
    opacity: 0.5;
  }
  100% {
    transform: translateX(33%) translateY(-20px) rotate(15deg) scale(0.9);
    opacity: 1;
  }
}



@keyframes slide-out-left {
  0% {
    transform: translateX(0) rotate(0deg) scale(0.9);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-30%) translateY(-10px) rotate(-15deg) scale(0.9);
    opacity: 1;
  }
}


.image-box img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* Mobile responsive */
@media (max-width: 768px) {
  .image-stack-container {
    width: 150px;
  }
  
  @keyframes slide-out-right {
    100% { transform: translateX(20%) rotate(10deg); }
  }
  
  @keyframes slide-out-left {
    100% { transform: translateX(-20%) rotate(-10deg); }
  }
}