
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



     .demo-content {
            text-align: center;
            color: white;
        }

        .demo-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .demo-content p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Floating Buttons Container */
        .floating-buttons {
            position: fixed;
            bottom: 10px;
            right: 30px;
            display: flex;
            gap: 15px;
            z-index: 1000;
        }

        /* Button Base Style */
        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            animation: pulse 2s infinite;
        }

        /* Call Button */
        .call-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .call-btn:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }

        .whatsapp-btn:hover {
            transform: scale(1.1) rotate(-10deg);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }

        /* Pulse Animation */
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            }
            50% {
                box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 0 0 10px rgba(255,255,255,0.1);
            }
        }

        /* Icon Animation on Hover */
        .float-btn i {
            transition: transform 0.3s ease;
        }

        .float-btn:hover i {
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .floating-buttons {
                bottom: 20px;
                right: 20px;
                gap: 12px;
            }

            .float-btn {
                width: 55px;
                height: 55px;
                font-size: 24px;
            }

            .demo-content h1 {
                font-size: 2rem;
            }

            .demo-content p {
                font-size: 1rem;
            }
        }

        /* Ripple Effect */
        .float-btn::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .float-btn:active::before {
            opacity: 1;
            transform: scale(1.5);
        }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #24292f;
  padding: 15px 40px;
}

.logo {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  transition: max-height 0.4s ease;
}

.nav-links li a {
  text-decoration: none;
  color: #f6f8fa;
  font-size: 1.05rem;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: #fff;
  color: #24292f;
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 28px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

@media (max-width: 850px) {
  .navbar {
    padding: 10px 16px;
  }
  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    flex-direction: column;
    background: #24292f;
    width: 200px;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    z-index: 20;
  }
  .nav-links.open {
    max-height: 300px;
    padding: 16px 0;
  }
  .hamburger {
    display: flex;
  }
}


        .main_body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: whitesmoke;
            padding: 20px;
        }

        .luxury-rooms-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

        .rooms-header-section {
            margin-bottom: 30px;
        }

        .rooms-subtitle-text {
            color: #8b7355;
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .rooms-main-title {
            color: #2c2c2c;
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .rooms-carousel-outer-wrapper {
            position: relative;
            overflow: hidden;
        }

        .rooms-carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 20px;
        }

        .rooms-carousel-card {
            min-width: calc(33.333% - 14px);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .rooms-carousel-card:hover {
           transform: scale(1.05);
            box-shadow: 0 0px 30px rgba(0, 0, 0, 0.4);
        }

        .rooms-carousel-card img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .room-card-details {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
            color: white;
        }

        .room-price-label {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .room-name-title {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .rooms-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
            border: 2px solid rgba(139, 115, 85, 0.2);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #8b7355;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        .rooms-nav-button i {
            transition: transform 0.3s ease;
        }

        .rooms-nav-button::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            padding: 2px;
            background: linear-gradient(135deg, #8b7355, #d4af37);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .rooms-nav-button:hover::before {
            opacity: 1;
        }

        .rooms-nav-button:hover {
            background: linear-gradient(135deg, #8b7355 0%, #6d5940 100%);
            color: white;
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 12px 32px rgba(139, 115, 85, 0.3), 0 4px 12px rgba(0,0,0,0.15);
            border-color: transparent;
        }

        .rooms-nav-button:hover i {
            transform: scale(1.2);
        }

        .rooms-nav-button:active {
            transform: translateY(-50%) scale(1.05);
        }

        .rooms-nav-button.rooms-btn-prev {
            left: 0;
        }

        .rooms-nav-button.rooms-btn-next {
            right: 0;
        }

        .rooms-pagination-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .rooms-dot-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .rooms-dot-indicator.dot-active {
            background: #8b7355;
            width: 30px;
            border-radius: 5px;
        }

        @media (max-width: 1024px) {
            .rooms-carousel-card {
                min-width: calc(50% - 10px);
            }

            .rooms-main-title {
                font-size: 36px;
            }

            .rooms-carousel-card img {
                height: 400px;
            }

            .room-name-title {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .rooms-carousel-outer-wrapper {
                /* padding: 0 40px; */
            }

            .rooms-carousel-card {
                min-width: 100%;
            }

            .rooms-main-title {
                font-size: 32px;
            }

            .rooms-carousel-card img {
                height: 350px;
            }

            .room-name-title {
                font-size: 24px;
            }

            .rooms-nav-button {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 15px;
            }

            .rooms-carousel-outer-wrapper {
                /* padding: 0 35px; */
            }

            .rooms-main-title {
                font-size: 28px;
            }

            .rooms-carousel-card img {
                height: 300px;
            }

            .room-card-details {
                padding: 20px;
            }

            .room-name-title {
                font-size: 22px;
            }

            .room-price-label {
                font-size: 12px;
            }

            .rooms-nav-button {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
        }






        .youtube-embed {
  position: relative;
  padding-bottom: 36%;
  width: 100%;
  text-align: left;
}

.youtube-embed iframe {
  width: 100%;
  position: absolute;
  height: 100%;
  overflow: hidden;
}



/* ====================================================== */




        /* ===== Carousel Section Styling ===== */
#image-carousel-section {
  position: relative;
  width: 100%;
  height: 500px;
background-color: #ebebeb;
  overflow: hidden;
}

/* ===== Carousel Core ===== */
.carousel {
  --size: min(70vw, 70vh);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: var(--size);
  perspective: calc(var(--size) * 1.6);
  transform-style: preserve-3d;
  opacity: 0;
  transition: opacity 0.25s linear;
}

.carousel.ready {
  opacity: 1;
}

.slide {
  position: absolute;
  width: calc(var(--size) * 0.6);
  height: var(--size);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slide img:hover {
  transform: scale(1.05);
}



/* =============================================== */

  :root {
      --dark-green: #9cc675;
      --dark-yellow: #e89a3d;
      --extra-light-brown: #fdf0d7;
      --light-brown: #ecd5ab;
      --dark-brown: #915b40;
    }

    .main_cbod {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 14px;
      color: #000;
      margin: 0;
      padding: 0;
      background: var(--light-brown);
    }

    /* ===== Custom Carousel Section ===== */
    .slider-xz89-container {
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .carousel-xz89-mobile {
      position: relative;
      margin: 50px auto;
      padding-bottom: 50px;
    }

    .carousel-xz89-mobile:before {
      content: "";
      width: 265px;
      background-size: 100%;
      background-repeat: no-repeat;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 565px;
      z-index: 2;
      margin: auto;
    }

    .carousel-xz89-mobile .slide-xz89-item {
      height: 100%;
    }

    .carousel-xz89-mobile .slide-xz89-item img {
      width: 100%;
      height: 530px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.3s ease;
    }

    .slide-xz89-item.swiper-slide-active img {
      border-radius: 0;
      transform: scale(1.05);
    }

    h1.xz89-heading {
      font-size: 36px;
      margin-top: 30px;
    }

    p.xz89-subtext {
      font-size: 18px;
      font-weight: 300;
      color: #333;
      margin-bottom: 40px;
    }

    .xz89-button-next,
    .xz89-button-prev {
      color: #915b40;
    }

    .xz89-pagination-bullet {
      background: #915b40;
      opacity: 0.7;
    }

    .xz89-pagination-bullet-active {
      opacity: 1;
      background: #e89a3d;
    }








     .pg_360_uniq_a7 {
      display: flex;
      gap: 50px;
      max-width: 1200px;
      width: 100%;
    }

    /* Viewer Section */
    .vwr_sec_x5 {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .vwr_box_x5 {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      border: 1px solid #eee;
      display: grid;
      place-items: center;
    }

    .cnv_x5 {
      width: 100%;
      height: 100%;
      display: block;
    }

    .ctrl_grp_x5 {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
    }

    .btn_x5 {
      border: none;
      padding: 8px 16px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      font-size: 14px;
      background: #6c3df9;
      color: white;
      transition: background 0.2s;
    }

    .btn_x5:hover {
      background: #5632c6;
    }

    .inf_x5 {
      font-size: 13px;
      color: #777;
    }

    /* Product Info */
    .prod_info_x5 {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding-top: 10px;
    }

    .prod_title_x5 {
      font-size: 22px;
      font-weight: 600;
    }

    .prod_price_x5 {
      font-size: 20px;
      font-weight: 700;
      color: #4c1d95;
    }

    .install_x5 {
      background: #f9f9fb;
      padding: 12px;
      border-radius: 8px;
      font-size: 14px;
      color: #444;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .tabby_x5 {
      background: #00b67a;
      color: white;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 6px;
    }

    .cart_btn_x5 {
      background: #6c3df9;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 14px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
    }

    .cart_btn_x5:hover {
      background: #5632c6;
    }

    .delv_x5 {
      font-size: 14px;
      color: #666;
      margin-top: 4px;
    }

    @media(max-width: 850px){
      .pg_360_uniq_a7 {
        flex-direction: column;
      }
    }


