* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
    }

    #suite-section {
      display: flex;
      height: 100vh;
      width: 100%;
    }

    /* LEFT TEXT SECTION */
    .text-content {
      width: 50%;
      background: #0D0B33;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px;
    }

    .text-content h2 {
      font-size: 50px;
      font-weight: bold;
    }

    .text-content h2 span {
      color: #a48aff;
      text-shadow: 0 0 8px #a48aff;
    }

    .text-content h3 {
      margin-top: 20px;
      font-size: 24px;
    }

    .text-content p {
      margin-top: 20px;
      line-height: 1.6;
      max-width: 500px;
      font-size: 16px;
    }

    /* RIGHT CAROUSEL SECTION */
    .carousel-container {
      position: relative;
      width: 50%;
      overflow: hidden;
    }

    .carousel-wrapper {
      display: flex;
      transition: transform 0.6s ease-in-out;
      width: 100%;
    }

    .carousel-wrapper img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
    }

    .arrow {
      position: absolute;
      bottom: 20px;
      width: 90px;
      height: 90px;
      border: 1px solid white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.3s;
      z-index: 10;
    }

    .arrow:hover {
      transform: scale(1.2);
    }

    .arrow.left {
      left: 20px;
    }

    .arrow.right {
      right: 20px;
    }

    .arrow div {
      font-size: 24px;
      color: white;
    }

    /* ✅ RESPONSIVE MOBILE */
    @media (max-width: 768px) {
      #suite-section {
        flex-direction: column;
        height: auto;
      }

      .carousel-container {
        width: 100%;
        height: 60vh;
      }

      .carousel-wrapper,
      .carousel-wrapper img {
        height: 100%;
      }

      .arrow {
        bottom: 10px;
        width: 50px;
        height: 50px;
      }

      .arrow div {
        font-size: 20px;
      }

      .text-content {
        width: 100%;
        padding: 20px 16px;
        text-align: left;
      }

      .text-content h2 {
        font-size: 28px;
        line-height: 1.3;
      }

      .text-content h3 {
        font-size: 18px;
        margin-top: 15px;
      }

      .text-content p {
        font-size: 15px;
        line-height: 1.5;
        max-width: 100%;
        margin-top: 15px;
      }
    } #suite-section-two {
    display: flex;
    height: 100vh;
    width: 100%;
  }

  .text-content-two {
    width: 50%;
    background: #0D0B33;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
  }

  .text-content-two h2 {
    font-size: 50px;
    font-weight: bold;
  }

  .text-content-two h2 span {
    color: #a48aff;
    text-shadow: 0 0 8px #a48aff;
  }

  .text-content-two h3 {
    margin-top: 20px;
    font-size: 24px;
  }

  .text-content-two p {
    margin-top: 20px;
    line-height: 1.6;
    max-width: 500px;
    font-size: 16px;
  }

  .carousel-container-two {
    position: relative;
    width: 50%;
    overflow: hidden;
  }

  .carousel-wrapper-two {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
  }

  .carousel-wrapper-two img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }

  .arrow-two {
    position: absolute;
    bottom: 20px;
    width: 90px;
    height: 90px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 10;
  }

  .arrow-two:hover {
    transform: scale(1.2);
  }

  .arrow-two.left-two {
    left: 20px;
  }

  .arrow-two.right-two {
    right: 20px;
  }

  .arrow-two div {
    font-size: 24px;
    color: white;
  }

  @media (max-width: 768px) {
    #suite-section-two {
      flex-direction: column;
      height: auto;
    }

    .carousel-container-two {
      width: 100%;
      height: 60vh;
    }

    .carousel-wrapper-two,
    .carousel-wrapper-two img {
      height: 100%;
    }

    .arrow-two {
      bottom: 10px;
      width: 50px;
      height: 50px;
    }

    .arrow-two div {
      font-size: 20px;
    }

    .text-content-two {
      width: 100%;
      padding: 20px 16px;
      text-align: left;
    }

    .text-content-two h2 {
      font-size: 28px;
      line-height: 1.3;
    }

    .text-content-two h3 {
      font-size: 18px;
      margin-top: 15px;
    }

    .text-content-two p {
      font-size: 15px;
      line-height: 1.5;
      max-width: 100%;
      margin-top: 15px;
    }
  }
  #suite-section-three {
    display: flex;
    height: 100vh;
    width: 100%;
  }

  .text-content-three {
    width: 50%;
    background: #0D0B33;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
  }

  .text-content-three h2 {
    font-size: 50px;
    font-weight: bold;
  }

  .text-content-three h2 span {
    color: #a48aff;
    text-shadow: 0 0 8px #a48aff;
  }

  .text-content-three h3 {
    margin-top: 20px;
    font-size: 24px;
  }

  .text-content-three p {
    margin-top: 20px;
    line-height: 1.6;
    max-width: 500px;
    font-size: 16px;
  }

  .carousel-container-three {
    position: relative;
    width: 50%;
    overflow: hidden;
  }

  .carousel-wrapper-three {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
  }

  .carousel-wrapper-three img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }

  .arrow-three {
    position: absolute;
    bottom: 20px;
    width: 90px;
    height: 90px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 10;
  }

  .arrow-three:hover {
    transform: scale(1.2);
  }

  .arrow-three.left-three {
    left: 20px;
  }

  .arrow-three.right-three {
    right: 20px;
  }

  .arrow-three div {
    font-size: 24px;
    color: white;
  }

  @media (max-width: 768px) {
    #suite-section-three {
      flex-direction: column;
      height: auto;
    }

    .carousel-container-three {
      width: 100%;
      height: 60vh;
    }

    .carousel-wrapper-three,
    .carousel-wrapper-three img {
      height: 100%;
    }

    .arrow-three {
      bottom: 10px;
      width: 50px;
      height: 50px;
    }

    .arrow-three div {
      font-size: 20px;
    }

    .text-content-three {
      width: 100%;
      padding: 20px 16px;
      text-align: left;
    }

    .text-content-three h2 {
      font-size: 28px;
      line-height: 1.3;
    }

    .text-content-three h3 {
      font-size: 18px;
      margin-top: 15px;
    }

    .text-content-three p {
      font-size: 15px;
      line-height: 1.5;
      max-width: 100%;
      margin-top: 15px;
    }
  }  #luxury-suite-section {
    display: flex;
    height: 100vh;
    width: 100%;
  }

  .luxury-text-content {
    width: 50%;
    background: #0D0B33;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
  }

  .luxury-text-content h2 {
    font-size: 50px;
    font-weight: bold;
  }

  .luxury-text-content h2 span {
    color: #a48aff;
    text-shadow: 0 0 8px #a48aff;
  }

  .luxury-text-content h3 {
    margin-top: 20px;
    font-size: 24px;
  }

  .luxury-text-content p {
    margin-top: 20px;
    line-height: 1.6;
    max-width: 500px;
    font-size: 16px;
  }

  .luxury-carousel-container {
    position: relative;
    width: 50%;
    overflow: hidden;
  }

  .luxury-carousel-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
  }

  .luxury-carousel-wrapper img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }

  .luxury-arrow {
    position: absolute;
    bottom: 20px;
    width: 90px;
    height: 90px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 10;
  }

  .luxury-arrow:hover {
    transform: scale(1.2);
  }

  .luxury-left {
    left: 20px;
  }

  .luxury-right {
    right: 20px;
  }

  .luxury-arrow div {
    font-size: 24px;
    color: white;
  }

  @media (max-width: 768px) {
    #luxury-suite-section {
      flex-direction: column;
      height: auto;
    }

    .luxury-carousel-container {
      width: 100%;
      height: 60vh;
    }

    .luxury-carousel-wrapper,
    .luxury-carousel-wrapper img {
      height: 100%;
    }

    .luxury-arrow {
      bottom: 10px;
      width: 50px;
      height: 50px;
    }

    .luxury-arrow div {
      font-size: 20px;
    }

    .luxury-text-content {
      width: 100%;
      padding: 20px 16px;
      text-align: left;
    }

    .luxury-text-content h2 {
      font-size: 28px;
      line-height: 1.3;
    }

    .luxury-text-content h3 {
      font-size: 18px;
      margin-top: 15px;
    }

    .luxury-text-content p {
      font-size: 15px;
      line-height: 1.5;
      max-width: 100%;
      margin-top: 15px;
    }
  }