@font-face {
  font-family: NotoSerifLao-Regular;
  src: url(NotoSerifLao-Regular.ttf);
}
body {
    font-family: NotoSerifLao-Regular;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
  }

  .slider-container {
    overflow: hidden;
    position: relative;
    /* max-width: 80%; */
    margin: auto;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }

  .slider {
    display: flex;
    transition: transform 0.4s ease;
    touch-action: pan-y; /* Ensures touch gestures are smooth */

  }

  .slide {
    flex: 0 0 33.33%;
    /* For desktop */
    text-align: center;
    padding: 30px 0px 30px 0px;
    
  }

  .slide img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  }

  .slide .caption {
    margin-top: 10px;
  }

  .buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .button {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    pointer-events: auto;
  }

  .button:active {
    transform: scale(0.95);
  }

  @media screen and (max-width: 768px) {
    .slide {
      flex: 0 0 100%;
      /* For mobile */
    }

    .button {
      display: none;
    }

    .buttons {
      display: none;
    }
  }    body {
      font-family: NotoSerifLao-Regular;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background-color: #f0f0f0;
    }

    .slider-container {
      overflow: hidden;
      position: relative;
      /* max-width: 80%; */
      margin: auto;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
    }

    .slider {
      display: flex;
      transition: transform 0.4s ease;
    }

    .slide {
      flex: 0 0 33.33%;
      /* For desktop */
      text-align: center;
      padding: 30px 0px 30px 0px;
    }

    .slide img {
      max-width: 100%;
      border-radius: 10px;
    }

    .slide .caption {
      margin-top: 10px;
    }

    .buttons {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .button {
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 5px;
      pointer-events: auto;
    }

    .button:active {
      transform: scale(0.95);
    }

    @media screen and (max-width: 768px) {
      .slide {
        flex: 0 0 100%;
        /* For mobile */
      }

      .button {
        display: none;
      }

      .buttons {
        display: none;
      }
    }