.shiny-bg {

  background-image: url('https://deva-ai.com/storage/photos/sanitarywar.png');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

/* Shine effect overlay */
.shiny-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 3s ease-in-out infinite;
}

/* Keyframes for continuous shine movement */
@keyframes shine {
  from {
    left: -75%;
  }
  to {
    left: 125%;
  }
}
