@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #020202;
  --primary-color1: #333333;
  --secondary-color: #4a4848;
  /* --secondary-color1		: #d08c27; */
  --secondary-color1: #a87e00;
  --secondary-color2: #083f60;
  --secondary-color3: #c89d49;
  /* --secondary-color3		: #a78e59; */
  --secondary-color4: #c89d49;
  --text-color: #eadec8;
  --arrow-color: #eadec8;
  --accent-color: #ffc107;
  --white-color: #ffffffcf;
  /* --white-color: #ffffff; */
  --divider-color: #eaeaea;
  --dark-divider-color: #ffffff1a;
  --btn-color: #e7f4f9;
  --btn6-color: #efb708;
  --btn1-color: #a78b76;
  --othr-color: #612e11;
  --white: #ffffff;
  --off-white: #f7f5f2;
  --charcoal: #1a1a1a;
  --mid: #666;
  --light: #aaa;
  --border: #e8e8e8;
  --gold: #b8924a;
  --gold-light: rgba(184, 146, 74, 0.12);
  --dark: #1d1d1f;
  --grey: #676767;
  --white: #ffffff;
  --radius: 20px;
  --light-line: rgba(255, 255, 255, 0.12);
  --default-font: "Raleway", sans-serif;
  --default-font1: "Lato", sans-serif;
  --default-font2: "Source Serif 4", serif;
  --default-font3: "Cormorant Garamond";
  /* --default-font3: "Cormorant", serif; */
  /* --accent-font			: "Montserrat", sans-serif; */
  /* --center-width: 300px;
  --side-width: 200px;
  --gap: 20px;
  --duration: 0.8s; */
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  font-size: 20px !important;
}

html {
  font-size: 100%;
}

a {
  text-decoration: none !important;
}

p {
  line-height: 1.8em;
  margin-bottom: 0px !important;
  margin-top: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--default-font);
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
  margin-bottom: 0px !important;
}

figure {
  margin: 0 !important;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.image-anime {
  position: relative;
  overflow: hidden;
  /* border: 2px solid var(--secondary-color1); */
}

.image-anime img {
  width: 100% !important;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.image-anime:hover {
  border: 2px solid transparent;
}

/* .fade-i {
  opacity: 0;
  animation: fadeIn 1.2s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.fade-i {
  opacity: 0;
  transition:
    opacity 3s ease,
    transform 3s ease;
}

.fade-i.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-anime.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal,
.reveal1 {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}

.reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: left;
  transform: translateX(-100%);
  transition: transform 1s ease-out;
}

.reveal.show img {
  transform: translateX(0);
}

.reveal1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform-origin: right;
  transform: translateX(100%);
  transition: transform 1s ease-out;
}

.reveal1.show img {
  transform: translateX(0);
}

.header1 {
  width: 100%;
  height: auto;
  z-index: 999;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

header.sticky {
  background-size: 100% 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* transform: translateY(0); */
  /* background: rgba(255, 255, 255, 0.8); */
  background: rgba(0, 0, 0, 0.92);
}

/* header.sticky .navbar-light .navbar-nav .nav-link {
  color: var(--primary-color) !important;
} */
/* header.sticky .logo {
  filter: invert(1) brightness(0.1) contrast(2);
} */
/* header.sticky #primary li a:before {
  background: var(--primary-color);
} */
/* header.sticky .nav-btn-text {
  color: var(--primary-color) !important;
}
header.sticky .dropdown-toggle::after {
  color: var(--primary-color) !important;
} */

.navbar-expand-lg .navbar-collapse {
  justify-content: center !important;
}
.logo {
  color: #fff;
}

.logo img {
  width: 125px;
  height: auto;
}

.navbar-light .navbar-nav .nav-link {
  font-size: 90% !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  color: var(--primary-color) !important;
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
  font-family: var(--default-font3) !important;
  position: relative;
  z-index: 10;
  width: auto;
}
.navbar-light .navbar-nav .nav-link:hover {
  /* background-color: var(--white-color) !important; */
  color: var(--primary-color);
}
.navbar-expand-lg .navbar-nav {
  justify-content: center !important;
}

/* .navbar-light .navbar-nav .nav-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px 60px !important;
  border: 1px solid var(--primary-color) !important;
  border-radius: 50px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1) !important;
  text-decoration: none !important;
  color: var(--primary-color) !important;
  text-transform: capitalize !important;
  transition: background 0.3s ease, color 0.3s ease !important;
} */

.navbar-light .navbar-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  height: 100%;
  /* border: 1px solid var(--primary-color); */
  border-radius: 50px;
  overflow: hidden;
  /* background: rgba(255, 255, 255, 0.1); */
  color: var(--white-color);
  text-decoration: none;
}

/* INVISIBLE WIDTH HOLDER */
.nav-btn-spacer {
  visibility: hidden;
  white-space: nowrap;
  font-size: inherit;
  font-weight: inherit;
}

/* ANIMATED TEXT */
.nav-btn-text,
.nav-btn-text-hover {
  position: absolute;
  white-space: nowrap;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.nav-btn-text {
  transform: translateY(0);
  opacity: 1;
}

.nav-btn-text-hover {
  transform: translateY(120%);
  opacity: 0;
}

.nav-link:hover .nav-btn-text {
  transform: translateY(-120%);
  opacity: 0;
}

.nav-link:hover .nav-btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

.nav-btn-text,
.nav-btn-text-hover {
  position: absolute;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  color: #000 !important;
}

.nav-btn-text {
  transform: translateY(0);
  opacity: 1;
  color: var(--white-color) !important;
}
.dropdown-toggle:hover::after {
  color: #000 !important;
}

.nav-btn-text-hover {
  transform: translateY(100%);
  opacity: 0;
}

.nav-link:hover {
  background-color: #fff;
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
}

.nav-link:hover .nav-btn-text {
  transform: translateY(-100%);
  opacity: 0;
  color: var(--primary-color) !important;
}

.nav-link:hover .nav-btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Dropdown Menu Styles */
/* Dropdown menu style */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: none;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Submenu positioning */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.3rem;
  margin-top: -0.5rem;
  border-radius: 12px;
  display: none;
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Dropdown item styling */
.dropdown-item {
  color: #000;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.dropdown-item:hover {
  background: #f0f0f0;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    display: block;
    margin: 0;
    box-shadow: none;
  }
}

.dropdown-toggle::after {
  color: var(--primary-color) !important;
  position: absolute;
  right: 10px;
}

.logo-btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--secondary-color3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: var(--default-font);
  border: 1px solid var(--secondary-color3);
}
.logo-btn:hover {
  background-color: var(--secondary-color1);
  color: var(--white-color);
}

.title {
  font-size: 50px !important;
  color: var(--primary-color1);
  font-family: var(--default-font);
  /* text-transform: capitalize; */
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}
.title span {
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.sub-head {
  font-size: 16px;
  color: var(--secondary-color3);
  /* font-family: var(--default-font2); */
  font-weight: 500;
  font-style: italic;
  position: relative;
  display: inline-block;
  width: 100%;
  width: fit-content;
  border-radius: 100px;
  margin-bottom: 10px !important;
  font-family: "Cinzel", serif;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.cen {
  display: block;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.para {
  font-size: 85%;
  color: var(--secondary-color);
  font-weight: 500;
  font-family: var(--default-font1);
  text-align: left;
  padding-top: 10px;
  line-height: normal;
  line-height: 26px;
  margin-top: 0px !important;
}

/* ***************** whatsapp icon *****************  */

.whatsapp-float {
  position: fixed;
  right: 20px;
  /* left side */
  bottom: 20px;
  /* distance from bottom */
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #25d366, #128c7e, #075e54, #34b7f1);
  background-size: 300% 300%;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: gradientMove 5s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: #fff;
  box-shadow: 3px 3px 15px rgba(18, 140, 126, 0.5);
}

/* Bounce animation */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  /* bounce up 10px */
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
  background: var(--primary);
  color: #fff;
  padding: 5px 16px;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
  transition:
    background 0.3s,
    transform 0.3s;
  border: 3px solid #fff;
  animation: bounce 2s infinite;
  /* apply animation */
}

/* ****************** */

.sticky-top::after {
  width: 100%;
  height: 3px;
  background: linear-gradient(332deg, #901007, #113391, #901007);
  background-size: 300% 300%;
  animation: gradientMove 3s ease infinite;
  content: "";
  left: 0;
  right: 0;

  bottom: 0;
  z-index: 5;
  position: absolute;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* button */

/* Base Button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
  font-family: var(--default-font1);
}

/* White Variant */
.button.is-white {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.button.is-white:hover {
  background-color: #fff;
  color: #000;
}

/* Text Animation */
.button-block {
  position: relative;
  overflow: hidden;
}

.button-text,
.button-text-hover {
  display: block;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.button-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  opacity: 0;
}

.button:hover .button-text {
  transform: translateY(-100%);
  opacity: 0;
}

.button:hover .button-text-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Icon Animation */
.button-icon-block {
  display: inline-flex;
  margin-left: 8px;
  position: relative;
  width: 18px;
  height: 18px;
}

.button-icon,
.button-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.button-icon-hover {
  transform: translate(-100%, 100%);
  opacity: 0;
}

.button:hover .button-icon {
  transform: translate(100%, -100%);
  opacity: 0;
}

.button:hover .button-icon-hover {
  transform: translate(0, 0);
  opacity: 1;
}

/* Base Button */
.button.is-white {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  color: #fff;
}
.btn-animated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  padding: 20px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  margin-top: 10px;
}

/* Light Variant (Instant Color Change) */
.btn-light {
  background: var(--secondary-color1);
  border: 1px solid #fff;
  color: var(--white-color);
}

.btn-light:hover {
  background: var(--secondary-color4); /* instant hover color */
  border-color: var(--secondary-color4);
  color: var(--white-color);
}
.btn-light1 {
  background: transparent;
  border: 2px solid var(--secondary-color3);
  color: var(--primary-color);
}

.btn-light1:hover {
  background: var(--secondary-color4); /* instant hover color */
  border-color: var(--secondary-color4);
  color: var(--white-color);
}

/* Text Animation */
.btn-text-wrap {
  position: relative;
  overflow: hidden;
}

.btn-text,
.btn-text-hover {
  display: block;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease;
}

.btn-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  opacity: 0;
}

.btn-animated:hover .btn-text {
  transform: translateY(-100%);
  opacity: 0;
}

.btn-animated:hover .btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Icon Animation */
.btn-icon-wrap {
  display: inline-flex;
  margin-left: 8px;
  position: relative;
  width: 18px;
  height: 18px;
}

.btn-icon,
.btn-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease;
}

.btn-icon-hover {
  transform: translate(-100%, 100%);
  opacity: 0;
}

.btn-animated:hover .btn-icon {
  transform: translate(100%, -100%);
  opacity: 0;
}

.btn-animated:hover .btn-icon-hover {
  transform: translate(0, 0);
  opacity: 1;
}

/* banner */

/* ----- UTILITY / REUSABLE CLASSES (matching Bricksio-like structure) ----- */
.rt-position-relative {
  position: relative;
}
.rt-overflow-hidden {
  overflow: hidden;
}
.rt-no-margin {
  margin: 0;
}
.rt-text-white {
  color: #ffffff;
}
.rt-full-height {
  height: 100%;
}
.rt-container-big {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  .rt-container-big {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.rt-hero-v2 {
  position: relative;
  background-color: #111;
  width: 100%;
}
.rt-hero-v2-timeline-wrapper {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 15;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .rt-hero-v2-timeline-wrapper {
    bottom: 20px;
  }
}
.rt-hero-v2-grid-line-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.rt-hero-v2-slide-nav-container {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  padding: 10px;
  border-radius: 20px;
  position: absolute;
  bottom: 50px;
  left: 4%;
  width: 400px;
}
@media (max-width: 640px) {
  .rt-hero-v2-slide-nav-container {
    gap: 12px;
    padding: 8px 16px;
  }
}
.rt-hero-v2-slide-nav-content {
  cursor: pointer;
  border-radius: 14px;
  transition: all 0.25s ease;
  width: 182px;
  position: relative;
}
@media (max-width: 680px) {
  .rt-hero-v2-slide-nav-content {
    width: 110px;
  }
}
@media (max-width: 480px) {
  .rt-hero-v2-slide-nav-content {
    width: 80px;
  }
}
.rt-home-three-slide-nav-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.rt-hero-v2-small-image {
  width: 100%;
  height: 100% !important;
  min-height: 80px !important;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.rt-hero-v2-slide-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition:
    background-color 0.3s ease,
    opacity 0.3s;
  pointer-events: none;
  border-radius: 14px;
}
.rt-slide-nav-background-color {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--gold);
  transition: width 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  height: 4px;
  border-radius: 4px;
  width: 0%;
  z-index: 3;
}
/* slider wrapper */
.rt-hero-v2-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .rt-hero-v2-slider-wrapper {
    min-height: 580px;
    height: 90vh;
  }
}
.w-slider-mask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.w-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform, opacity;
  transition:
    opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0ms linear;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}
.w-slide.active-slide {
  opacity: 1;
  visibility: visible;
  z-index: 10;
  position: relative;
}
.rt-hero-v2-image-wrapper {
  width: 100%;
  height: 100%;
}
.rt-hero-v2-image {
  width: 100%;
  height: 100%;
}
.rt-hero-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rt-hero-v2-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 100%
  ); */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.15) 65%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}
.rt-hero-v2-text-wrapper {
  position: absolute;
  bottom: 35%;
  left: 0;
  right: 0;
  max-width: 780px;
  margin-left: 40px;
  z-index: 20;
}
@media (max-width: 900px) {
  .rt-hero-v2-text-wrapper {
    bottom: 22%;
    margin-left: 30px;
    margin-right: 30px;
    max-width: 90%;
  }
}
@media (max-width: 640px) {
  .rt-hero-v2-text-wrapper {
    bottom: 20%;
    margin-left: 20px;
  }
}
.rt-overflow-hidden {
  overflow: hidden;
}
.hero-v1-heading-wrapper {
  margin-bottom: 28px;
}
.hero-v1-heading-wrapper h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  transform: translateY(0%);
  transition:
    transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1),
    opacity 0.5s ease;
  font-family: var(--default-font);
}
.hero-v1-heading-wrapper h1 span {
  background: linear-gradient(
    135deg,
    #e8c97a 0%,
    #c9973a 40%,
    #a67520 70%,
    #d4a843 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rt-gap-small {
  margin-bottom: 0;
}
.rt-home-two-button-wrapper {
  overflow: hidden;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}
/* button design */

/* custom dots navigation (slider nav) */
.rt-home-three-hero-timeline {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 14px;
  z-index: 25;
}
.w-slider-dot {
  width: 48px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
}
.w-slider-dot.w-active {
  background-color: #c6a43b;
  width: 72px;
}
@media (max-width: 640px) {
  .w-slider-dot {
    width: 32px;
  }
  .w-slider-dot.w-active {
    width: 48px;
  }
}
/* arrows for mobile optional */
.rt-desktop-display-none {
  display: none;
}
.rt-slider-absolute-pointer {
  display: none;
}
/* active thumbnail overlay + background bar */
.rt-hero-v2-slide-nav-content.active-thumb .rt-hero-v2-slide-nav-overlay {
  background-color: rgba(0, 0, 0, 0.55);
  opacity: 1;
}
.rt-hero-v2-slide-nav-content.active-thumb .rt-slide-nav-background-color {
  width: 100% !important;
}
/* transition for heading and button inside slides */
.slide-content-animate {
  animation: fadeUpIn 0.7s forwards cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
@keyframes fadeUpIn {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* accessibility and pointer events */
.rt-hero-v2-slide-nav-content {
  pointer-events: auto;
}

/* about start */

.section {
  padding: 100px 0 0px;
  background: #fff;
}

/* ── TOP ROW ── */
.top-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 90px;
}

/* ── COLLAGE ── */
.collage {
  position: relative;
  flex: 0 0 480px;
  height: 400px;
}

.award-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
}

.award-number {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  color: #1a1a1a;
  letter-spacing: -2px;
  display: flex;
  align-items: flex-start;
  gap: 1px;
}

.award-number .plus {
  font-size: 32px;
  color: #b8924a;
  font-weight: 400;
  margin-top: 10px;
}

.award-label {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  margin-top: 6px;
}

/* Tall right image — buildings */
.img-tall {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
}

.img-tall img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Wide overlapping image — interior, bottom-left */
.img-wide {
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 400px;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.img-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.img-tall:hover img,
.img-wide:hover img {
  transform: scale(1.04);
}

/* ── RIGHT TEXT ── */
.right-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* .right-text h2 {
  font-family: var(--default-font);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.22;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  max-width: 400px;
}

.right-text p {
  font-size: 14px;
  line-height: 1.72;
  color: #777;
  font-weight: 300;
  max-width: 370px;
  font-family: var(--default-font);
} */

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid #e8e8e8;
  padding-top: 52px;
  gap: 0;
  margin-top: 60px;
}

.stat-cell {
  padding-right: 40px;
}

.stat-cell + .stat-cell {
  padding-left: 40px;
  padding-right: 40px;
  border-left: 1px solid #e8e8e8;
}

.stat-cell:last-child {
  padding-right: 0;
}

.stat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.stat-num-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-number {
  font-family: var(--default-font);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: #1a1a1a;
  letter-spacing: -2px;
  display: flex;
  align-items: flex-start;
  gap: 1px;
}

.stat-number .sym {
  font-size: 26px;
  color: var(--gold);
  font-weight: 400;
  margin-top: 8px;
  padding-left: 10px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  font-family: var(--default-font);
}

.stat-icon {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  color: var(--gold);
}

.stat-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #888;
  font-weight: 300;
  max-width: 260px;
  font-family: var(--default-font);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .top-row {
    flex-direction: column;
    gap: 48px;
  }
  .collage {
    flex: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .right-text h2 {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stat-cell {
    padding: 32px 0 !important;
    border-left: none !important;
    border-bottom: 1px solid #e8e8e8;
  }
  .container {
    padding: 0 24px;
  }
  .collage {
    height: 340px;
  }
  .img-tall {
    width: 220px;
  }
  .img-wide {
    width: 230px;
    height: 180px;
  }
  .award-number {
    font-size: 56px;
  }
}

/* video start */

/* MAIN SECTION — tall scroll area (200vh) for smooth effect */
.rt-video-wrapper {
  position: relative;
  width: 100%;
  height: 180vh;
  padding: 100px 0px 0px 0px;
}

/* Sticky container: video area stays fixed during scroll */
.sticky-video-container {
  position: sticky;
  top: 0;
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO WRAP — responsive base, expands on scroll */
.rt-video-wrap {
  position: relative;
  width: 68%;
  height: 500px;
  /* border-radius: 48px; */
  overflow: hidden;
  transition: all 0.03s linear;
  will-change: width, height, border-radius;
  transform-origin: center center;
}

/* Video element */
.w-background-video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.w-background-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Dark overlay for text readability */
.rt-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  transition: background 0.1s linear;
}

/* Play/Pause Button — elegant glassmorphism, responsive */
.rt-video-button {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  background: rgba(20, 20, 28, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.rt-video-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.6);
}
.rt-video-button img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}
[hidden] {
  display: none !important;
}

/* HEADING WRAPPER — starts at TOP and moves to CENTER on scroll */
.rt-video-heading-wrapper {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  z-index: 20;
  pointer-events: none;
  transition: all 0.03s linear;
  will-change: top, transform;
  transform: translateY(0);
}

.rt-container-small {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.rt-video-heading {
  text-align: center;
  will-change: transform;
}

.rt-video-heading h2 {
  /* font-size: clamp(1.8rem, 6vw, 3.8rem); */
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #e8ecf5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.08s linear,
    letter-spacing 0.05s linear;
  padding: 0 10px;
  font-family: var(--default-font);
}

/* scroll hint indicator - responsive */
.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: 1.5px;
  background: rgba(0, 0, 0, 0.55);
  padding: 8px 20px;
  border-radius: 40px;
  backdrop-filter: blur(5px);
  z-index: 25;
  font-weight: 400;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.4s;
  font-family: monospace;
}

/* ========== FULLY RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
  .rt-video-wrap {
    width: 75%;
    height: 450px;
    border-radius: 40px;
  }
  .rt-video-heading-wrapper {
    top: 10%;
  }
  .rt-video-button {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }
  .rt-video-button img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .rt-video-wrap {
    width: 85%;
    height: 380px;
    border-radius: 32px;
  }
  .rt-video-heading-wrapper {
    top: 8%;
  }
  .rt-video-heading h2 {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
    line-height: 1.25;
  }
  .rt-container-small {
    padding: 0 20px;
  }
  .scroll-hint {
    font-size: 10px;
    padding: 6px 16px;
    bottom: 15px;
    white-space: nowrap;
  }
  .rt-video-button {
    width: 44px;
    height: 44px;
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .rt-video-wrap {
    width: 92%;
    height: 280px;
    border-radius: 24px;
  }
  .rt-video-heading-wrapper {
    top: 6%;
  }
  .rt-video-heading h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    letter-spacing: -0.01em;
  }
  .rt-container-small {
    padding: 0 16px;
  }
  .scroll-hint {
    font-size: 8px;
    padding: 5px 12px;
    bottom: 12px;
    white-space: nowrap;
    letter-spacing: 1px;
  }
  .rt-video-button {
    width: 40px;
    height: 40px;
    bottom: 12px;
    right: 12px;
  }
  .rt-video-button img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 380px) {
  .rt-video-heading h2 {
    font-size: clamp(1.2rem, 4.8vw, 1.5rem);
  }
  .scroll-hint {
    font-size: 7px;
    padding: 4px 10px;
  }
}

/* landscape mode adjustments */
@media (max-height: 600px) and (orientation: landscape) {
  .rt-video-wrap {
    height: 260px;
  }
  .rt-video-heading-wrapper {
    top: 5%;
  }
  /* .rt-video-heading h2 {
    font-size: 1.4rem;
  } */
  .scroll-hint {
    bottom: 8px;
  }
}

/* tab start */

.section {
  padding: 100px 0 0px;
  background: var(--white-color);
}

/* ── HEADER TEXT ── */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}

/* .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--charcoal);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--mid);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
} */

/* ── OUTER TABS (Photos / Videos / 360 View) ── */
.outer-tab-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
  background: var(--off-white);
  border-radius: 100px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 36px;
}

.outer-tab-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 26px;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.outer-tab-btn.active {
  background: var(--charcoal);
  color: #fff;
  font-weight: 500;
}

.outer-tab-btn .degree {
  font-size: 10px;
  vertical-align: super;
}

/* ── TAB PANELS ── */
.outer-tab-panels {
  position: relative;
}

.outer-panel {
  display: none;
}

.outer-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── INNER LAYOUT: small thumbs left, big image right ── */
.inner-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 16px;
  align-items: stretch;
}

/* ── SMALL THUMB STACK ── */
.thumb-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumb-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  flex: 1;
  min-height: 0;
  border: 2.5px solid transparent;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.thumb-item.active {
  border-color: var(--gold);
  transform: scale(1.01);
}

.thumb-item img,
.thumb-item .thumb-video {
  width: 100%;
  height: 100%;
  min-height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.thumb-item:hover img {
  transform: scale(1.04);
}

/* video thumb */
.thumb-video {
  position: relative;
  background: #111;
  min-height: 130px;
}

.thumb-video video {
  width: 100%;
  height: 100%;
  min-height: 130px;
  object-fit: cover;
  display: block;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.play-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon::after {
  content: "";
  border-left: 12px solid var(--charcoal);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

/* ── BIG IMAGE / VIDEO ── */
.big-display {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #111;
}

.big-panels {
  position: relative;
  height: 560px;
}

.big-panel {
  display: none;
  width: 100%;
  height: auto;
}

.big-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.big-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.big-panel img:hover {
  transform: scale(1.02);
}

.big-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── 360 IFRAME ── */
.iframe-360 {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── BOTTOM TEXT ── */
.bottom-text {
  text-align: center;
  margin-top: 36px;
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  line-height: 1.65;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--default-font);
}

/* ── FADE IN ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .inner-layout {
    grid-template-columns: 1fr;
  }

  .thumb-stack {
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
  }

  .thumb-item {
    flex: 0 0 160px;
    min-height: 110px;
  }

  .thumb-item img,
  .thumb-video,
  .thumb-video video {
    min-height: 110px;
  }

  .big-panels {
    height: 340px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 60px 0;
  }
  .big-panels {
    height: 260px;
  }
  .outer-tab-btn {
    padding: 9px 18px;
    font-size: 13px;
  }
}

/* new start */

.rt-amenities {
  width: 100%;
  padding: 80px 20px;
  background: var(--primary-color);
  margin-top: 100px;
}

.rt-container-small {
  max-width: 1100px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 56px;
  overflow: hidden;
}

.section-heading h2 {
  color: var(--white);
  letter-spacing: 0.01em;
  animation: slideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rt-amenities-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ---- LEFT: IMAGE + PIN MARKERS ---- */
.rt-amenities-left-part {
  position: relative;
  animation: slideUp 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.rt-amenities-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* Pin markers */
.rt-location-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  position: absolute;
}

.rt-location-circle:hover {
  transform: scale(1.15);
}

.rt-location-one .rt-location-circle {
  background: var(--gold);
  color: var(--dark);
  top: 28%;
  left: 38%;
}
.rt-location-two .rt-location-circle {
  background: var(--grey);
  color: var(--white);
  top: 55%;
  left: 18%;
}
.rt-location-three .rt-location-circle {
  background: var(--grey);
  color: var(--white);
  top: 42%;
  left: 65%;
}
.rt-location-four .rt-location-circle {
  background: var(--grey);
  color: var(--white);
  top: 72%;
  left: 50%;
}
.rt-location-five .rt-location-circle {
  background: var(--grey);
  color: var(--white);
  top: 18%;
  left: 58%;
}

/* ---- RIGHT: ACCORDION ---- */
.rt-amenities-right-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: slideUp 0.9s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.rt-amenities-dropdown-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s;
}

.rt-amenities-dropdown-content:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rt-amenities-dropdown-top-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}

.rt-amenities-dropdown-number-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.3s;
}

.rt-amenities-dropdown-number-wrap.active {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

.rt-amenities-dropdown-number-wrap.inactive {
  background: var(--grey) !important;
  color: var(--white) !important;
}

.rt-explore-dropdown-top-content .title {
  font-family: var(--default-font);
  font-size: 1.25rem !important;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}

.rt-amenities-text-wrapper {
  overflow: hidden;
  height: 0;
  transition:
    height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
  opacity: 0;
}

.rt-amenities-text-wrapper.open {
  opacity: 1;
}

.rt-amenities-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 0 20px 56px;
  font-family: var(--default-font);
  margin-top: 0px !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .rt-amenities-wrapper {
    grid-template-columns: 1fr;
  }
  .rt-amenities-image-wrapper img {
    height: 320px;
  }
}

/* sticky start */

/* ─── SECTION WRAPPER ─── */
.rt-project-overview {
  display: flex;
  min-height: 100vh;
  background: var(--dark);
  position: relative;
}

/* ─── LEFT: STICKY IMAGE ─── */
.rt-project-overview-left-wrapper {
  position: sticky;
  top: 0;
  width: 50%;
  height: 100vh;
  flex-shrink: 0;
  overflow: hidden;
}

.rt-project-overview-left-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.6s ease;
}

/* ─── RIGHT: SCROLLING PANELS ─── */
.rt-project-overview-right-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.rt-panel {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  position: relative;
  border-bottom: 1px solid var(--light-line);
}

.rt-panel:last-child {
  border-bottom: none;
}

/* progress line on left edge of right col */
.rt-project-overview-grey-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.rt-project-overview-dark-line {
  width: 100%;
  background: var(--gold);
  transition: height 0.1s linear;
}

/* ─── PANEL IMAGE ─── */
.rt-panel-image {
  width: 100%;
  aspect-ratio: 520 / 431;
  object-fit: cover;
  border-radius: 25px;
  display: block;
  margin-bottom: 32px;
}

/* ─── PANEL COUNTER ─── */
.rt-panel-counter {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}

/* ─── PANEL HEADING ─── */
.rt-panel-heading {
  /* font-family: "Cormorant Garamond", serif; */
  font-family: var(--default-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

/* ─── PANEL TEXT ─── */
.rt-panel-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  max-width: 400px;
  /* margin-bottom: 36px !important; */
  font-family: var(--default-font);
}

/* ─── BUTTON ─── */
.rt-overview-button-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
  width: fit-content;
}

.rt-button-text {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}

.rt-button-arrow {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--white);
  border-top: 1.5px solid var(--white);
  transform: rotate(45deg);
  transition:
    transform 0.3s,
    border-color 0.3s;
  flex-shrink: 0;
}

.rt-overview-shadow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.rt-overview-glow-line {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.rt-overview-button-wrapper:hover .rt-overview-glow-line {
  width: 100%;
}

.rt-overview-button-wrapper:hover .rt-button-text {
  color: var(--gold);
}

.rt-overview-button-wrapper:hover .rt-button-arrow {
  border-color: var(--gold);
  transform: rotate(45deg) translate(2px, -2px);
}

/* ─── SCROLL PROGRESS LINE ─── */
#progress-line-inner {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  background: var(--gold);
  height: 0%;
  z-index: 100;
  pointer-events: none;
  transition: height 0.05s linear;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .rt-project-overview {
    flex-direction: column;
  }
  .rt-project-overview-left-wrapper {
    position: relative;
    width: 100%;
    height: 55vw;
    min-height: 260px;
  }
  .rt-project-overview-right-wrapper {
    width: 100%;
  }
  .rt-panel {
    padding: 56px 28px;
    min-height: auto;
  }
  #progress-line-inner {
    display: none;
  }
}

/* maquee start */
.marquee-section {
  padding: 0px 0 100px 0px;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.property-card {
  position: relative;
  width: 300px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}
.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.property-card:hover img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 0.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}

.marquee-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  overflow: hidden;
  height: 70px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.property-card:hover .marquee-overlay {
  opacity: 1;
  transform: translateY(0);
}

.marquee-text-train {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: text-scroll 7s linear infinite;
  animation-play-state: paused;
}
.property-card:hover .marquee-text-train {
  animation-play-state: running;
}

.marquee-text {
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  padding: 0 18px;
}
.marquee-text::after {
  content: "·";
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes text-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* floor tab */

.rt-appartment {
  padding: 100px 0;
  background: #fff;
}

.rt-appartment-title {
  margin-bottom: 40px;
}

/* .rt-appartment-title h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: var(--default-font);
  font-family: Georgia, serif;
} */

.rt-appartment-left-wrapper {
  max-height: 530px;
  overflow-y: auto;
  padding-right: 26px;
}

/* optional: smooth scrollbar design */
.rt-appartment-left-wrapper::-webkit-scrollbar {
  width: 3px;
}

.rt-appartment-left-wrapper::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}
.rt-appartment-tab span {
  color: var(--gold);
}

.rt-appartment-text {
  font-size: 16px;
  color: var(--secondary-color);
  /* max-width: 340px; */
  line-height: 1.6;
  font-family: var(--default-font);
  font-weight: 500;
}

/* 3-column grid */
.rt-apartment-layout {
  display: grid;
  /* grid-template-columns: 240px 1fr 260px; */
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

/* TAB LIST */
.rt-appartment-left-wrapper {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ddd;
}

.rt-appartment-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px dashed #ddd;
  text-decoration: none;
  cursor: pointer;
}
.rt-appartment-tab:last-child {
  border-bottom: 1px solid #ddd;
}

.rt-appartment-types {
  font-size: 16.5px;
  color: #aaa;
  font-weight: 400;
  transition: color 0.2s;
  font-family: var(--default-font);
}

.rt-tab-arrow {
  font-size: 13px;
  color: #1a1a1a;
  opacity: 0;
  transition: opacity 0.2s;
}

.rt-appartment-tab.active .rt-appartment-types {
  color: #1a1a1a;
  font-weight: 500;
}
.rt-appartment-tab.active .rt-tab-arrow {
  opacity: 1;
}

/* IMAGE */
.rt-apartment-image-slot {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.rt-appartment-image {
  width: 100%;
  /* max-width: 310px; */
  max-width: 80%;
  height: auto;
  object-fit: contain;
  display: block;
}
.compass-wrapper {
  position: relative;
}

.floor-compass {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 80px;
  opacity: 0.9;
}

.floor-compass img {
  width: 100%;
  height: auto;
}

/* .rt-appartment-right-wrapper {
  height: 80vh;
}

.rt-appartment-right-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
} */

/* FACILITY */
.rt-appartment-facility-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rt-appartment-facility {
  display: flex;
  flex-direction: column;
}

.rt-appartment-grid-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
  font-size: 14px;
  color: #1a1a1a;
}

.rt-appartment-facility-left-part {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 14px;
}

.rt-appartment-facility-left-part img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.65;
}

.rt-appartment-grid-block > div:last-child {
  font-weight: 500;
}

.rt-appartment-facility-text {
  font-size: 13.5px;
  color: #666;
  line-height: 1.65;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rt-fade {
  animation: fadeUp 0.25s ease both;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .rt-apartment-layout {
    grid-template-columns: 190px 1fr;
    gap: 28px;
  }
  .rt-apartment-image-slot,
  .rt-appartment-facility-wrapper {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .rt-container-small {
    padding: 0 20px;
  }
  .rt-appartment {
    padding: 48px 0;
  }
  .rt-apartment-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .rt-appartment-left-wrapper {
    margin-bottom: 28px;
  }
  .rt-apartment-image-slot {
    margin-bottom: 24px;
  }
  .rt-mobile-display-off {
    display: none;
  }
}

/* footer */

.ft-root {
  /* background: #0f0f0d; */
  color: #c8c4b8;
  font-family: var(--default-font);
  padding: 100px 0 0;
  background-image:
    radial-gradient(circle, #00000080, #fff0),
    url(../img/68c0f58237734dcf4bcc7c0b_Rectangle\ 34626249.png);
  background-position:
    0 0,
    50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  /* padding-top: 7.5rem; */
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 0.5px solid rgba(200, 196, 184, 0.12);
}

.ft-brand-name {
  font-family: var(--default-font);
  font-size: 22px;
  color: #f0ece0;
  letter-spacing: -0.3px;
  margin: 0 0 16px;
  display: inline-block;
  text-decoration: none;
}

.ft-brand-name span {
  font-style: italic;
}

.ft-tagline {
  font-size: 15px;
  line-height: 1.75;
  color: var(--white);
  max-width: 240px;
  margin: 0 0 28px !important;
  font-family: var(--default-font);
  padding-top: 10px;
}

.ft-social-label {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 12px !important;
  font-weight: 500;
  font-family: var(--default-font);
}

.ft-social-row {
  display: flex;
  gap: 8px;
}

.ft-social-btn {
  width: 34px;
  height: 34px;
  border: 0.5px solid var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  text-decoration: none;
}

.ft-social-btn:hover {
  border-color: var(--gold);
  background: rgba(200, 196, 184, 0.06);
}

.ft-social-btn svg {
  width: 13px;
  height: 13px;
  fill: var(--white);
  transition: fill 0.2s;
}

.ft-social-btn:hover svg {
  fill: #c8c4b8;
}

.ft-col-heading {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 18px !important;
  font-family: var(--default-font);
  font-weight: 500;
}

.ft-link {
  display: block;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
  line-height: 1.4;
  font-family: var(--default-font);
  font-weight: 500;
}

.ft-link:hover {
  color: var(--gold);
}

.ft-address {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white);
  font-family: var(--default-font);
}

.ft-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.ft-copy {
  font-size: 14px;
  color: var(--white);
  font-family: var(--default-font);
}

.ft-copy a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-copy a:hover {
  color: #7a7670;
}

@media (max-width: 900px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ft-col-brand {
    grid-column: span 2;
  }
}

@media (max-width: 520px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }
  .ft-col-brand {
    grid-column: span 1;
  }
  .ft-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* testimonial */

.testimonial-section {
  background: #f5f3ef;
  padding: 100px 0;
  text-align: center;
}

.quote-icon {
  font-size: 80px;
  color: #bbb;
  margin-bottom: 20px;
}
.quote-icon img {
  display: block;
  margin: auto;
  width: 140px !important;
  height: 104px !important;
}

.testimonial-text {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.client-info {
  margin-top: 40px;
}

.client-info img {
  width: 90px !important;
  height: 90px !important;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: auto;
}

.client-info h4 {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--default-font);
}

.client-info span {
  color: var(--secondary-color);
  font-size: 14px;
  font-family: var(--default-font);
}
.owl-nav {
  margin-top: 40px;
  text-align: center;
}

.owl-nav button {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold) !important;
  border-radius: 50%;
  background: transparent !important;
  margin: 0 10px;
  transition: 0.3s ease;
}

.owl-nav button span {
  font-size: 20px;
  color: var(--gold);
}

.owl-nav button:hover {
  background: var(--gold) !important;
}

.owl-nav button:hover span {
  color: #fff;
}

/* testimonial start */

.visit-section {
  background: #f5f3ef;
  padding: 80px 0;
}

/* Heading */

.visit-title {
  font-size: 44px;
  font-weight: 600;
  color: #111;
}

/* Subtitle */

.visit-subtitle {
  max-width: 520px;
  margin: auto;
  color: #6b6b6b;
  font-size: 16px;
  line-height: 1.6;
}

/* Input Fields */

.custom-input {
  height: 70px;
  border-radius: 14px;
  border: none;
  background: #ded9d2;
  padding: 20px;
  font-size: 15px;
}

.custom-input:focus {
  background: #d2ccc3;
  box-shadow: none;
}

/* Textarea */

.textarea-box {
  height: 160px !important
  ;
  resize: none;
}

/* Submit Button */

.submit-btn {
  height: 70px;
  border-radius: 12px;
  background: #c6a36a;
  border: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #b79258;
  color: #fff;
}

/* Mobile Responsive */

@media (max-width: 768px) {
  .visit-title {
    font-size: 32px;
  }

  .submit-btn {
    width: 100%;
  }
}

/* why start */
.bk-section {
  padding: 100px 0px 100px 0px;
}

.bk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.bk-card {
  padding: 0 0.65rem 0 0;
  margin-right: 2.5rem;
  border-right: 1px solid #e0d8cc;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.bk-card:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.bk-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 0.5rem;
}

.bk-title {
  font-family: var(--default-font);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.3;
  margin-top: 0px !important;
  min-height: 65px;
}

.bk-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-color);
  line-height: 1.7;
  margin-top: 0px !important;
}

@media (max-width: 767.78px) {
  .bk-section {
    padding: 0px 0px 60px 0px;
  }
  .bk-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .bk-card {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    border-bottom: 1px solid #e0d8cc;
    padding-bottom: 2.5rem;
  }
  .bk-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .bk-title {
    font-size: 18px;
    text-align: center;
    min-height: auto;
    width: 100%;
  }
  .bk-desc {
    text-align: center;
    font-size: 14px;
  }
  .bk-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 0.5rem;
    display: block;
    margin: auto;
  }
  .submit-btn{
      height: 50px;
  }
  .custom-input{
      height: 50px;
  }
}

/* @media (max-width: 480px) {
  .bk-grid {
    grid-template-columns: 1fr;
  }
  .bk-card {
    border-bottom: 1px solid #e0d8cc;
    padding-bottom: 2rem;
  }
  .bk-card:last-child {
    border-bottom: none;
  }
} */

.category-bar {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 26px;
  color: var(--white);
  font-weight: 500;
  font-family: var(--default-font);
  padding: 10px 0px;
}

.category-bar span {
  position: relative;
  padding-right: 18px;
}

/* vertical separator line */
.category-bar span:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  color: var(--white);
}

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand-block img {
  max-width: 160px;
  height: auto;
  display: block;
}

.ft-col-heading {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 8px;
}

.rera-number {
  font-size: 14px;
  font-weight: 500;
  margin-left: 15px;
  color: var(--white);
  padding-right: 20px;
}

.social-icons {
  display: none;
}
