.slider-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Clean animation approach - each slide fades in/out in sequence */
    animation: slideShow 16s infinite;
    opacity: 0;
  }

  .slide-1 {
    animation-delay: 0s;
  }

  .slide-2 {
    animation-delay: 4s;
  }

  .slide-3 {
    animation-delay: 8s;
  }

  .slide-4 {
    animation-delay: 12s;
  }

  /* Simplified keyframe animation for smooth fade transitions */
  @keyframes slideShow {
    0% { opacity: 0; }
    6.25% { opacity: 1; }
    25% { opacity: 1; }
    31.25% { opacity: 0; }
    100% { opacity: 0; }
  }