body{
  font-family: Arial, Helvetica, sans-serif;
}
@keyframes fadeIn {
  0% {opacity: 0; transform: translateY(10px);}
  100% {opacity: 1; transform: translateY(0);}
}
.animate-fadeIn{
  animation: fadeIn .3s ease-in-out;
}

/* SLide Bukti */
.buktiSwiper {
  padding-bottom: 80px;
}
.buktiSwiper .swiper-pagination {
  bottom: 0 !important;
}
.buktiSwiper .swiper-slide {
  opacity: 0.25;
  transform: scale(0.85) translateY(25px);
  filter: blur(1.5px);
  transition: all 0.45s ease;
}
.buktiSwiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
  z-index: 10;
}
.bukti-overlay::before,
.bukti-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 20;
  pointer-events: none;
}
.bukti-overlay::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}
.bukti-overlay::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}
.bukti-card {
  transition: all 0.45s ease;
}