    .slider-container {
      width: 100%;
      margin: auto;
      overflow: hidden;
      position: relative;
      border-radius: 20px;
      background: #000;
    }

    .slider-wrapper {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }

    .slide {
      width: 100%;
      flex-shrink: 0;
    }

    .slide img {
      width: 100%;
      object-fit: cover;
      display: block;
    }

    .bullets {
      text-align: center;
      margin-top: 15px;
    }

    .dot {
      display: inline-block;
      width: 14px;
      height: 14px;
      margin: 0 6px;
      background-color: #ccc;
      border-radius: 50%;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .dot.active {
      background-color: #333;
    }