@import url("https://fonts.googleapis.com/css2?family=Flow+Circular&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Hand:wght@400..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
}

body,html{
  overflow-x:hidden ;
}

:root {
  --primary-color: #0e1e14;
  --golden-color: #9e4026;
  --alt-color: #b9ab71;
  --light-cream: #f0e7c2;
}

.sec_padding {
  padding: 90px 0 90px;
}
.phn-num::-webkit-outer-spin-button,
.phn-num::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sub-heading {
  font-size: 50px;
  font-weight: 400;
}

.sec_title {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #b59c5c;
}
.theme-font-color {
  color: var(--primary-color) !important;
}

.sec_title span {
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

/* header  */

.header {
  padding: 10px 0;
  background-color: #b59c5c;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}
.header.active {
  position: fixed;
  background-color: #b59c5c;
  backdrop-filter: blur(3px);
  animation: slideDown 0.5s ease forwards;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* 
.header .logo img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
} */

header .nav-links {
  gap: 40px;
  list-style: none;
  align-items: center;
}
header .nav-links li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: all 0.4s;
}
.logo img {
  width: 110px;
  height: 100%;
  object-fit: cover;
}
header .nav-links li a::before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: var(--light-cream);
  height: 1px;
  bottom: -5px;
  transform: scaleX(0);
  transition: all 0.4s;
}
header .nav-links li a:hover {
  color: var(--light-cream);
}
header .nav-links li a:hover::before {
  transform: scaleX(1);
}

/* end of header css  */

/* menu bar icon  */

.menu-button {
  display: none;
  z-index: 99;
  position: relative;
  padding: 14px 0;
}
.menu-button label {
  display: flex;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
}

.menu-button label span {
  background: #fff;
  border-radius: 10px;
  height: 3px;
  margin: 3px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-button span:nth-of-type(1) {
  width: 50%;
}

.menu-button span:nth-of-type(2) {
  width: 100%;
}

.menu-button span:nth-of-type(3) {
  width: 75%;
}

.menu-button input[type="checkbox"] {
  display: none;
}

.menu-button input[type="checkbox"]:checked ~ span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(5px, 0px);
}

.menu-button input[type="checkbox"]:checked ~ span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}

.menu-button input[type="checkbox"]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(13px, -5px) rotatez(45deg);
}

@media screen and (max-width: 768px) {
 
  .ForDesktop {
    display: none;
  }
  .ForMobile {
    display: block;
  }

  .menu-button {
    display: flex;
    justify-content: flex-end;
    width: fit-content;
    padding-right: 10px;
  }

  .header.active {
    position: fixed;
    background-color: #000000f5;
    backdrop-filter: none;
    animation: slideDown 0.5s ease forwards;
  }

  .nav-links {
    position: fixed;
    visibility: hidden;
    transition: all 0.7s;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    opacity: 0;
    left: 30%;
    right: 0;
    top: 0;
    background: #0e1e14d3;
    backdrop-filter: blur(10px);
    z-index: 99;
    padding-top: 25%;
    transform: translateX(100%);
    list-style: none;
    transition: all 0.6s;
  }

  .nav-links.active {
    visibility: visible;
    opacity: 1;
    height: 105vh;
    transform: translateX(0%);
  }

  .nav-links li {
    padding: 6px;
  }

  .nav-links li a {
    font-size: 20px;
    font-weight: 200;
  }

  .nav-links.active li a:hover {
    transform: translateX(100%);
  }

  .sec_padding {
    padding: 40px 0 40px;
  }

  .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
  }
}

.banner {
  position: relative;
}

.banner_content{
  position: absolute;
  left: 0;
  max-width: 1320px;
  right: 0;
  margin: auto;
  top: 40%;
} 

.banner_content h1 {
  font-size: 85px;
  font-weight: bold;
}

.banner_content h1 span{
  color: #134987;
  font-weight: bold;
}

.banner_content p {
  font-size: 25px;
}

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

.blur-sec .blur-sec-bx{
    backdrop-filter: blur(5px);
    font-size: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
    padding: 10px 15px;
    border-radius: 10px;
}

.blur-sec .blur-sec-bx img{
  width: 30px;
}

/* .blur-sec p{
  font-size: 15px!important;
} */

.blur-sec ul{
  list-style-type: none;
  padding: 0px;
}

.blur-sec ul li{
  backdrop-filter: blur(5px);
    font-size: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
    padding: 10px 15px;
    border-radius: 30px;
    display: inline-block;
    margin: 10px;
}

.blur-sec ul li img{
  width: 30px;
  height: auto;
}


.banner_image {
    position: relative;
    overflow: hidden;
}

/* .banner_image img {
    width: 100%;
    height: auto;
    display: block;
} */

/* Overlay styles */
.banner_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Control opacity here */
    z-index: 1;
    pointer-events: none; /* Allow clicks to pass through */
}

/* Content should appear above the overlay */
.banner_content {
    z-index: 2;
    padding: 100px 0; /* Optional: vertical spacing */
}

.banner_form {
  position: absolute;
  width: 340px;
  top: 32%;
  right: 6%;
  z-index: 99;
  background-color: #b59c5cbf;
  padding:15px;
  backdrop-filter: blur(4px);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.banner_form input::placeholder {
  color: #fff;
}

.banner_form .iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
  color: #fff;
}

.banner_image {
  width: 100%;
  height: 100vh;
}

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

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #9e4026;
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #9e4026 !important;
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
  display: none;
}

.banner .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  background-color: #bcaf80 !important;
  opacity: 1;
  transition: 0.4s all;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  -ms-transition: 0.4s all;
  -o-transition: 0.4s all;
}
.banner .swiper-pagination-bullet-active {
  width: 40px !important;
  background-color: #9e4026;
  border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  -ms-border-radius: 8px !important;
  -o-border-radius: 8px !important;
}

/* button  */

.theme_btn {
  color: #000!important;
  border: none;
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 0.7em 28px;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: var(--alt-color);
  z-index: 1;
  font-family: inherit;
  font-weight: 500;
  border-radius: 50px;
}

.theme_btn span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  border: 2px solid #7b5e15;
  border-radius: 50px;
}

.theme_btn span::before {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 500%;
  background: var(--primary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.3s;
  -webkit-transform: translate(-50%, -50%) rotate(-60deg);
  -moz-transform: translate(-50%, -50%) rotate(-60deg);
  -ms-transform: translate(-50%, -50%) rotate(-60deg);
  -o-transform: translate(-50%, -50%) rotate(-60deg);
}

.theme_btn:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: #7b5e15
}

.theme_btn:hover {
  color: #fff!important;
}

.theme_btn:active span::before {
  background: var(--alt-color);
}

/* button  */

.theme_btn_2 {
  border: none;
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 0.7em 1.4em;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: #000;
  z-index: 1;
  font-family: inherit;
  font-weight: 500;
  border-radius: 50px;
}

.theme_btn_2 span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  border: 2px solid #b59c5c;
  border-radius: 50px;
}

.theme_btn_2 span::before {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 500%;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.3s;
   border-radius: 50px;
}

.theme_btn_2:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: #b59c5c;
}

.theme_btn_2:hover {
  color: white;
}

.theme_btn_2:active span::before {
  background: #000;
}

.theme_btn_4 {
  border: none;
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 10px 40px;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: #fff;
  z-index: 1;
  font-family: inherit;
  font-weight: 500;
  border-radius: 50px;
}

.theme_btn_4 span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  border: 2px solid #fff;
  border-radius: 50px;
}

.theme_btn_4 span::before {
  content: "";
  display: block;
  position: absolute;
  width: 5%;
  height: 500%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.3s;
  -webkit-transform: translate(-50%, -50%) rotate(-60deg);
  -moz-transform: translate(-50%, -50%) rotate(-60deg);
  -ms-transform: translate(-50%, -50%) rotate(-60deg);
  -o-transform: translate(-50%, -50%) rotate(-60deg);
}

.theme_btn_4:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: #7b5e15
}

.theme_btn_4:hover {
  color: #fff;
}

.theme_btn_4:active span::before {
  background: #9e4026;
}


/* ------------------------ */
/* about new section */
/* ----------------------- */

.about-txt-1 h2{
  font-size: 75px;
  font-weight: 700;
}

.about-txt-2 h2{
  font-size: 75px;
  font-weight: 700;
  text-align: end;
}

.about-section-new-img img{
  border-radius: 20px;
}

.highlight-color{
  color: #b59c5c;
}

.about-section-new-p p{
  font-size: 20px;
}


/* ------------------------ */
/*New about new section */
/* ----------------------- */

/* about-sec */
.about-sec {
  background-color: #0e1e14;
  position: relative;
  z-index: 1;
}
.about-sec::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  opacity: 0.1;
  background-image: url(../images/about-bg-element.webp);
}
.highlights-sec {
  background-color: #ececec;
}

.floor-plan-sec {
  background-color: #ececec;
}

.pricing-sec{
  background-color: #ececec;

}
.master-plan-sec{
  /* display: flex;
  justify-content: center; */
  /* background-color: var(--light-cream); */
  /* padding: 50px 0; */
}
.master-plan-sec .img-container{
 width: 100%;
 display: block;
 text-align: center;
  
}
.master-plan-sec img{
  width: 50%;
  filter: blur(4px);
}

.galery_sec{
  background-color:#f1ebcf;

}

.w-screen{
  width: 100vw;
}

.about-sec h2 {
  color: #fff;
}
.about-sec p {
  font-size: 18px;
  color: #fff;
}

.big_banner {
  position: relative;
}
.big_banner .content {
  display: none;
  position: absolute;
  top: 13%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0e1e14c2;
  padding:30px 20px;
  color: #fff;
  width: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.big_banner .content h2 {
  font-size: 24px;
  margin-bottom: 0;
  color: #9e4026;
}

.highlight_sec .swiper-container {
  height: 500px;
  width: 100%;
  padding-bottom: 60px;
  overflow: hidden;
}

.highlight_sec .swiper-wrapper {
  width: 100%;
  will-change: transform;
}
@media (min-width: 630px) {
  .highlight_sec .swiper-wrapper {
    width: 100%;
  }
}

.highlight_sec .swiper-slide {
  width: 100%;
  background-color: white;
  overflow: hidden;
}
.highlight_sec .swiper-slide.swiper-slide-active .slide-image,
.highlight_sec .swiper-slide.swiper-slide-duplicate-active .slide-image {
  transform: scale3d(1, 1, 1);
}

.highlight_sec .slide-image h3 {
  position: absolute;
  bottom: 0px;
  background-color: #9e402699;
  backdrop-filter: blur(10px);
  font-size: 17px;
  color: #fff;
  padding: 12px 30px 10px 30px;
  margin-bottom: 0;
}
.floor-plan-sec .floor-plan-item {
  border: 2px solid #b59c5c;
  height: 100%;
  padding: 10px 10px 10px 10px;
  border-radius: 10px;
  position: relative;
}
.floor-plan-sec .floor-plan-item img{
  margin-bottom: 30px;
      filter: blur(3px);
}
.floor-plan-sec .floor-plan-item .title {
  position: absolute;
  width: 80%;
  min-width: 120px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #b59c5c;
    padding: 10px 10px;
  border-radius: 6px;
}
.floor-plan-sec .floor-plan-item .title h3{
  font-size: 15px;
  color: white;
  margin: 0px;
  text-align: center;
}
.floor-plan-sec .floor-plan-item img {
}
@media (min-width: 630px) {
  .highlight_sec .swiper-slide {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .highlight_sec .swiper-slide {
    width: 33.333333%;
  }
  .highlight_sec .swiper-slide.swiper-slide-next .slide-image,
  .highlight_sec .swiper-slide.swiper-slide-prev .slide-image,
  .highlight_sec .swiper-slide.swiper-slide-duplicate-next .slide-image,
  .highlight_sec .swiper-slide.swiper-slide-duplicate-prev .slide-image {
    transform: scale3d(1, 1, 1);
  }
}
@media (min-width: 1024px) {
  .highlight_sec .swiper-slide {
    width: 25%;
  }
}

.highlight_sec .swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85px;
}
.highlight_sec .swiper-pagination.swiper-pagination {
  bottom: 0;
}

.highlight_sec .swiper-pagination-bullet {
  background: tomato;
  width: 22px;
  height: 4px;
  border-radius: 0;
  transition: opacity 1s ease;
}
.highlight_sec
  .swiper-pagination-bullet.swiper-pagination-bullet.swiper-pagination-bullet {
  margin: 0;
}
@media (min-width: 768px) {
  .highlight_sec .swiper-pagination-bullet {
    width: 40px;
  }
}

.highlight_sec .slide-image {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale3d(1.3, 1.3, 1);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 1400ms ease;
}

.highlight_sec .slide-content {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.highlight_sec .slide-content h4 {
  font-size: 22px;
  font-weight: 400;
  flex-grow: 0;
}
.highlight_sec .slide-content ul {
  padding-left: 20px;
}
.highlight_sec .slide-content li {
  list-style: circle;
  font-size: 14px;
}
.highlight_sec .slide-content footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 2.8rem;
  font-size: 14px;
  color: #c2c0e0;
}
.highlight_sec .slide-content a {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 3px solid currentColor;
  padding-bottom: 3px;
}

.Amenities_sec {
  /* background-image: url(../images/about_us_bg.jpg); */

  background-color: var(--primary-color);
  height: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.Amenities_sec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../images/amenities-bg-element.webp);
  background-size: cover;
  opacity: 0.2;
}

.amenity_item {
  height: auto;
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.amenity_item .img-container {
  overflow: hidden;
  border-radius: 30px;
}

.amenity_item:hover img {
  transform: scale(1.05);
}
.amenity_item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.5s;
}

.amenity_item h6 {
  color: #fff;
  font-size: 18px;
  padding: 13px;
  text-align: center;
}

/* Location_Advantage */


.map_image {
  position: relative;
}
.google_btn {
  position: absolute;
  left: 40px;
  top: 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-color: #0b1a37;
  padding: 8px 30px;
  text-decoration: none;
  color: #fff;
  transition: 0.4s all;
  font-size: 14px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  -ms-transition: 0.4s all;
  -o-transition: 0.4s all;
}
.google_btn:hover {
  background: #bcaf80;
}

.mapping_sec {
  /* background-color: #0b1a37;
  padding: 50px 40px; */
}
.mapping_sec p {
  color: #ededed;
}

.mapping_sec h2 {
  font-family: "Edu AU VIC WA NT Hand", cursive;
  font-size: 27px;
  color: #bcaf80;
  word-spacing: 6px;
  text-align: center;
}



.location_map {
  filter: invert(1);
  -webkit-filter: invert(1);
}

.bg_black {
  background-color: #0d0e10;
}

.Location_Advantage h3 {
  font-size: 24px;
  text-align: center;
}
.Location_Advantage li {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  list-style: none;
  display: flex;
  gap: 15px;
  font-family: "Montserrat", sans-serif;
}

.Location_Advantage li img {
  width: 20px;
}
.cta {
  height: 130vh;
}
.cta img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.masterPlan .swiper-slide {
  height: auto;
  width: 100%;
}
.masterPlan .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.masterPlan .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.masterPlan .swiper-pagination-bullet-active {
  color: #fff;
  background: #9e4026;
}

/* contact css  */

/* contact us  */

.cta-section img{
  width: 100%;
  height: 500px;
  object-fit: fill;
  border-radius: 20px;
}

.sticky_part {
  position: sticky;
  position: -webkit-sticky;
  top: 30px;
}

.Masterplanbox {
  background-color: #eae8e5;
}
.Masterplanbox ol {
  padding-left: 0px !important;
}
.Masterplanbox ol li {
  font-size: 15px;
  margin-bottom: 7px;
}

.cta_sec {
  height: 100%;
  width: 100%;
}
.cta_sec img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.connect-icon {
  position: fixed;
  cursor: pointer;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  z-index: 99;
}

.connect-icon img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
}
input {
  color: #000;
}
.phone-sec {
  display: flex;
}

.phone-sec .country-code {
  width: 20% !important;
  border: none !important;
  top: 1px;
  background-color: transparent;
  border-right: 1px solid #e1e1e1;
}

.iti {
  position: absolute;
  width: 20% !important;
}

input:focus {
  box-shadow: none !important;
}

.form__select select {
  height: 50px;
  margin-top: 10px;
}
.form__select select:focus {
  box-shadow: none !important;
}

.input-group > .form-control,
.input-group > .form-floating,
.input-group > .form-select {
  width: 100%;
  background: transparent;
  border: none;
  height: 50px;
  border: 1px solid #b59c5c;
      border-radius: 10px !important;
  color: #000;
}
/* .input-group #phone {
  color: white;
} */

.phone-sec .phn-num {
  width: 100% !important;
  height: 50px;
  border: none;
  border-radius: 10px !important;
  background-color: transparent;
  border: 1px solid #b59c5c;
  padding-left: 110px !important;
  outline: 0 !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 1px;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
  border-right: 1px solid #d5d5d5;
  padding: 0 11px 0 8px;
  height: 50px;
}

.iti__arrow {
  opacity: 0;
}
.select2-container .select2-selection--single {
  height: 50px !important;
  padding-left: 16px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 50px;
  color: #757575;
  font-family: var(--Manrope);
  font-size: 14px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 30px;
  right: 12px;
  width: 21px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #888 transparent transparent;
  border-style: solid;
  border-width: 10px 6px 0 7px;
}

.flag-icon.flag-icon-squared {
  width: 1em;
  margin-right: 8px;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: -1px;
  right: 0;
  padding: 0 !important;
}

.select2-search__field:focus-visible {
  outline: 0 !important;
}

.select2-search--dropdown .select2-search__field {
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
}

#mobile_code.form-select {
  padding-top: 0.9rem;
}

/* button  */

.theme_btn_3 {
  border: none;
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 0.7em 2.4em;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: #000;
  z-index: 1;
  font-family: inherit;
  font-weight: 500;
  border-radius: 50px;
}

.theme_btn_3 span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  border: 2px solid #b59c5c;
  border-radius: 50px;
}

.theme_btn_3 span::before {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 500%;
  background: var(--light-cream);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.3s;
}

.theme_btn_3:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: #b59c5c;
}

.theme_btn_3:hover {
  color: white;
}

.theme_btn_3:active span::before {
  background: #fff;
}

/* .sticky_part {
    position: sticky;
    position: -webkit-sticky;
    top: 165px;
} */

/* ==================== Footer Start ==================== */
.innerFooter {
  background: #b59c5c;
  color: #fff;
}

.copyright {
  color: #9e4026;
}

.privacypolicy {
  font-size: 12px;
}

.footerlogo {
  width: 120px !important;
}

/* sidebar form   */

.request-btn {
  position: fixed;
  background: #7b5e15;
  right: -44px;
  top: 47%;
  transform: rotate(90deg) translateY(-50%);
  z-index: 2;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all 0.3s linear;
}
.request-btn.active {
  right: 330px;
  background: #ffdc09;
}
.request-btn:hover {
  color: #fff;
  background: #000;
}
.Sideform .close {
  color: #000;
  position: absolute;
  top: -30px;
  left: -15px;
  background: #fff;
  height: 30px;
  width: 30px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border: 0px;
  box-shadow: 0 0 15px #00000047;
  opacity: 0;
  z-index: 99999;
}
.Sideform.active .close {
  opacity: 1;
}
.Sideform input {
  font-size: 14px;
}
.Sideform input::placeholder {
  color: #fff !important;
}
.Sideform select {
  color: #fff !important;
  font-size: 14px;
}
.Sideform .iti--separate-dial-code .iti__selected-dial-code {
  color: #fff;
}

.Sideform {
  width: 375px;
  background: #000000c7;
  background-image: url(../images/banner2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 25px;
  position: fixed;
  right: -380px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
  background-blend-mode: color;
  transition: all 0.3s linear;
  z-index: 999999;
}
.Sideform.active {
  right: 0;
}
.Sideform .text-yellow {
  color: var(--yellow);
}
.Sideform .btn {
  font-size: 16px;
  margin: 20px auto;
  display: block;
}
.Sideform .form-floating > .form-control,
.Sideform .form-floating > .form-control-plaintext,
.Sideform .form-floating > .form-select {
  height: calc(3rem + 2px);
  line-height: 1.25;
  padding: 1.25rem 0.75rem 0.5rem;
  background: #ffffff45;
  color: #fff;
  border: 0px;
  backdrop-filter: blur(3px);
  font-size: 14px;
}
.Sideform .form-floating > label {
  padding: 0.5rem 0.75rem;
  color: #fff;
  font-size: 15px;
}

.close-btn {
  position: absolute;
  top: -30px;
  right: -30px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  background-color:#b59c5c;
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  z-index: 999;
}

.modal-body,
.modal-content {
  padding: 0;
  border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  -ms-border-radius: 0px !important;
  -o-border-radius: 0px !important;
}
.modal-body img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right;
}
select option {
  color: black;
}
.modal-body .form_wrapper {
  padding: 50px 20px !important;
}
.modal-body .form_wrapper h2 {
  font-size: 25px;
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 1000px !important;
  }
}

/* ---------------------------------- */
/*---------- pricing table ---------------- */
/* ---------------------------------- */

.pricing-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  /* perspective: 1000px; */
}

.pricing-card {
  width: 32%;
  padding: 25px;
  border-radius: 24px;
  background: linear-gradient(145deg, #b59c5c 0%, #dac180 100%);
  backdrop-filter: blur(20px);
  /* border: 1px solid rgba(153, 157, 172, 0.1); */
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border: 1px solid rgba(103, 255, 204, 0.3);
  box-shadow: 0 0 20px rgba(103, 132, 255, 0.1),
    0 0 40px rgba(103, 255, 192, 0.1);
}

.inner-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 50%, rgb(255 255 255 / 15%) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.plan-name {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #fff, #6784ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price {
  font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
}

.pricing-card h5{
    font-size: 22px;
    font-weight: 500;
}

.price span {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 400;
}

.features {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.features li {
  margin: 1rem 0;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 1.1rem;
}

.features li::before {
  content: "⚡";
  color: #6784ff;
  font-size: 0.9rem;
}

.cta-button {
  width: 100%;
  padding: 12px 30px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #7b5e15, #b59c5c);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(103, 255, 184, 0.3);
}

.cta-button:hover::after {
  transform: translateX(100%);
}

.comparison {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.975rem;
  margin-top: 1rem;
  text-align: center;
}

.highlight {
  position: absolute;
  top: 1rem;
  right: -4rem;
  background: linear-gradient(135deg, #6784ff, #4462ff);
  color: white;
  padding: 0.5rem 4rem;
  transform: rotate(45deg);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(103, 132, 255, 0.3);
}

.card-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

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

.gallery_item {
  margin-top: 15px !important;
  transition: 0.4s all;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  -ms-transition: 0.4s all;
  -o-transition: 0.4s all;
}
.gallery_item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.galery_sec .swiper-slide.swiper-slide-next .gallery_item {
  transition: 0.4s all;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  -ms-transition: 0.4s all;
  -o-transition: 0.4s all;
  height: 300px;
  transform: translateY(-40px);
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
}

.galery_sec .swiper-button-prev,
.galery_sec .swiper-button-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(75, 75, 75, 0.4);
  top: calc(50% - 25px);
  cursor: pointer;
}
.galery_sec .swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  top: 20px;
  left: 22px;
  box-sizing: border-box;
}
.galery_sec .swiper-button-next::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  top: 20px;
  left: 18px;
  box-sizing: border-box;
}
.galery_sec .swiper-button-prev.swiper-button-disabled,
.galery_sec .swiper-button-next.swiper-button-disabled {
  opacity: 0.6;
  box-shadow: none;
  cursor: not-allowed;
}
.galery_sec .swiper-button-prev {
  left: 10px;
}
.galery_sec .swiper-button-prev::after {
  border-top: 3px solid #333;
  border-left: 3px solid #333;
}
.galery_sec .swiper-button-next {
  right: 10px;
}
.galery_sec .swiper-button-next::after {
  border-bottom: 3px solid #333;
  border-right: 3px solid #333;
}

/* sticky_contact for mobile   */

.sticky_contact {
  display: none;
}

/* highlight_item */

.highlight_item {
  background-color: #fff;
  height: 90%;
  padding: 32px 38px;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.highlight_item:hover {
  background: rgb(158, 64, 38);
  /* background: linear-gradient(
    131deg,
    rgba(158, 64, 38, 1) 48%,
    rgba(184, 102, 79, 1) 76%
  ); */
  background: linear-gradient(145deg, #b59c5c 0%, #dac180 100%);
  transform: translateY(-3px) scale(1.01);
}
.highlight_item:hover h3 {
  color: #fff;
}

.highlight_item:hover h2 {
  color: #fff;
}

.highlight_item img {
  width: 64px;
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  /* display: none; */
}
.highlight_item:hover img {
  filter: invert(1);
}
.margin_30px {
  margin-bottom: 30px;
}
.margin_50px {
  margin-bottom: 50px;
}
.margin_80px {
  margin-bottom: 80px;
}
.margin_120px {
  margin-bottom: 120px;
}

.highlight_item h2 {
  font-size: 20px;
  font-weight: 800;
}

.highlight_item h3 {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
}


/* ---------Near By Location-------------- */

.nearby-location-bx{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 15px;
}

.nearby-loc-txt{
  display: flex;
    gap: 15px;
    align-items: center;
}

.nearby-loc-txt img{
  width: 35px;
  height: auto;
}

.nearby-loc-txt p{
  margin: 0px;
  font-size: 20px;
  font-weight: 600;
}

.nearby-loc-km{
  margin: 0px;
  font-size: 20px;
  font-weight: 700;
  color: #b59c5c;
}


/* ------------------------------------- */

@media screen and (max-width: 992px) {
  .sticky_contact {
    display: block;
    background: #7b5e15;
    width: 100vw;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9;
    padding: 7px 2px;
  }

  .sticky_contact ul.list-styled {
    /* justify-content: center; */
    margin-bottom: 0 !important;
  }

  .sticky_contact ul.list-styled li {
    margin: 0 24px;
    padding: 3px 5px;
    border: 0;
    color: #000 !important;
    font-size: 16px;
    min-width: 108px;
    text-align: center;
    list-style: none;
    margin-bottom: 0;
    text-decoration: none;
  }
  .sticky_contact ul.list-styled li a {
    text-decoration: none;
  }
  .sticky_contact ul.list-styled li:first-child {
    border-right: 1px solid #fff;
    padding-right: 30px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {

      .banner_content h1 {
        font-size: 40px;
        font-weight: bold;
    }

    .blur-sec .blur-sec-bx {
      width: 45%;
      padding: 10px!important;;
    }

   .blur-sec .blur-sec-bx img {
    width: 24px;
    height: auto;
   }

   .banner_content p {
    font-size: 18px;
}

.banner_content {
top: 15%!important;
}


    .banner_image img {
    object-fit: cover;
    }

        .about-txt-1 h2 {
        font-size: 30px;
    }

       .about-txt-2 h2 {
        font-size: 30px;
        text-align: start;
    }

    .about-section-new-p h2 b{
      font-size: 20px;
    }

    .about-section-new-img img {
      border-radius: 20px;
      margin-top: 30px;
    }



    .banner_form {
    position: absolute;
    width: 100%;
  }

  .pricing-container {
    padding: 1rem;
  }
  .logo img {
    width: 150px;
  }
  .header {
    padding: 5px 0;
  }
  .pricing-card {
    width: 100%;
    max-width: 380px;
    padding: 20px;
  }

  .sec_title {
    font-size: 28px;
  }
  .about-sec p {
    font-size: 16px;
  }
  .big_banner .content {
    width: 90%;
    
  }
  .big_banner .content h2 {
    font-size: 16px;
  }
  .big_banner img {
    height: 400px;
    object-fit: cover;
  }

  .big_banner .content{
    top: 12%;
    padding: 16px;
  }
  .highlight_sec .swiper-container {
    height: 450px;
  }
  .highlight_sec .slide-image h3 {
    font-size: 15px;
  }
  .amenity_item {
    height: auto;
  }
  .cta {
    height: auto;
  }
  .price {
    font-size: 20px;
  }
  .pricing-card h5{
    font-size: 22px;
    margin-bottom: 20px !important;
   }
  .features li {
    font-size: 16px;
  }
  .request-btn {
    font-size: 14px;
  }
  .cta-button {
    width: 100%;
    padding: 9px 25px;
    font-size: 15px;
  }
  .Location_Advantage li img {
    width: 20px;
    object-fit: contain;
  }
  .Location_Advantage li {
    font-size: 14px;
  }
  .Location_Advantage ul {
    padding-left: 0;
  }
  .form_wrapper {
    padding: 20px;
  }
  .modal-body .form_wrapper {
    padding: 20px 20px !important;
  }
  .close-btn {
    position: absolute;
    top: 0;
    right: 0;
  }
  .banner_form {
    position: static;
    top: 20%;
    right: 7%;
    z-index: 99;
    background-color: #b59c5c;
    padding: 40px 15px;
    backdrop-filter: blur(4px);
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }

  .input-group > .form-control, .input-group > .form-floating, .input-group > .form-select {
   
    border: 1px solid #ffffff!important;
}
  .banner_form .form_wrapper {
    padding: 0;
  }
  .banner_image {
    width: 100%;
    height: 100vh;
  }
  .amenity_item h6 {
    font-size: 16px;
  }
  .connect-icon {
    display: none;
  }
  .amenity_item h6 {
    padding-bottom: 0;
  }
  #contact {
    padding-top: 0;
    background-color: #ffe9e2;
  }

  .gallery_item {
    margin-top: 0 !important;
  }

  .galery_sec .swiper-slide.swiper-slide-next .gallery_item {
    height: auto;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }

  .highlight_item {
    background-color: #eff2f5;
    padding: 15px;
  }

  .Sideform {
    width: 95%;
    right: -100%;
    
  }
  .mb-10-mob{
    margin-bottom: 42px!important;
  }

  .highlight_item img {
    width: 40px;
    
}
.highlight_item h3 {
    font-size: 19px;
    font-weight: 400;
    line-height: 22px;
}

.master-plan-sec img {
    width: 80%;
    margin-bottom: 35px;
}

.nearby-loc-txt img {
    width: 25px;
    height: auto;
}

.nearby-location-bx { 
    padding: 12px;
    border-radius: 10px;
}

.nearby-loc-txt p {
    
    font-size: 16px;
    font-weight: 500;
}

.nearby-loc-km {
    
    font-size: 16px;
    font-weight: 600;
   
}

}


.e_gallery .col-sm-6 { padding: 0; }
.e_gallery .col-sm-6 a[data-fancybox="gallery"] { background: var(--brown); display: block}
.e_gallery img { height: 320px; object-fit: cover;  width: 100%; transition: all 0.3s; }
.e_gallery a:hover img { opacity: 0.5 }


@media (max-width: 991px) {
    .e_gallery img {  height: 24vw; }
}


@media (max-width: 1199px) {
    .e_gallery img { height: 250px; }
}

@media (max-width: 768px) {
    .e_gallery .col-sm-6 {  padding: 6px; }
}



@media screen and (min-width: 1280px) and (max-width: 1440px) {
  header .nav-links {
    gap: 25px;
  }
  .pricing-card p {
    font-size: 15px !important;
  }
  header .nav-links li a {
    font-size: 15px;
  }
  .input-group > .form-control,
  .input-group > .form-floating,
  .input-group > .form-select {
    height: 40px;
  }
  .phone-sec .phn-num {
    height: 40px;
  }
  .iti--separate-dial-code .iti__selected-flag {
    height: 40px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  header .nav-links {
    gap: 25px;
  }
  .pricing-card p {
    font-size: 15px !important;
  }
  header .nav-links li a {
    font-size: 14px;
  }
  .input-group > .form-control,
  .input-group > .form-floating,
  .input-group > .form-select {
    height: 40px;
  }
  .phone-sec .phn-num {
    height: 40px;
  }
  .iti--separate-dial-code .iti__selected-flag {
    height: 40px;
  }
  .sec_title {
    font-size: 40px;
  }
}
