* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

/* img {
    max-width: 100%;
} */


@font-face {
    font-family: 'SaansTRIAL-Medium';
    src: url('../fonts/SaansTRIAL-Medium.woff') format('woff');
}

@font-face {
    font-family: 'SaansTRIAL-Regular';
    src: url('../fonts/SaansTRIAL-Regular.woff') format('woff');
}

@font-face {
    font-family: 'HelveticaNowDisplay-Regular';
    src: url('../fonts/HelveticaNowDisplay-Regular.woff') format('woff');
}

@font-face {
    font-family: 'urban';
    src: url('../fonts/urban.woff') format('woff');
}

@font-face {
    font-family: 'times';
    src: url('../fonts/times');
}

html,
body {
  width: 100%;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  overscroll-behavior-x: none;
  overflow-inline: clip;
}

body {
  overflow: clip;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: sans-serif;
}


.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5rem;
    box-sizing: border-box;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-menu1 li a.active {
  color: #FF8F2A;
}


.nav-menu li.open > .sub-menu,
.nav-menu li .sub-menu li.open > ul,
.nav-menu li .sub-menu li ul li.open > ul {
  max-height: 1000px;
}

.main-menu1 .sub-menu {
 display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(252, 248, 248, 0.15);
  backdrop-filter: blur(15px);
  min-width: 200px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  flex-direction: column;
  margin: 5px 0 0 0;      
  padding: 5px 0;         
  opacity: 0;
  pointer-events: auto;
  transition: all 0.4s ease;
}

.main-menu1 li:hover > .sub-menu {
 opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.main-menu1 li {
  position: relative;
}

.main-menu1 li a {
  display: block;
  padding: 8px 15px;      
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.main-menu1 .sub-menu li a:hover {
  background: rgba(255, 143, 42, 0.08);
  color: #FF8F2A;
  padding-left: 25px;
  border-radius: 8px;
}

.main-menu1 .sub-menu li ul {
  position: absolute;
  margin-left: 0px;
  top: 0;
  left: 100%;
  transform: translateX(20px);
  background: rgba(252, 248, 248, 0.15);
  backdrop-filter: blur(15px);
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  padding: 5px 0;      
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.main-menu1 .sub-menu li:hover > ul {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.main-menu1 .sub-menu li ul li ul li a {
    background: #00000070;
}

.main-menu1 .sub-menu li ul li a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}

.main-menu1 .sub-menu li ul li a:hover {
padding: 8px 15px;       
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  background: rgba(255, 143, 42, 0.08);
  color: #FF8F2A;
}

.container {
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 5rem;
  box-sizing: border-box;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-section {
  position: relative;
  z-index: 1000;
  padding: 10px 0;
}

.head-img img {
  width: 190px;
}

.hamburger {
  font-size: 26px;
  cursor: pointer;
  display: none;
  z-index: 1100;
  color: #fff;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 1px;
  padding: 8px 15px;         
  line-height: 1.3;
}

.nav-menu ul li a:hover,
.nav-menu ul li a:active {
  color: #FF8F2A;
}

/* .dropdown > a::after,
.dropdown-sub > a::after {
  content: "▸";
  float: right;
  transition: transform 0.3s;
}

.dropdown.open > a::after,
.dropdown-sub.open > a::after {
  transform: rotate(90deg);
} */

.nav-menu ul li .sub-menu li ul {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateX(20px);
  background: rgba(252, 248, 248, 0.15);
  backdrop-filter: blur(15px);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  padding: 0px 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  color: #000;
}


@media (max-width: 1024px) {

.nav-menu ul li a.active,
.nav-menu ul li .sub-menu li a.active,
.nav-menu ul li .sub-menu li ul li a.active {
  color: #FF8F2A;
}

.nav-menu ul li .sub-menu li ul {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  background: #000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-width: 80%;
  padding-left: 10px;
  color: #ffffff;
}

.nav-menu ul li .sub-menu li.open > ul {
  max-height: 1000px;
  background: #000;
  width: 100%;
  margin: 0;
  border-radius: 0px;
}

.nav-menu ul li .sub-menu li ul li a {
  font-size: 14px;
  background: #000;
}

.main-menu1 .sub-menu li a:hover {
  border-radius: 0;
}

.nav-menu ul li .sub-menu li.open > ul {
  margin-left: 15px;
}

.nav-menu ul li.open > .sub-menu {
  max-height: 1000px;
  overflow: visible;
  margin-left: 15px;
  box-shadow: none;
}

.nav-menu ul li .sub-menu {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  background: #000;
}

.hamburger {
  display: block;
  font-size: 28px;
  padding: 10px 15px;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  color: white;
  z-index: 999;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  transition: transform 0.3s ease;
  padding-top: 60px;
}

.nav-menu.active {
  display: flex;
}

.nav-menu ul{
  gap: 15px;
}

.nav-menu ul {
  flex-direction: column;
  width: 100%;
  list-style: none;
  padding: 25px;
  margin: 0;
}

.nav-menu ul li {
  position: relative;
  width: 100%;
  border-width: 40%;
}

.nav-menu ul li.has-submenu > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 15px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

.nav-menu ul li.has-submenu > a::after {
  content: "+";
  font-size: 22px;
  color: #FF8F2A;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease, content 0.3s ease;
}

  .nav-menu ul li.open > a::after {
    content: "|";
    transform: rotate(0deg);
    font-size: 12px;
  }

  .nav-menu ul li .sub-menu {
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #ffffff;
  }

  .nav-menu ul li.open > .sub-menu {
    max-height: 1000px;
    width: 90%;
    padding: 10px 25px;
  }

  .nav-menu ul li .sub-menu li a {
    padding: 12px;
    font-size: 15px;
    color: #ffffff;
    background: #000;
  }

  .nav-menu ul li .sub-menu li ul {
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-menu ul li .sub-menu li.open > ul {
    max-height: 1200px;
    width: 85%;
    padding: 2px;
  }

  .nav-menu ul li .sub-menu li ul li a {
    font-size: 14px;
    color: #ffffff;
    background: #000;
  }

  .nav-menu ul li .sub-menu li a,
  .nav-menu ul li .sub-menu li ul li a {
    line-height: 1.3;
  }

  #closeBtn {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
    z-index: 2000;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu {
    width: 100vw !important;
    height: 100vh;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    padding-top: 60px;
    z-index: 1500;
  }

  .nav-menu ul li {
    border-width: 40%;
  }

  .nav-menu ul li .sub-menu li {
    border-width: 40%;
  }

  .nav-menu {
    background: radial-gradient(circle at top, #000, #000);
    transition: all 0.4s ease;
  }

  .nav-menu.active {
    animation: slideInMenu 0.4s ease forwards;
  }

  @keyframes slideInMenu {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu ul li {
    transition: all 0.3s ease;
  }

  .nav-menu ul li a {
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .nav-menu ul li a:hover {
    color: #FF8F2A;
  }

  .nav-menu ul li.has-submenu > a::after {
    color: #FF8F2A;
  }

  .nav-menu ul li.open > a::after {
    transform: rotate(90deg);
  }

  .nav-menu ul li .sub-menu {
    background: #000;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    margin-left: 10px;
    border-radius: 0 0 12px 12px;
  }

  .nav-menu ul li.open > .sub-menu {
    max-height: 1500px;
    opacity: 1;
    padding: 1px 0;
  }

  .nav-menu ul li .sub-menu li a {
    padding: 12px 25px;
    background: transparent;
    display: block;
    transition: all 0.3s ease;
  }

  .nav-menu ul li .sub-menu li a:hover {
    color: #FF8F2A;
    border-radius: 6px;
    padding-left: 35px;
  }

  .nav-menu ul li .sub-menu li ul {
    margin-left: 20px;
  }

  .nav-menu ul li .sub-menu li.open > ul {
    max-height: 1100px;
    border-bottom: 1px solid #333232;
  }

  .nav-menu ul li .sub-menu li ul li a {
    padding: 10px 35px;
    transition: all 0.3s ease;
  }

  .nav-menu ul li .sub-menu li ul li a:hover {
    color: #FF8F2A;
  }

  #closeBtn {
    transition: transform 0.3s ease, color 0.3s ease;
  }

  #closeBtn:hover {
    color: #FF8F2A;
    transform: rotate(90deg);
  }

  
  .nav-menu ul li .sub-menu li.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 25px;
    font-size: 17px;
    color: #ffffff;
    background: transparent;
    position: relative;
  }

  /* .nav-menu ul li .sub-menu li.has-submenu > a::after {
    content: "+";
    font-size: 18px;
    color: #FF8F2A;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease, content 0.3s ease;
  }

  .nav-menu ul li .sub-menu li.open > a::after {
    content: "|";
    font-size: 12px;
  } */

  .nav-menu ul li {
  margin: 0;
  padding: 0;
}


.nav-menu ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  /* background: rgba(252, 248, 248, 0.15); */
  backdrop-filter: blur(15px);
  min-width: 220px;
  border-radius: 12px;
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); */
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  padding: 0;  
  margin: 0;  
}


.nav-menu ul li:hover > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0); 
}
}

span#closeBtn {
  display: none;
}


/* property hero section */

/* =========================================
   HERO SECTION
========================================= */

.property-hero {
    position: relative;
    width: 100%;
    height: 500px;
}

/* Slider */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

#slideTrack {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark overlay on slides */
.slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* =========================================
   NAVBAR
========================================= */

.property-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.property-logo img {
    width: 180px;
}

.property-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.property-hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
}

/* =========================================
   HEADING (MAIN FIX HERE)
========================================= */

.property-hero-heading {
    position: absolute;
    bottom: 10%;
    left: 3%;
    font-size: 2.3rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    /* font-family: "Libre Bodoni", serif; */
   font-family: 'Helvetica Neue', Arial, sans-serif;
    z-index: 3;
    display: inline-block;
    font-style: italic;
}

/* One glass box for entire heading */
.property-title-glass {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 12px;
    /* backdrop-filter: blur(6px); */
    /* -webkit-backdrop-filter: blur(6px); */
    color: #fff;
    display: inline-block;
    white-space: nowrap;
    font-style: italic;
}



.property-highlight {
    color: #FF8F2A;
    font-style: italic;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .property-navbar {
        padding: 15px 30px;
    }

    .property-hamburger {
        display: flex;
    }

    .property-hero-heading {
        font-size: 2rem;
        left: 5%;
        bottom: 12%;
    }

    .property-title-glass {
        padding: 10px 20px;
    }
}



/* Book a Site Visit */

.site-visit-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: #fff;
    margin-bottom: 50px;
}

.site-visit-content {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.site-visit-content .left-content {
    width: 50%;
    padding-left: 5px;
}

.site-visit-content .left-content h2 {
    font-size: 3.2rem;
    color: #00262C;
    margin-bottom: 10px;
    line-height: 1.4;
     font-family: 'Helvetica Neue', Arial, sans-serif;
     word-spacing: -10px;
}

.site-visit-content .left-content p {
    color: #A6A6A6;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.4;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}


.site-visit-content form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 11px;
    justify-content: space-between;
}

.site-visit-content button.button {
    margin-top: 17px;
    margin: 17px auto 0;
}

/* Floating label */

.floating-input {
    position: relative;
    width: 49%;
}

.floating-input.full-width {
    width: 100%;
}

.floating-input input,
.floating-input textarea {
    width: 100%;
    padding: 20px 15px 10px;
    border: 1px solid #F2F2F2;
    background: #F2F2F2;
    color: #333;
    border-radius: 10px;
    font-size: 17px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    outline: none;
    transition: all 0.25s ease;
}

.floating-input textarea {
    height: 180px;
    resize: none;
}

.floating-input label {
    position: absolute;
    top: 20px;
    left: 15px;
    color: #A6A6A6;
    font-size: 16px;
    font-weight: normal;
    pointer-events: none;
    transition: all 0.2s ease;
    /* background: #fff; */
    padding: 0 5px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.floating-input input:focus,
.floating-input textarea:focus {
    border: 2px solid #ff9d4d;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255, 159, 67, 0.3);
}

.floating-input input:focus+label,
.floating-input input:not(:placeholder-shown)+label,
.floating-input textarea:focus+label,
.floating-input textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 12px;
    font-size: 15px;
    color: #ff6a00;
    background: #fff;
}

.site-visit-content .right-image {
    width: 45%;
    padding-bottom: 50px;
}

.site-visit-content .right-image img {
    max-width: 100%;
    height: 550px;
}


/* Elevated Living - section */

.elevated-section {
    background-color: #F3F3F3;
    padding: 90px 0 0;
    /* margin: 70px 0; */
}

.elevated-section .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.full-container {
    padding-right: 0;
}

.elevated-section .top-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.elevated-section .left {
    width: 70%;
}

.elevated-section .left h2 {
    font-size: 50px;
    color: #00262C;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0;
}

.elevated-section .left p {
    color: #A6A6A6;
    font-size: 20px;
    line-height: 1.4;
    /* font-family: 'SaansTRIAL-Medium'; */
    max-width: 930px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.elevated-section .bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 50px 0px;
}

.elevated-section .features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 40%;

}


.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; 
}

.feature-box {
  width: 250px; 
  flex: 0 0 auto; 
}

/* .feature-box {
  flex: 0 1 250px; 
  max-width: 100%;
} */


.elevated-section .feature-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 20px 15px;
    color: #fff;
    flex: 1 1 250px;
    background: transparent;
    z-index: 1;
    height: 220px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}


.feature-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #FF8F2B, #FFA884, #FFD1A3);
    background-size: 100% 300%;
    animation: moveGradient 5s ease-in-out infinite;
    z-index: 0;
    /* opacity: 0; */
    transition: opacity 0.8s ease;
}

.feature-box.animate::before {
    opacity: 1;
}

@keyframes moveGradient {

    0%,
    100% {
        background-position: center bottom;
    }

    50% {
        background-position: center top;
    }
}

.feature-box small,
.feature-box h3 {
    position: relative;
    z-index: 1;
    padding-top: 100px;
     font-family: 'Helvetica Neue', Arial, sans-serif;
}

.feature-box small {
    font-size: 20px;
    color: #ffffffcc;
    padding-top: 10px;
}

.elevated-section .feature-box h3 {
    font-size: 36px;
    /* font-family: 'SaansTRIAL-Medium'; */
    line-height: 1.4;
    color: #fff;
    /* margin-top: 30px; */
}

.elevated-section .building-image {
    width: 50%;
}

.elevated-section .building-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}


/* Orion Heights - section */

.orion-residence-section .section-heading {
    font-size: 50px;
    font-weight: 300;
    color: #00262C;
    line-height: 1.3;
    margin-bottom: 20px;
     font-family: 'Helvetica Neue', Arial, sans-serif;
    max-width: 1100px;
    margin-bottom: 55px;
    margin-top: 100px;
}

.orion-residence-section .section-heading span {
    font-weight: 400;
    color: #CCD4D5;
}

.orion-residence-section .image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    justify-content: end;
    align-items: end;
}



/* Overlay */
.orion-residence-section .image-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.orion-residence-section .image-box::before {
    content: none !important;
}

.orion-residence-section .image-box img {
    position: relative;
    z-index: 2;
    width: 100%;
    /* height: 700px; */
    object-fit: cover;
    border-radius: 20px;
    display: block;
}


.orion-residence-section .button-group {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    width: 70%;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    z-index: 3;
}

.orion-residence-section .btn {
    padding: 12px 30px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.residence-slider {
    justify-content: center;
    align-items: center;
}

.orion-residence-section .btn.download {
    background-color: rgba(255, 247, 247, 0.8);
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.orion-residence-section .btn.download {
    background-color: #ffffff;
    color: #FF8F2A;
    border: 2px solid #FF8F2A;
    font-weight: bold;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
}


.orion-residence-section .btn.inquire {
    background-color: #ff6a00;
    color: #fff;
}

.orion-residence-section .description {
    font-size: 25px;
    color: #A6A6A6;
    line-height: 1.4;
    max-width: 1050px;
    text-align: left;
    margin-top: 50px;
    margin-bottom:80px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.orion-residence-section .image-box {
    /* position: relative; */
    border-radius: 20px;
    /* overflow: hidden; */
    margin-bottom: 25px;
    /* height: 690px; */
}

.orion-residence-section .image-box img {
    width: 100%;
    /* height: 750px; */
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Owl Carousel navigation arrows */
.residence-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 20px !important;
    transition: 0.3s;
}

.residence-slider .owl-nav button:hover {
    background: #ff6a00;
}

.residence-slider .owl-nav .owl-prev {
    left: 15px;
}

.residence-slider .owl-nav .owl-next {
    right: 15px;
}

.orion-residence-section .image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* .orion-residence-section .section-heading {
    font-size: 50px;
    font-weight: 300;
    color: #00262C;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: "Libre Bodoni", serif;
    max-width: 1100px;
    margin-bottom: 100px;
    margin-top: 100px;
}

.orion-residence-section .section-heading span {
    font-weight: 400;
    color: #CCD4D5;
}

.orion-residence-section .image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
  
}



.orion-residence-section .image-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25); 
  z-index: 1;   
}

.orion-residence-section .image-box::before {
  content: none !important;
}



.orion-residence-section .image-box img {
    width: 100%;
  height: auto;  
 border-radius: 20px;
  display: block;
  object-fit: contain;
}


.orion-residence-section .button-group {

  bottom: 0;              
  left: 0;
  width: 70%;       
  height: 70px;         
  display: flex;
  align-items: center;  
  gap: 12px;
  padding: 0 20px;     
  z-index: 3;  
}

.orion-residence-section .btn {
    padding: 12px 30px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.residence-slider{
    justify-content: center;
    align-items: center;
}

.orion-residence-section .btn.download {
    background-color: rgba(255, 247, 247, 0.8);
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.orion-residence-section .btn.download {
    background-color: #ffffff;
    color: #FF8F2A;
    border: 2px solid #FF8F2A;
    font-weight: bold;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}


.orion-residence-section .btn.inquire {
    background-color: #ff6a00;
    color: #fff;
}

.orion-residence-section .description {
    font-size: 25px;
    color: #A6A6A6;
    line-height: 1.4;
    max-width: 1050px;
    text-align: left;
    margin-top: 50px;
    margin-bottom: 150px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.orion-residence-section .image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
}

.orion-residence-section .image-box img {
  width: 100%;
  height: 625px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}


.residence-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  font-size: 20px !important;
  transition: 0.3s;
}

.residence-slider .owl-nav button:hover {
  background: #ff6a00;
}

.residence-slider .owl-nav .owl-prev { left: 15px; }
.residence-slider .owl-nav .owl-next { right: 15px; }

.orion-residence-section .image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}


.residence-slider .item img {
  max-height: 500px; 
  width: 100%;
  object-fit: cover; 
}


.residence-slider .item {
  height: auto;
  overflow: hidden;
}

.image-box.aos-init.aos-animate {
    height: auto !important;
} */


/* .orion-residence-section .button-group {
  position: absolute;
  bottom: 0;              
  left: 0;
  width: 100%;       
  height: 70px;         
  background: rgba(252, 252, 252, 0.45); 
  backdrop-filter: blur(4px);     
  display: flex;
  align-items: center;  
  gap: 12px;
  padding: 0 20px;     
  z-index: 5;
} */



/* Pagination Dots */
/* .residence-slider .owl-dots {
  text-align: center;
  margin-top: 55px;
  margin-bottom: 20px;
}
.residence-slider .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ccc;
  display: block;
  margin: 5px 4px;
  border-radius: 50%;
}
.residence-slider .owl-dots .owl-dot.active span {
  background: #ff6a00;
} */

/* Buttons on top of slider */
/* .orion-residence-section .button-group {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 12px;
  z-index: 5;
} */







/* Amenities - section */

section.amenities-section {
    padding: 100px 0;
}

.amenities-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.amenities-header h2 {
    font-size: 4.2rem;
    color: #00262C;
    font-weight: 600;
    line-height: 1.2;
     font-family: 'Helvetica Neue', Arial, sans-serif;
}

.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 100px 25px;
    text-align: center;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 23.3%;
}

.amenity-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    /* makes icon orange */
}

.amenity-item span {
    font-size: 22px;
    color: #00262C;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.2;
}

/* icon-animation */


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.bounce-icon {
    animation: bounce 1.5s infinite ease-in-out;
}

.bounce-slow-icon {
    animation: bounce 3s infinite ease-in-out;
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-icon {
    animation: float 4s ease-in-out infinite;
}


@keyframes wiggle {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0);
    }
}

.wiggle-icon {
    animation: wiggle 1.2s ease-in-out infinite;
    transform-origin: center;
}


@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.pulse-icon {
    animation: pulse 2s infinite;
}


@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.rotate-icon {
    animation: rotate 6s linear infinite;
}


@keyframes zoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.zoom-icon {
    animation: zoom 2s ease-in-out infinite;
}


@keyframes slide {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(25px);
    }
}

.slide-icon {
    animation: slide 2.5s ease-in-out infinite;
}


@keyframes pan-left-right {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

.pan-icon {
    animation: pan-left-right 2s ease-in-out infinite;
}

@keyframes parking-bounce-scale {

    0%,
    100% {
        transform: scale(1) translateY(0);
    }

    30% {
        transform: scale(1.05) translateY(-5px);
    }

    60% {
        transform: scale(0.98) translateY(2px);
    }
}

.parking-icon {
    animation: parking-bounce-scale 2.5s ease-in-out infinite;
}


/* master-plan-section */

.property-section {
    padding: 60px 0;
    background: #f3f3f3;
    color: #333;
}

.section-title {
    text-align: left;
    font-size: 50px;
    margin-bottom: 30px;
    color: #ff8f2b;
    font-weight: 700;
}

.section-title-2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
    color: #ff8f2b;
    font-weight: 700;
}

.property-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.property-image {
    flex: 1 1 55%;
}

.property-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.property-details {
    flex: 1 1 40%;
}

.details-title {
    font-size: 40px;
    color: #ff8f2b;
    margin-bottom: 20px;
}

/* Amenities Grid */
.amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.amenity-box {
    background: #ffffff;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.amenity-box:hover {
    background: #ff8f2b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Project Configuration Table */

.config-box {
    margin: 40px auto 0;
    max-width: 70%;
    /* 👈 width 70% kar diya */
}

.config-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.config-table th,
.config-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.config-table th {
    background: #ff8f2b;
    color: #fff;
    font-size: 16px;
}

.price-btn {
    background: #ff8f2b;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-btn:hover {
    background: #e6781f;
}




/* Explore Gallery */


section.explore-gallery {
    padding: 70px 40px;
}

.explore-gallery .container {
    max-width: 1400px;
    margin: auto;
    padding: 0;
}

.explore-heading {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    flex-wrap: wrap;
    margin-bottom: 60px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.explore-heading h2 {
    font-size: 4.1rem;
    color: #00262C;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.photo-nav {
    display: flex;
    gap: 10px;
    align-items: end;
    justify-content: end;
    justify-items: end;
}

.photo-nav button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #FF8F2B;
    background: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-carousel {
    display: flex;
    gap: 30px;
}

.photo_item {
    height: 500px;
    border-radius: 50px;
    overflow: hidden;
}

.photo_item img {
    height: 100%;
    width: 100%;
    /* object-fit: cover; */
    display: block;
}


/* Map Section */

.map-section {
    padding: 40px 60px;
}

.map-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Left side - Map */
.map-box {
    width: 50%;
    height: 400px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

/* Right side - Content */
.map-content {
    width: 50%;
    padding: 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}


/* List Styling */
.map-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-content ul li {
    position: relative;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 28px;
    color: #000000;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    /* font-weight: 500; */
}

.map-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: #FF8F2B;
    /* font-weight: bold; */
}

/* Responsive */
@media (max-width: 768px) {

    .map-box,
    .map-content {
        flex: 1 1 100%;
    }

    .map-content {
        padding: 20px;
    }
}


.map-container {
  display: flex;
  flex-wrap: wrap;
}

.map-box {
  flex: 1;
}

.map-content {
  width: 50%;
  padding: 20px;
}

/* If map-content is removed, map-box becomes full width */
.map-box.full-width {
  width: 100%;
}



/* rera section */

.rera-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.rera-heading {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #111;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.rera-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.rera-item {
    text-align: center;
    flex: 1;
}

.rera-item img {
    width: 120px;
    margin-bottom: 10px;
}

.rera-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.rera-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    padding-top: 10px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.rera-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.rera-btn:hover {
    background: #ff8f2b;
    color: #fff;
    border-color: #ff8f2b;
}

/* Responsive */
@media (max-width: 768px) {
    .rera-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}



/* Related Projects */

.related-projects {
    padding: 150px 0;
}

.related-projects h2 {
    font-size: 4.1rem;
    color: #00262C;
    font-weight: 600;
    line-height: 1.1;
    font-family: 'SaansTRIAL-Regular';
    margin-bottom: 70px;
}

.related-projects .container {
    padding-right: 0;
}

.projects-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.project-card {
    background: white;
    width: 100%;
    /* overflow: hidden; */
}

.project-card img {
    width: 100%;
    height: 432px;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 30px;
}

.project-card h4 {
    font-size: 33px;
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: 'SaansTRIAL-Regular';
    color: #00262C;
}

.project-card p {
    font-size: 19px;
    color: #A6A6A6;
    line-height: 1.3;
    max-width: 500px;
    font-family: 'SaansTRIAL-Regular';
}

/* inquiry-section */

.inquiry {
    margin: 0;
    background-color: #F2F4F0;
    color: #062b2f;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 850px;
    margin-top: 100px;
}

.inquiry-section {
    text-align: center;
}

.inquiry-section h2 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
    overflow: visible;
    max-width: 1550px;
}

.inquiry-section p {
    font-size: 1.2rem;
    color: #00262C;
    margin-bottom: 25px;
    line-height: 1.6rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    max-width: 1200px;
  margin: 0 auto 25px; 
  text-align: center;
}


.glow-button {
    position: relative;
    padding: 12px 10px;
    font-size: 14px;
    /* font-weight: 600; */
    color: white;
    background: #FF8F2B;
    /* Solid orange initial look */
    border: none;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    width: 130px;
    text-align: center;
    height: 48px;
    justify-content: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.glow-button span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease, filter 0.3s ease;
}

.glow-button .icon {
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* .glow-button::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 999px;
    background: conic-gradient(from 0deg,
            #FF8F2B 0%,
            #ffc382 25%,
            #FF8F2B 50%,
            #ffbc7a 75%,
            #FF8F2B 100%);
    z-index: 0;
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.glow-button::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #FF8F2B;
    border-radius: 999px;
    z-index: 1;
    pointer-events: none;
}

.glow-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #FF8F2Baa;
}

.glow-button:hover::before {
    opacity: 1;
    animation: spinBorder 3s linear infinite, pulseGlow 1.5s ease-in-out infinite;
}

.glow-button:hover span {
    filter: brightness(1.3);
}

@keyframes spinBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        filter: brightness(1.1) drop-shadow(0 0 6px #FF8F2B);
    }

    50% {
        filter: brightness(1.6) drop-shadow(0 0 16px #ffc382);
    }
}

@media (max-width: 500px) {
    .glow-button {
        padding: 3px 1px;
        font-size: 12px;
    }
} */



/* footer section */

.footer-section {
    background-color: #f8f8f8;
    padding: 60px 0 20px;
    /* font-family: sans-serif; */
}

.footer-box {
    width: 20%;
}


.footer-grid {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 60px;
}

.footer-box.footer-logo-box {
    width: 30%;
}

.footer-box.footer-logo-box a {
    color: #fff;
}

.footer-logo-box img {
    width: 175px;
    margin-bottom: 15px;
}

.footer-box h4 {
    font-size: 20px;
    margin: 12px 0;
    color: #1c1c1c;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 1px;
}

.footer-box p,
.footer-box ul li a {
    font-size: 18px;
    text-decoration: none;
    line-height: 1.6;
    /* font-family: 'SaansTRIAL-Medium'; */
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* .footer-box.footer-logo-box p {
  color: #00262C;
  max-width: 280px;
  font-family: 'SaansTRIAL-Medium';
  font-weight: 500;
  padding-bottom: 20px;
  letter-spacing: 1px;
} */


.footer-box p,
.footer-box ul li a,
.footer-box a {
    color: #A6A6A6;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}


.footer-bottom {
    margin-top: 30px;
    text-align: center;
}

/* Social Icons With Effects */

.social-icons {
    display: flex;
    /* justify-content: center; */
    gap: 15px;
    padding: 0;
    margin-bottom: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    /* background-color: #fff; */
    text-align: center;
    line-height: 40px;
    font-size: 22px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    /* border: 2px solid #fff; */
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icons a i {
    position: relative;
    color: #262626;
    transition: 0.5s;
    z-index: 3;
}

.social-icons a:hover i {
    color: #fff;
    transform: rotateY(360deg);
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 2;
}

.social-icons a:hover::before {
    top: 0;
}


.social-icons a:nth-child(1)::before {
    background: #3b5999;
    /* Facebook */
}

.social-icons a:nth-child(2)::before {
    background: #0077b5;
    /* LinkedIn */
}

.social-icons a:nth-child(3)::before {
    background: #ff0000;
    /* YouTube */
}

.social-icons a:nth-child(4)::before {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    /* Instagram */
}

.copyright {
    text-align: center;
    font-size: 15px;
    color: #A6A6A6;
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.footer-spacer {
  flex: 1;
} /* Left side empty */

.footer-center {
  flex: 1;
  text-align: center;
}

.footer-center p {
  margin: 0;
  font-size: 18px;
  color: #A6A6A6;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-right {
  flex: 1;
  text-align: right;
}

.footer-right a {
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 18px;
  color: #A6A6A6;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-right a:hover {
  color: #ff9f43;
}


@media (max-width: 768px) {
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    margin-top: 10px;
    text-align: center;
  }

  .footer-right a {
    margin: 0 10px;
  }

  .footer-spacer {
    display: none;
  }
}

@media (max-width: 768px){
  .footer-right{
    display: flex;
  }
}




/* responsive */

@media (max-width: 1440px) {
    .elevated-section .features {
        width: 45%;
    }
}

@media (max-width: 1024px) {

    /* property-hero-section */

    .property-hero {
        height: 450px;
    }

    .property-hero-heading {
        font-size: 3.8rem;
        padding: 0 10px;
    }

    /* Book a Site Visit */

    .site-visit-content .left-content h2 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .site-visit-content .left-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .site-visit-content form {
        gap: 20px 1px;
    }

    .floating-input textarea {
        height: 120px;
        resize: none;
    }

    /* Orion Heights - section */

    .orion-residence-section .section-heading {
        font-size: 35px;
        max-width: 800px;
        margin-bottom: 50px;
        margin-top: 50px;
    }

    .orion-residence-section .image-box img {
        width: 100%;
        height: 525px;


    }

    .orion-residence-section .description {
        font-size: 20px;
        line-height: 1.4;
        max-width: 750px;
        margin-bottom: 50px;
    }

    /* Elevated Living - section */

    .elevated-section {
        padding: 50px 0 0;
    }

    .elevated-section .left h2 {
        font-size: 45px;
    }

    .elevated-section .left p {
        font-size: 15px;
    }

    .elevated-section .features {
        display: flex;
        gap: 14px;
        width: 45%;

    }

    .elevated-section .feature-box {
        padding: 20px 5px 5px 10px;
        color: #fff;
        flex: 1 1 180px;
        height: 180px;
    }

    .feature-box small,
    .feature-box h3 {
        padding-top: 50px;
    }

    .feature-box small {
        font-size: 18px;
    }

    .elevated-section .feature-box h3 {
        font-size: 35px;
    }

    /* Amenities - section */

    section.amenities-section {
        padding: 50px 0;
    }

    .amenities-header {
        margin-bottom: 50px;
    }

    .amenities-header h2 {
        font-size: 3.2rem;
    }

    .amenities-grid {
        gap: 60px 19px;
    }

    .amenity-item span {
        font-size: 18px;
    }

    /* Explore Gallery */

    .explore-heading h2 {
        font-size: 3.1rem;
    }

    .photo_item img {
        height: 400px;
    }

    .photo-nav button {
        width: 50px;
        height: 50px;
    }

    .photo_item {
        height: 500px;
        border-radius: 50px;
        overflow: hidden;
    }



    /* Related Projects */

    .related-projects {
        padding: 80px 0;
    }

    .project-card img {
        width: 100%;
        height: 350px;
    }

    .related-projects h2 {
        font-size: 3.1rem;
        margin-bottom: 40px;
    }

    /* footer section */

  


    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        gap: 20px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
        width: 125%;
    }

     /* inquiry-section */

    .inquiry {
        height: 800px;
    }

    .inquiry-section h2 {
        font-size: 4.1rem;
    }

}



@media (max-width: 768px) {

    .property-navbar {
        padding: 15px 20px;
        justify-content: space-between;
    }

    .property-hamburger {
        display: flex;
        margin-left: auto;
    }

    /* Hero heading fix */
    .property-hero-heading {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        font-size: 2rem;
        text-align: left;
        margin: 100px 15px 20px;
    }

     /* inquiry-section */

    .inquiry {
        height: 550px;
    }

    .inquiry-section h2 {
        font-size: 3.1rem;
    }
}





@media (max-width: 992px) {

    /* Book a Site Visit */

    .site-visit-content .left-content h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .site-visit-content form {
        gap: 20px 1px;
    }

    .site-visit-content .left-content p {
        margin-bottom: 15px;
    }

    /* Orion Heights - section */

    .orion-residence-section .section-heading {
        font-size: 30px;
        max-width: 700px;
    }

    /* Amenities - section */

    .amenities-header h2 {
        font-size: 2.8rem;
    }


    .amenities-grid {
        gap: 60px 15px;
    }

    .amenity-item span {
        font-size: 15px;
    }

    /* Explore Gallery */

    .explore-heading h2 {
        font-size: 2.8rem;
    }

    .explore-gallery .container {
        max-width: 750px;
        margin: auto;
        padding: 0;
    }

    .photo_item {
        height: 400px;
        border-radius: 50px;
        overflow: hidden;
    }

    /* Map Section */

    .map-section iframe {
        height: 500px;
    }

    /* Related Projects */

    .project-card img {
        width: 100%;
        height: 332px;
    }

    .project-card h4 {
        font-size: 25px;
    }

    .project-card p {
        font-size: 15px;
    }

    /* inquery-section */

    .inquery-section {
        height: 70vh;
    }

    .inquery h2 {
        color: #00262C;
        margin-bottom: 20px;
        font-size: 50px;
    }
}



@media (max-width: 768px) {

    /* property-hero-section */

    .property-hero {
        height: 300px;
    }

    .property-hero-heading {
        font-size: 45px;
        padding: 0 0px;
    }

    /* Book a Site Visit */

    .site-visit-content {
        flex-direction: column;
    }

    .site-visit-content input {
        width: 100%;
    }

    .site-visit-content .left-content {
        width: 100%;
    }

    .site-visit-content .right-image {
        display: none;
    }

    /* Orion Heights - section */

    .orion-residence-section .section-heading {
        font-size: 19px;
        max-width: 500px;
    }

    .orion-residence-section .description {
        font-size: 15px;
        max-width: 500px;
    }

    .orion-residence-section .image-box img {
        width: 100%;
        height: 400px;
    }


    .orion-residence-section .btn {
        font-size: 11px;
        padding: 12px 14px
    }

    .orion-residence-section .image-box{
        height: auto;
    }

    .glow-button {
        height: 40px;
    }

    /* Elevated Living - section */

    .elevated-section .top-content {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }

    .elevated-section .bottom-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .elevated-section .building-image {
        width: 100%;
        margin-top: 20px;
    }

    .elevated-section .features,
    .elevated-section .left {
        width: 100%;
    }

    .elevated-section .container {
        padding-right: 5rem;
    }

    /* Amenities - section */

    .amenities-header {
        align-items: flex-start;
        gap: 15px;
    }

    .amenities-header h2 {
        font-size: 30px;
    }

    .amenities-grid {
        gap: 60px 13px;
    }

    .amenity-item span {
        font-size: 12px;
    }

    .amenity-item img {
        width: 80px;
        height: 80px;
    }

    /* Explore Gallery */

    .explore-heading h2 {
        font-size: 35px;
    }

    .photo_item img {
        height: 400px;
    }

    .photo-nav button {
        width: 50px;
        height: 50px;
    }

    .explore-gallery .container {
        max-width: 600px;
        margin: auto;
        padding: 0;
    }

    .photo_item {
        height: 300px;
        border-radius: 20px;
    }

    /* Map Section */

    .map-section iframe {
        height: 400px;
    }

    /* Related Projects */

    .related-projects h2 {
        font-size: 2.4rem;
    }

    .project-card h4 {
        font-size: 22px;
    }

    .project-card p {
        font-size: 15px;
    }

    /* inquery-section */

    .inquery h2 {
        font-size: 33px;
    }

    .inquery p {
        font-size: 14px;
    }

    .inquery-section {
        height: 55vh;
    }

    .inquery-section button {
        padding: 12px 24px;
        font-size: 12px;
    }


    /* footer-section */

    .footer-box p,
    .footer-box ul li a {
        font-size: 15px;
    }

    .footer-box {
        width: 32%;
    }

    .footer-box.footer-logo-box p {
        margin: 0 auto;
    }

    .social-icons {
        text-align: center;
    }

    .footer-grid {
        gap: 10px;
    }

    .footer-box.footer-logo-box {
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
    }

    .footer-logo-bottom img {
        width: 120px;
    }

    .footer-box.footer-logo-box p {
        max-width: 100%;
        text-align: center;
    }

}



@media(max-width:560px) {

    .container {
        padding: 0 20px;
    }


    /* property hero section */

    .property-hero {
        height: 200px;
    }

    .property-hero-heading {
        font-size: 25px !important;
        padding: 5px !important;
    }

    .property-navbar {
        padding: 15px;
    }

    .property-logo img {
        width: 90px;
    }

    /* Book a Site Visit */

    .site-visit-content .left-content h2 {
        font-size: 1.9rem;
    }

    .floating-input label {
        font-size: 13px;
    }

    .site-visit-section {
        padding: 30px 0;
    }

    /* Orion Heights - section */

    .orion-residence-section .section-heading {
        font-size: 20px;
        margin-bottom: 20px;
        font-family: 'SaansTRIAL-Medium';
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .orion-residence-section .image-box img {
        width: 100%;
        height: 160px;
    }


    .orion-residence-section .description {
        font-size: 14px;
        max-width: 300px;
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .orion-residence-section .image-box{
        height: auto;
    }

    /* Elevated Living - section */

    .elevated-section .left h2 {
        font-size: 1.5rem;
    }

    .elevated-section .left p {
        font-size: 15px;
    }

    .feature-box small {
        font-size: 15px;
        color: #ffffffcc;
        padding-top: 10px;
    }

    .elevated-section .feature-box h3 {
        font-size: 30px;
    }

    .elevated-section .container {
        padding-right: 20px;
    }

    /* Amenities - section */

    section.amenities-section {
        padding: 10px 0;
    }

    .amenities-header h2 {
        font-size: 1.9rem;
    }

    .amenities-header {
        align-items: flex-start;
        gap: 25px;
    }

    .amenity-item {
        width: 47.3%;
    }

    .amenities-grid {
        gap: 40px 10px;
    }

    .amenity-item span {
        font-size: 15px;
    }

    .amenity-item {
        gap: 20px;
    }

    /* Explore Gallery */

    .explore-heading h2 {
        font-size: 1.7rem;
    }

    .photo-nav button {
        width: 40px;
        height: 40px;
    }

    .explore-heading {
        gap: 20px;
        margin-bottom: 30px;
    }

    /* Map Section */

    .map-section iframe {
        height: 300px;
    }

    .map-box {
        width: 45%;
        height: 300px;
    }

    .map-section {
        padding: 40px 20px;
    }

    .map-content ul li{
        font-size: 15px;
        line-height: 1.5;
    }

    /* Related Projects */

    .related-projects h2 {
        font-size: 1.9rem;
    }

    .project-card img {
        height: 250px;
        border-radius: 20px;
    }

    .project-card h4 {
        font-size: 20px;
    }

    /* inquiry-section */

    .inquiry {
        height: 400px;
        margin-top: 50px;
    }

    .inquiry-section {
        padding: 25px;
        margin-top: 5px;
    }

    .inquiry-section h2 {
        font-size: 1.7rem;
    }

    .inquiry-section p {
        font-size: 0.8rem;
    }

    /* footer section */

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-box,
    .footer-box.footer-logo-box {
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
    }

    .footer-section {
        padding: 30px 0;
    }

    /* .inquiry-btn {
        width: 30%;
        padding: 10px;
        justify-content: center;
    } */

    .copyright {
        font-size: 12px;
    }

    .social-icons {
        width: 100%;
    }


    .orion-residence-section .btn {
        font-size: 11px;
        padding: 5px 8px
    }

    .glow-button {
        height: 35px;
    }

}

/* animation-heading */

.split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.split-visible .split-word {
    opacity: 1;
    transform: translateY(0);
}

h1,
h2,
h3 {
    overflow: hidden;
}

.split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.split-visible .split-word {
    opacity: 1;
    transform: translateY(0);
}

h1,
h2,
h3 {
    overflow: hidden;
    line-height: 1.4;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.6s ease;
    margin-right: 6px;
}

.word.visible {
    opacity: 1;
    transform: translateY(0);
}

.line {
    display: block;
}


@media (max-width: 768px) {
    .property-hero-heading {
        position: absolute;
        bottom: 10%;
        left: 5%;
        /* transform: translateX(-50%); */
        font-size: 3rem;
        text-align: left;
        margin: 0;
    }
}



@media(max-width:560px){
    .property-hero-heading{
        font-size: 2rem;
    }
}


/* === Inquiry Popup Styles === */
.inquiry-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  display: none;
}

.inquiry-popup.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.inquiry-popup-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.3s ease;
}

.inquiry-popup-content h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.8rem;
  color: #222;
}

.inquiry-popup-content label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: 500;
}

.inquiry-popup-content input,
.inquiry-popup-content textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.inquiry-popup-content input:focus,
.inquiry-popup-content textarea:focus {
  border-color: #ff9f43;
}

.submit-btn {
  background: #ff9f43;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #e7892c;
}

.close-popup {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.button-group a,
.button-group button {
  margin-right: 15px; /* Adjust spacing as needed */
}

.button-group a:last-child,
.button-group button:last-child {
  margin-right: 0;
}


/* Remove old orange ::after icons */
.nav-menu ul li.has-submenu > a::after,
.nav-menu ul li.open > a::after,
.nav-menu ul li .sub-menu li.has-submenu > a::after,
.nav-menu ul li .sub-menu li.open > a::after {
  content: none !important;
}

/* Style the white JS toggle icons */
.submenu-toggle {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  margin-left: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  user-select: none;
}

.nav-menu li.open > .submenu-toggle {
  color: #fff;
  transform: rotate(180deg);
}

/* Position submenu toggle icons ( + / – ) to the right side */
.nav-menu li {
  position: relative;
}

.nav-menu .submenu-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Rotate icon when submenu is open */
.nav-menu li.open > .submenu-toggle {
  transform: translateY(-50%) rotate(180deg);
}

/* Hide submenu toggle by default (desktop) */
.nav-menu .submenu-toggle {
  display: none;
}

/* Show submenu toggle only on mobile */
@media (max-width: 1024px) {
  .nav-menu li {
    position: relative;
  }

  .nav-menu .submenu-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  /* Rotate icon when submenu is open */
  .nav-menu li.open > .submenu-toggle {
    transform: translateY(-50%) rotate(180deg);
  }
}


.page-id-642 .site-visit-section {
    display: none !important;
}

.postid-642 .site-visit-section {
    display: none !important;
}

.postid-485 .site-visit-section {
    display: none !important;
}

.postid-482 .site-visit-section {
    display: none !important;
}

.postid-480 .site-visit-section {
    display: none !important;
}

.postid-630 .site-visit-section {
    display: none !important;
}

.postid-721 .site-visit-section {
    display: none !important;
}

.postid-724 .site-visit-section {
    display: none !important;
}

.postid-715 .site-visit-section {
    display: none !important;
}

.postid-1302 .site-visit-section {
    display: none !important;
}

.postid-1353 .site-visit-section {
    display: none !important;
}

.postid-721 .site-visit-section {
    display: none !important;
}




/* ============================
   Brochure Form Popup CSS
============================ */

#brochure-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px; 
}

#brochure-popup.active {
    display: flex;
}

.inquiry-popup-content {
    background: #fff;
    padding: 40px;
    width: 400px; 
    max-width: 100%; 
    border-radius: 10px;
    position: relative;
    box-sizing: border-box;
}

.close-brochure {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

.inquiry-popup-content label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.inquiry-popup-content input {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.submit-btn {
    width: 100%;
    background: #ff9f43;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #ff8c1a;
}

/* ============================
   Responsive Media Queries
============================ */

/* Tablets and small laptops */
@media (max-width: 1024px) {
    .inquiry-popup-content {
        width: 350px;
        padding: 30px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .inquiry-popup-content {
        width: 100%;
        padding: 20px;
        margin: 0 10px;
    }

    .close-brochure {
        font-size: 24px;
        top: 8px;
        right: 8px;
    }

    .submit-btn {
        padding: 10px;
        font-size: 16px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .inquiry-popup-content {
        padding: 30px;
    }

    .submit-btn {
        padding: 8px;
        font-size: 14px;
    }
}









/* Disable Smush blurry low-res placeholder */
img.lazyloaded {
    filter: blur(0) !important;
    opacity: 1 !important;
}

/* Remove Smush placeholder forced width */
img[data-src][class*="lazy"] {
    --smush-placeholder-width: auto !important;
    --smush-placeholder-aspect-ratio: auto !important;
}

/* Owl Carousel image sharp fix */
.owl-carousel .owl-item img {
    /* width: auto !important; */
    /* max-width: 100% !important; */
    /* height: auto !important; */
    object-fit: contain !important;
}

@media (max-width: 1024px) {
    .owl-carousel .owl-item img {
        max-width: 100% !important;
        width: 100% !important;   
        height: auto !important;
        object-fit: contain !important;
    }
}

/* ------------------------------------------
   MOBILE (below 768px)
------------------------------------------- */
@media (max-width: 768px) {
    .owl-carousel .owl-item img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;  
        /* Want full image visible? Use contain instead:
         object-fit: contain !important; 
        */
    }
}


