@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);

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

.about-content p,
.avenue-itm h5,
.hero-content h1,
.item-box-left a,
.item-box-left p,
.message p {
  font-family: var(--primary-font)
}



.about-content h2,
.about-content p,
.about-item,
.avenue-itm,
.hero-section {
  text-align: center
}

.background-video,
.item-box-right video {
  min-width: 100%;
  height: 100%
}

.flex-item,
.main-content {
  overflow: hidden
}

@font-face {
  font-family: Optima;
  src: url('../font/Optima.ttf') format('truetype')
}

@font-face {
  font-family: Kugile;
  src: url('../font/Kugile_Demo.ttf') format('truetype')
}

@font-face {
    font-family: N-Gage;
    src: url('../font/N-Gage.woff2') format('woff2'),
        url('../font/N-Gage.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth
}

:root {
  --primary-font: "Lato", sans-serif;
  --seconday-font: "Optima", sans-serif;
  --Gage-font: "N-Gage", sans-serif;
  --tertiary-font: "Kugile", cursive;
  --first-color: #fff;
  --second-color: #000
}

.hero-content h1 span {
  text-decoration: none
}

.top-image {
  background: url(../img/top-image.jpeg) no-repeat center;
  background-size: cover;
  height: 100vh
}

/* .background-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0
} */

.content-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.content-overlay::before{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0, rgba(0, 0, 0, 0) 50%, rgb(0 0 0 / 65%) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 27.5%, rgb(0 0 0 / 85%) 100%)

}



.main-content{
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.about-content h2 {
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  text-transform: uppercase
}

.about {
  height: auto
}

.hero-content h1,
.hero-content h1 span,
.message p {
  color: var(--first-color)
}

.btn {
  border: none;
  cursor: pointer
}

/* HEADER Section start */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* background: var(--second-color); */
  /* transition: background 0.3s ease-in-out; */
  transition: 0.5s ease;
}

.site-header.scrolled {
  background: #634034;
  transition: 0.5s ease
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2.5rem
}

.logo {
  width: 140px;
  height: auto
}

.logo img {
  width: 100%;
  height: auto
}

/* Desktop nav links */
.nav-links {
  display: none
}

.nav-link {
  color: var(--first-color);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease;
  font-family: var(--primary-font)
}

.nav-link:hover {
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.nav-link img {
  vertical-align: middle
}

/* CTA */
.nav-cta {
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  color: var(--second-color);
  border: none;
  padding: .5rem 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease
}

.nav-cta:hover {
  background: linear-gradient(270deg, #f6a980 -.01%, #a1644d 100%)
}

/* Burger Icon */
.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  cursor: pointer
}

.burger-icon {
  width: auto;
  height: 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer
}

.burger-icon span {
  display: block;
  height: 1px;
  width: 44px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: #634034;
  padding: 60px 20px;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
  z-index: 999
}

.mobile-menu ul {
  margin-top: 20px
}

.mobile-menu ul li {
  list-style: none;
  text-align: center;
  margin-bottom: 12px
}

.mobile-menu.open {
  transform: translateX(0)
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer
}

.mobile-link {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 28px;
  font-family: var(--seconday-font);
  font-weight: 400;
  letter-spacing: 0px;
  text-align: center
}

/* .mobile-cta {
  margin-top: 1rem;
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  border: none;
  padding: 12px;
  text-align: center;
  font-weight: bold;
} */

/* HEADER Section close */

/* Enquire-Form Start */
.enquire-form {
  position: fixed;
  top: 0;
  right: -450px;
  max-width: 435px;
  width: 100%;
  height: 100%;
  background-color: var(--first-color);
  padding: 30px 15px 30px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  transition: right 0.5s ease;
  z-index: 1001;
}

.enquire-form.show {
  right: 0
}

.enquire-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  padding: 0 15px
}

.enquire-form form h2 {
  font-family: var(--tertiary-font);
  font-size: 32px;
  font-weight: 400;
  color: var(--second-color)
}

.enquire-form form p {
  font-size: 16px;
  color: #666666
}

.input-group {
  position: relative;
  margin: 10px 0;
  width: 100%
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  border: none;
  background: none;
  outline: none;
  resize: none;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, #F6A980 -0.01%, #A1644D 100%) 1
}

.input-group label {
  position: absolute;
  top: 12px;
  left: 0;
  color: #666;
  background: var(--first-color);
  font-family: var(--primary-font);
  transition: 0.3s ease;
  pointer-events: none
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label,
.input-group textarea:focus+label,
.input-group textarea:not(:placeholder-shown)+label {
  top: -8px;
  left: 0;
  font-size: 12px;
  color: #333
}

.enquire-form button {
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  padding: 12px 24px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--primary-font);
  transition: 0.5s ease;
  text-transform: uppercase
}

#now-close-btn {
  background: transparent
}

.enquiry-close-btn {
  position: absolute;
  top: 20px;
  right: 0;
  font-size: 2rem;
  background-clip: text;
  background: none;
  border: none;
  cursor: pointer
}

.enquiry-close-btn i {
  font-size: 40px
}

/* Enquire-Form Close */

/* swiper slider open */
.swiper-container {
  padding-bottom: 2.5rem;
  position: relative;
  width: 80%;
  margin: 0 auto;
  overflow: hidden
}

.swiper-button-next,
.swiper-button-prev {
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  color: var(--first-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
  padding: 12px
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.25rem;
  font-weight: 800
}

/* swiper slider close */

/* animation open */

.box {
  transition: all 0.9s ease-in-out
}

.box.top {
  transform: translateY(-100px)
}

.box.right {
  transform: translateX(100px)
}

.box.left {
  transform: translateX(-100px)
}

.box.bottom {
  transform: translateY(100px)
}

.box.show {
  opacity: 1;
  transform: translate(0, 0)
}

/* animation close */


/* AMENITIES section start */

.amenities-section {
  background: #111010;
  padding: 70px 0px
}

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

/* Large left box */
.amenity-item.large {
  grid-row: span 2;
  grid-column: 1 / 2
}

.amenity-item {
  position: relative;
  overflow: hidden
}

.amenity-item img {
  max-width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
  transition: transform .4s ease
}

.amenity-item:hover img {
  transform: scale(1.1)
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
  color: var(--first-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.overlay h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 5px;
  font-family: var(--seconday-font)
}

.overlay p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  font-family: var(--primary-font);
  text-align: left
}

.amenities-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 58px
}

/* AMENITIES section close */

.hero-section {
  padding: 100px 20px 0;
  color: var(--second-color)
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 300;
  text-transform: capitalize
}

.contact h4,
.hero-content h1 span,
.item-box-left h4,
.landmark-heading h4,
.layout-content-width h4,
.section-content h4 {
  text-transform: uppercase
}

.hero-content h1 span {
  font-family: var(--tertiary-font);
  font-size: 80px;
  line-height: 86px;
  font-weight: 400
}

.layout-img {
  position: relative;
  display: inline-block;
  background: url(../img/map1.jpg) no-repeat center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center
}

.layout-img img {
  width: 100%;
  display: none;
}

.blink-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  color: var(--second-color);
  font-size: 18px;
  border: none;
  cursor: pointer;
  z-index: 1;
  animation: blink 3s infinite
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.message p {
  font-size: 20px;
  font-weight: 400
}

.about {
  width: 100%;
  background-color: var(--second-color);
  display: flex;
  justify-content: center;
  align-items: center
}

.about-content {
  max-width: 710px;
  margin: 0 auto
}

.about-content h2 {
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--seconday-font);
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0;
  padding: 104px 0 18px;
  transition: all 0.9s ease-in-out
}

.about-content p,
.about-item h3,
span {
  font-weight: 400;
  color: #ffffff80;
  line-height: 24px
}

.blk-bg a,
.item-box-left button {
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  width: 223px;
  display: block;
  text-decoration: none;
  padding: 10px;
  transition: 0.5s ease;
  text-transform: uppercase
}

.blk-bg a:hover {
  background: linear-gradient(270deg, #f6a980 -.01%, #a1644d 100%)
}

.item-box-left button:hover {
  background: linear-gradient(270deg, #f6a980 -.01%, #a1644d 100%)
}

.about-content p {
  font-size: 16px;
  letter-spacing: 0
}

.about-item h3,
.blk-bg a,
span {
  text-align: center;
  font-size: 14px;
  font-family: var(--primary-font)
}

.about-menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  padding: 50px 0 30px
}

.avenue-box-flex,
.flex-item {
  flex-wrap: wrap;
  display: flex
}

.about-item span {
  color: var(--first-color)
}

.line {
  display: inline-block;
  width: 1px;
  height: 93px;
  background: #fffFFF30
}

.blk-bg a {
  font-weight: 500;
  color: var(--second-color);
  margin: 0 auto 94px
}

.about-bg-sticky {
  position: sticky;
  top: 0;
  z-index: -1
}

.about-bg {
  width: 100%;
  max-height: 100%
}

.about-bg img {
  width: 100%;
  height: auto;
  vertical-align: bottom
}

.landmark {
  background: #634034;
  overflow: hidden;
  padding: 88px 0 102px
}

.premium-location {
  background: #634034;
  overflow: hidden
}

/* premium location start */

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  min-height: 100vh
}

.left-section {
  background-color: #4a2f27;
  color: white;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 106px 90px 50px
}

.left-section div h4 {
  font-family: var(--seconday-font);
  font-weight: 400;
  font-size: 36px;
  line-height: 45px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--first-color);
  text-align: left;
  margin-bottom: 15px
}

.left-section div p {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #FFFFFF80;
  text-align: left;
  margin-bottom: 18px
}

.features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap
}

.feature {
  text-align: center
}

.feature img {
  font-size: 1.5rem;
  margin: 0 auto;
  display: block
}

.feature span {
  font-weight: bold;
  color: var(--first-color)
}

.left-section div .enquire-btn {
  width: fit-content;
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  padding: 12px 24px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--primary-font);
  transition: 0.5s ease;
  margin-top: 36px
}

.left-section div .enquire-btn:hover {
  background: linear-gradient(270deg, #f6a980 -.01%, #a1644d 100%)
}

.right-section {
  position: relative;
  overflow: hidden
}

.right-section video {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 29.33%, rgba(0, 0, 0, 0.85) 100%)
}

.avenue-box-flex {
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  margin-top: 16px
}

.avenue-itm h5 {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: var(--first-color)
}

/* premium location close */

.layout-content-width h4,
.section-title {
  font-size: 48px;
  letter-spacing: 2px;
  -webkit-text-fill-color: transparent
}

.layout-content-width h4,
.section-title {
  font-family: var(--seconday-font);
  font-weight: 400;
  text-align: left
}

.btn,
.layout-content-width p {
  font-family: var(--primary-font)
}

.opacity {
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 29.33%, rgba(0, 0, 0, .85) 100%)
}

.section-title {
  padding: 0 0 45px;
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  background-clip: text;
  text-align: center
}

.btn {
  padding: 12px 24px;
  font-weight: 500;
  font-size: 16px
}

.btn-dark,
.btn-whatsapp {
  color: var(--first-color);
  border: 1px solid;
  border-image: linear-gradient(90deg, #F6A980 -0.01%, #A1644D 100%) 1;
  background: 0 0;
  transition: 0.5s ease
}

.btn-dark:hover {
  border: 1px solid;
  border-image: linear-gradient(270deg, #F6A980 -0.01%, #A1644D 100%) 1
}

.btn-whatsapp,
.layout-content-width h4 {
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  transition: 0.5s ease
}

.btn-whatsapp:hover {
  background: linear-gradient(270deg, #f6a980 -.01%, #a1644d 100%)
}

.btn-whatsapp {
  color: var(--second-color);
  transition: transform .5s ease-in;
  text-decoration: none
}

.layout-content {
  background-color: var(--second-color)
}

.layout-content-width {
  width: 550px;
  margin: 0 auto
}

.property-slider{
  padding: 60px 0 0;
}

.layout-content-width h4 {
  padding: 90px 0 10px;
  background-clip: text;
  text-align: center
}

.layout-content-width p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  color: #fffFFFB2;
  padding-bottom: 56px
}

.landmark-heading h4,
.landmark-row .landmark-item {
  color: var(--first-color);
  text-align: center
}

.landmark-heading h4 {
  font-family: var(--seconday-font);
  font-weight: 400;
  font-size: 36px;
  line-height: 45px;
  letter-spacing: 0;
  padding: 0 0 45px
}

.landmark-item h5,
.section-content p,
p {
  font-family: var(--primary-font);
  font-weight: 400
}

.landmark-item P {
  color: #ffffff80
}

.landmark-item {
  text-align: center
}

.landmark-item h5 {
  color: #fff;
  padding-top: 15px;
}

.landmark-item h5,
p {
  font-size: 14px;
  line-height: 24px;
  text-align: center
}

.landmark-item img{
     width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 5px;
}

.location-section {
  position: relative;
  height: 100vh;
  background: url(https://106avenue.prettifygroup.com/assets/img/106-Map.jpg) no-repeat center/cover
}

.map-logo {
  position: absolute;
  top: 10rem;
  left: 14.5rem;
  width: 240px;
  height: auto;
  display: none
}

.map-logo img {
  width: 100%;
  height: auto;
}

/* Style for the alpha section */

.alpha-section-sticky {
  position: sticky;
  top: 106px
}

.alpha-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden
}

.alpha-section::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(255,255,255,0));
  pointer-events: none; 
}

.bg-none{
  background: none !important;
}




.image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-attachment: fixed
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%)
}

.section-content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 1;
  width: 505px;
  height: auto;
  padding: 20px;
  max-width: 800px;
  text-align: left
}

.alpha-section .section-content h4 {
  color: var(--first-color);
  font-family: var(--seconday-font);
  font-weight: 400;
  font-size: 36px;
  line-height: 45px;
  letter-spacing: 0;
  text-align: left;
  margin: 0 0 15px;
  
}

.alpha-section .section-content p {
  color: var(--first-color);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left
}

.section-content button,
form button {
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  padding: 12px 24px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--primary-font);
  transition: 0.5s ease
}

.section-content button {
  margin-top: 28px
}

.section-content button:hover {
  background: linear-gradient(270deg, #f6a980 -.01%, #a1644d 100%)
}

.contact {
  background: #fef6f1;
  color: #111;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.contact h4 {
  font-family: var(--seconday-font);
  font-weight: 400;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: 0;
  text-align: center;
  color: var(--second-color);
  margin-bottom: 24px
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

form .input-group .label-bg {
  background-color: #fef6f1
}

.form-input {
  display: flex;
  justify-content: space-between;
  gap: 35px
}

form button {
  width: 160px;
  margin: 0 auto;
  margin-top: 20px
}

form button:hover {
  background: linear-gradient(270deg, #f6a980 -.01%, #a1644d 100%)
}

.footer-wrapper-bg {
  background-color: #a1644d
}

.footer-wrapper {
  padding: 2rem 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center
}

.phone-contact div {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--first-color)
}

.inner-footer p,
.inner-wrap ul li a {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0
}

.phone-contact div a {
  color: var(--first-color);
  text-decoration: none
}

.social-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 42px
}

.social-contact .icons{
  display: none;
}

.btn-icon a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  color: var(--second-color);
  background-color: var(--first-color);
  text-decoration: none;
  font-family: var(--primary-font)
}

footer {
  background-color: #0d0d0d
}

.inner-footer {
  padding: 4rem
}

.inner-footer p {
  color: #ffffff80;
  line-height: 18px;
  text-align: justify
}

.inner-footer span {
  color: var(--first-color);
  margin-top: 28px;
  display: inline-block
}

.inner-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px
}

.inner-wrap p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--first-color)
}

.inner-wrap ul {
  display: flex;
  gap: 24px
}

.inner-wrap ul li {
  list-style: none;
}

.inner-wrap ul li a {
  line-height: 24px;
  text-decoration: none;
  color: var(--first-color)
}

.website-content {
  margin-top: 60px;
  padding: 5rem 3rem
}

.website-content h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 45px;
  text-align: center;
  font-family: var(--tertiary-font)
}

.website-content h3,
p {
  font-family: var(--primary-font)
}

.website-content h3 {
  margin: 40px 0 18px;
  font-size: 28px;
  line-height: 1.21;
  font-weight: 600
}

.website-content p {
  color: #666666;
  text-align: justify;
  hyphens: auto;
  word-spacing: -0.07em;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px
}

.website-content ul {
  padding-left: 18px
}

.website-content ul li {
  position: relative;
  padding-left: 28px;
  list-style: none;
  font-family: var(--primary-font);
  color: #666666;
  text-align: justify;
  hyphens: auto;
  word-spacing: -0.07em;
  font-size: 16px;
  font-weight: 400
}

.website-content ul li:not(:last-child) {
  margin-bottom: 6px
}

.website-content ul li b {
  color: var(--second-color)
}

.website-content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #a0774e
}

.thankyou-btn {
  text-decoration: none;
  background-color: #fef6f1;
  color: #000;
  padding: 12px 30px;
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--primary-font);
  transition: background 0.3s ease
}

.thankyou-btn:hover {
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%)
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: #634034;
  display: none
}

.footer-strip ul {
  display: flex;
  flex-wrap: wrap
}

.footer-strip ul li:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.18)
}

.footer-strip ul li {
  flex: 1;
  list-style: none
}

.footer-strip ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 5px;
  color: var(--first-color);
  font-size: 14px;
  font-family: var(--primary-font);
  text-decoration: none;
  height: 66px
}

@media (max-width: 767px) {
  .site-header {
    padding: 0;
  }

  .navbar {
    padding: 10px;
  }

  .logo {
    width: 100px;
    height: auto;
  }

  .hero-content h1 span {
    font-size: 60px;
    display: inline-block;
    height: 60px
  }

  .about {
    height: auto
  }

  .about-bg {
    height: 340px
  }

  .about-bg img {
    height: 100%
  }

  .about-content {
    padding: 0px 12px
  }

  .about-content h2 {
    font-size: 34px;
    padding: 60px 0 18px
  }

  .blk-bg a {
    margin: 0 auto 60px
  }

  .left-section div h4 {
    font-size: 28px;
    line-height: 35px;
  }

  .form-input {
    flex-wrap: wrap;
    gap: 0
  }

  .about-menu {
    flex-wrap: wrap;
    gap: 24px;
    padding: 0 12px;
    margin: 30px 0
  }

  .about-item,
  .avenue-itm {
    min-width: 120px
  }

  .item-box-left button {
    margin: 0 auto;
    margin-top: 36px;
  }

  .item-box-right {
    height: 360px
  }

  .layout-content-width h4 {
    font-size: 34px;
    padding: 50px 0 10px
  }

  .item-box-left h4 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .item-box-width {
    width: 360px;
    padding: 30px 0
  }

  .line {
    display: none
  }

  .left-section div h4 {
    font-size: 28px;
    line-height: 35px;
  }

  .alpha-section-sticky {
    top: 80px;
  }

  .avenue-box-flex {
    gap: 15px
  }

  .layout-content-width {
    width: auto;
    padding: 0 16px
  }

  .section-content h4 {
    font-size: 28px;
    line-height: 35px
  }

  .section-content p {
    margin-top: 10px
  }

  .location-section {
    height: 230px;
  }

  .landmark {
    padding: 50px 0 60px
  }

  .landmark-row {
    gap: 20px;
    padding: 12px;
    justify-content: space-between
  }

  .landmark-heading h4 {
    font-size: 20px;
    line-height: 26px
  }

  .landmark-row .landmark-item {
    width: 180px
  }

  .website-content {
    padding: 1.5rem
  }

  .website-content h1 {
    font-size: 26px;
    margin: 0
  }

  .website-content h3 {
    font-size: 24px;
    margin: 25px 0 18px
  }

  .feature {
    min-width: 120px
  }

  .map-logo {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: 100px
  }

  .alpha-section {
    padding: 1.5rem;
    height: 70vh
  }

  .contact h4 {
    font-size: 26px
  }

  .footer-wrapper {
    flex-direction: column;
    padding: 2rem;
    gap: 12px
  }

  .social-contact {
    flex-direction: column;
    gap: 12px
  }

  .inner-footer {
    padding: 2rem 2rem 6rem
  }

  .alpha-section .section-content h4 {
    font-size: 23px;
    line-height: 30px;
  }

  .inner-wrap p {
    font-size: 13px
  }

  .section-title {
    font-size: 34px
  }

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

  .amenities-buttons {
    margin-top: 20px
  }

  .left-section {
    padding: 2rem 1.5rem;
    text-align: center
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px
  }

  .amenities {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .amenity-item img {
    width: 100%;
  }

  .amenity-item.large {
    grid-row: auto;
    grid-column: auto;
  }

  .hero-section {
    padding: 160px 20px 0;
  }

  .top-image {
    height: 70vh;
  }

  .layout-img {
    width: 100%;
    height: 200px;
  }

  .blink-btn {
    padding: 12px 25px;
    font-size: 14px
  }

  .footer-strip {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  header {
    padding: 15px 30px;
  }

  .nav-links {
    display: none
  }

  .nav-links:last-of-type {
    display: none;
  }

  /* Burger button visible for WhatsApp, Phone, CTA */
  .mobile-menu-button {
    display: block
  }

  .navbar {
    padding: 0.75rem 1.5rem
  }

  .logo {
    width: 110px
  }

  .hero-content h1 span {
    font-size: 70px;
    line-height: 76px
  }

  .top-image {
    height: 70vh;
  }

  .about-bg {
    height: 380px;
  }

  .landmark {
    padding: 50px 0 60px
  }

  .about-content h2 {
    padding: 60px 0 18px;
  }

  .grid-container {
    min-height: 45vh
  }

  .left-section {
    padding: 50px 80px 50px 30px;
    justify-content: start
  }

  .left-section div h4 {
    font-size: 26px;
    line-height: 35px
  }

  .blk-bg a {
    margin: 0 auto 60px
  }

  .features {
    gap: 30px
  }

  .feature {
    min-width: 120px
  }

  .feature:nth-child(5) {
    width: 100%;
  }

  .line {
    display: none;
  }

  .overlay {
    padding: 10px;
  }

  .overlay h3 {
    font-size: 20px;
    line-height: 24px
  }

  .overlay p {
    font-size: 15px;
    line-height: 20px
  }

  .amenities-section {
    padding: 40px 0px
  }

  .section-title {
    font-size: 38px
  }

  .layout-content-width h4 {
    padding: 50px 0 10px;
    font-size: 38px
  }

  .amenities-buttons {
    margin-top: 20px
  }

  .layout-img {
    height: 30vh
  }

  .location-section {
    height: 35vh
  }

  .alpha-section {
    height: 50vh;
  }

  .footer-wrapper {
    justify-content: center;
    gap: 30px
  }

  .footer-strip {
    display: block;
  }
}

@media (min-width: 1025px) {
  .site-header {
    padding: 0
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem
  }

  .mobile-menu,
  .mobile-menu-button {
    display: none
  }

  .hero-content h1 span {
    font-size: 60px;
    line-height: 68px;
  }
}


.loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* --- DOOR LAYOUT --- */
.slide-door {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  position: relative;
}

/* --- TOP DOOR --- */
.text-wrap {
  position: relative;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  z-index: 2;
  transition: transform 1s ease-in-out;
  padding: 0 0;
}
.text-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background: linear-gradient(to top, #000000 40%, rgb(0 0 0 / 50%) 96%), linear-gradient(to right, rgb(0 0 0 / 0%), rgb(0 0 0 / -25%), rgb(0 0 0 / 0%))
}


@media (max-width: 675px) {
  .text-wrap {
    height: 65%;
    justify-content: center;
  }
 .text-wrap::before {
      background: linear-gradient(to top, #000000 60%, rgb(0 0 0 / 50%) 96%), linear-gradient(to right, rgb(0 0 0 / 0%), rgb(0 0 0 / -25%), rgb(0 0 0 / 0%))
  }
}



.text-wrap.slide-up {
  transform: translateY(-100%);
}
.text-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  object-fit: cover;
  z-index: 1;
  object-position: bottom;
}

@media (max-width: 675px) {
  .text-wrap video {
     object-position: 0 100%;
  }
}
.text-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.upper-text {
  display: flex;
  font-size: 80px;
  font-weight: bold;
  height: 100px;
  overflow: hidden;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.moved-text {
  display: flex;
  flex-direction: column;
  animation: slideUp 5s ease-in-out forwards;
}
.moved-text h3 {
  height: 100px;
  margin: 0;
  font-family: var(--Gage-font);
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 100px;
}
@keyframes slideUp {
  0% { transform: translateY(0); }
  20% { transform: translateY(-100px); }
  40% { transform: translateY(-200px); }
  60% { transform: translateY(-300px); }
  80%, 100% { transform: translateY(-400px); }
}
.upper-text h3 {
  margin: 0;
  line-height: 100px;
  font-family: var(--Gage-font);
  color: #3C3636;
}
.complete {
  animation: colorChange 1s ease-in-out 4.5s forwards;
}
@keyframes colorChange {
  from {
    background: linear-gradient(90deg, #f6a980 0%, #a1644d 0%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  to {
    background: linear-gradient(90deg, #f6a980 0%, #a1644d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.below-img {
  width: 235px;
}
.below-img img {
  width: 100%;
}

/* --- BOTTOM DOOR --- */
.loading-bar-container {
  position: relative;
  width: 100%;
  height: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  z-index: 2;
  overflow: hidden;
  transition: transform 1s ease-in-out;
}

@media (max-width: 675px) {
  .loading-bar-container  {
       height: 35%;
        padding: 0;
  }
}


.loading-bar-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 110%, rgb(0 0 0 / 71%) 100%);
  z-index: 2;
}
.loading-bar-container.slide-down {
  transform: translateY(100%);
}
.loading-bar-container video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200%;
  object-fit: cover;
  z-index: 1;
}
.loading-bar-wrapper {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.loading-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f6a980 -.01%, #a1644d 100%);
  animation: fillBarSmooth 4.6s linear forwards;
}
@keyframes fillBarSmooth {
  0% { width: 0%; }
  100% { width: 100%; }
}