@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
* {
  font-family: "Google Sans", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}
    
html{
  scroll-behavior: smooth;
}
    
/*-------------Navbar section--------------*/
.navbar{
  background:#fff;
  box-shadow:0 0 10px rgba(0,0,0,.8);
  padding: 6px 8px;
  position:sticky;
  top:0;
  z-index:9999;
}

.navbar-brand img{
  max-height: 45px;
}

.navbar-nav{
  align-items:center;
}

.nav-link{
  font-size:16px;
  color:#000 !important;
  font-weight:500;
  padding: 6px 10px !important;
  white-space:nowrap;
}

.nav-link:hover{
  color:#a36700 !important;
}

.navbar-toggler{
  border:none;
  outline:none;
}

.navbar-toggler i{
  font-size:22px;
  color:#000;
}

@media(max-width:1200px){
  .navbar{
    padding:6px 12px;
  }

  .navbar-brand img{
    max-height: 35px;
  }

  .nav-link{
    font-size:13px;
    padding:6px 8px !important;
  }
}

@media(max-width:768px){
  .navbar{
    padding:8px 12px;
  }

  .navbar-brand img{
    max-height:30px;
  }

  .navbar-nav{
    text-align:center;
  }

  .nav-link{
    font-size:14px;
    padding:10px !important;
  }
}

/*--------------------------home slider style code----------------------*/
.hero-wrapper{
  width: 100%;
  background: #fff8eb;
  padding: 20px 15px;
}

.hero-flex{
  display: flex;
  gap: 15px;
  min-height: 600px;
}

.hero-image{
  flex: 0 0 55%;
}

.hero-image img{
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-content{
  flex: 0 0 45%;
  background: #e2cfab;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: center;
  min-height: 600px;
}

.content-box{
  width: 100%;
}

.hero-tagline{
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8c6515;
  margin-bottom: 10px;
}

.content-box h2{
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.location{
  font-size: 18px;
  margin-bottom: 14px;
  color: #444;
}

.content-box h3{
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f1f1f;
}

.price-tag{
  background: #a87b1d;
  color: #fff;
  font-size: 16px;
  padding: 10px 22px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
}

.price-highlight{
  color: #ffecc1;
  font-weight: 700;
  font-size: 25px;
}

.features{
  background:#f7edd6;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  border: 1px solid #ad750b;
}

.features p{
  margin: 0;
  font-size: 18px;
}

.features p + p{
  margin-top: 6px;
}

.payment-btn{
  background: #a87b1d;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 8px;
}

.hero-prev, .hero-next{
  width: 45px;
}

.hero-prev span, .hero-next span{
  font-size: 26px;
  color: #fff;
}

@media(max-width:991px){
  .hero-wrapper {
    padding: 10px 5px;
  }

  .hero-flex{
    flex-direction: column;
    min-height: auto;
  }

  .hero-image img{
    height: 280px;
  }

  .hero-content{
    min-height: auto;
    padding: 22px;
  }

  .content-box h2{
    font-size: 28px;
  }

  .content-box h3{
    font-size: 25px;
  }

  .hero-tagline{
    font-size: 12px;
  }

  .price-tag{
    font-size: 15px;
  }

  .price-highlight{
    font-size: 19px;
  }

  .features p{
    font-size: 15px;
  }

  .payment-btn{
    font-size: 18px;
    padding: 12px;
  }

}


@media(max-width: 576px){
  .hero-wrapper {
    padding: 10px 5px;
  }

  .hero-flex {
    gap: 5px;
  }

  .content-box h2 {
    font-size: 20px;
  }

  .location {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .content-box h3 {
    font-size: 18px;
  }

  .price-tag {
    font-size: 12px;
    padding: 5px 10px;
    margin-bottom: 10px;
  }

  .features p {
    font-size: 12px;
  }

  .features {
    padding: 8px 10px;
    margin-bottom: 10px;
  }

  .payment-btn {
    font-size: 14px;
    padding: 8px;
  }

  .hero-tagline{
    letter-spacing: 0px;
  }

}

/*----------------------Popup Form-------------------------*/
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  overflow: auto;
  backdrop-filter: blur(6px);
}

.popup-content {
  background: linear-gradient(145deg, #f0f0f0, #ffffff);
  margin: 5% auto;
  padding: 35px 30px;
  border-radius: 15px;
  max-width: 450px;
  position: relative;
  border: 1px solid #81590e;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 8px rgba(210, 165, 98, 0.2);
  transition: all 0.4s ease;
}

.close-icon {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #81590e;
  transition: color 0.3s ease;
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: #81590e;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}

.popup-content h2::after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #f1cd8e;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.popup-content .labelpara {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #555;
  text-align: center;
  line-height: 1.5;
}

.popup-content .form-group {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.input-group-prepend .input-group-text {
  background: linear-gradient(135deg, #fff, #f0e1cb);
  border: none;
  border-radius: 6px 0 0 6px;
  padding: 12px;
  color: #81590e;
  display: flex;
  align-items: center;
}

.input-group-text i {
  font-size: 1.1rem;
}

.popup-content input {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 0 6px 6px 0;
  box-sizing: border-box;
  font-size: 16px;
  background: transparent;
  outline: none;
  color: #333;
}

.popup-content input:focus {
  box-shadow: 0 0 6px rgba(210, 132, 98, 0.7);
}

.submit-button {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #a36700, #8c6f39);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Cinzel", serif;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.submit-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .popup-content {
    margin: 20px;
    padding: 25px 20px;
  }
}

@media (max-width: 450px) {
  .popup-content h2 {
    font-size: 12px;
    font-weight: 700;
  }

  .popup-content input {
    font-size: 14px;
  }

  .submit-button {
    font-size: 14px;
    font-weight: 800;
    padding: 8px 10px;
  }
}

/*---------------overview section---------*/
.aboutus {
  padding: 40px 20px;
}

.aboutus_text {
  padding-right: 10px;
}

.aboutus_text .overhead {
  font-size: 30px;
  text-transform: uppercase;
  text-align: left;
  color: #ad750b;
  margin-bottom: 20px;
}

.aboutus_text p {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
}

.aboutus .img-fluid{
  width: 100%;
  max-height: 100%;
  height: 450px;
  object-fit: cover;
  border: 2px solid #ad750b;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media (max-width:991px){
  .aboutus{
    padding: 40px 15px;
  }
  .aboutus_text{
    padding-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .aboutus_text .overhead{
    font-size: 24px;
    text-align: center;
  }
  .aboutus_text p{
    font-size: 15px;
    line-height: 1.7;
  }
  .aboutus-img{
    height: 320px;
  }
}

@media (max-width:576px){
  #aboutus .row{
    display: flex;
    flex-direction: column;
  }

  #aboutus .col-lg-6:first-child{
    order: 2;
  }

  #aboutus .col-lg-6:last-child{
    order: 1;
  }

  .aboutus{
    padding: 20px 10px;
  }

  .aboutus_text .overhead{
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
  }

  .aboutus_text p{
    font-size: 14px;
    line-height: 1.6;
  }

  .aboutus .img-fluid {
    width: 100%;
    max-height: 100%;
    height: 300px;
    object-fit: cover;
  }

}

/*----------------Configuration------------------*/
.global-sec{
  padding: 70px 40px;
}

.confighead{
  font-size: 34px;
  text-transform: uppercase;
  text-align: center;
  color: #ad750b;
  margin-bottom: 15px;
}

.underline2{
  background: #ad750b;
  width: 60px;
  height: 4px;
  display: block;
  margin: 15px auto 40px;
}

.pricingTable{
  text-align: center;
  padding: 20px 10px;
  border: 2px solid #ad750b;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  height: 160px;
}

.pricingTable:hover{
  transform: translateY(-5px);
}

.pricingTable .title{
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pricingTable .price-value{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.price-click{
  background: #ad750b;
  color: #fff;
  padding: 8px 18px;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.price-click:hover{
  background: #593c06;
  color: #fff;
  text-decoration: none;
}
@media (max-width:991px){

  .global-sec{
    padding: 60px 25px;
  }

  .confighead{
    font-size: 28px;
  }

  .pricingTable{
    height: auto;
    padding: 25px 15px;
  }

  .pricingTable .title{
    font-size: 24px;
  }

  .pricingTable .price-value{
    font-size: 15px;
  }

}

@media (max-width:576px){
  .global-sec{
    padding: 20px 10px;
  }

  .confighead{
    font-size: 24px;
  }

  .underline2{
    margin-bottom: 25px;
  }

  .pricingTable{
    padding: 22px 12px;
  }

  .pricingTable .title{
    font-size: 22px;
  }

  .pricingTable .price-value{
    font-size: 14px;
  }

  .price-click{
    font-size: 14px;
    padding: 7px 14px;
  }

}

/*----------------Amenities Section-------------------*/
.amenities {
  padding: 50px 0;
  background-color: #292928;
  text-align: center;
}

.amenitieshead{
  font-size: 35px;
  color: #dea131;
}

.underline1 {
  background: #fac25a;
  width: 56px !important;
  height: 2px;
  display: block;
  margin: 20px auto;
}

.amenities_title_container p {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.features_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.features_item {
  width: 250px;
  padding: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border: 6px double #ad750b;
}

.features_item:hover {
  transform: translateY(-5px);
}

.features_item img {
  width: 65px;
  height: 65px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.features_item p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .amenities {
    padding: 10px 0;
  }

  .features_item {
    width: calc(50% - 20px);
    padding: 10px;
  }

  .amenitieshead{
    font-size: 1.8rem;
    margin-top: 20px;
  } 
  
  .amenities_title_container h3 {
    font-size: 16px;
    margin-bottom: 1px;
  }

}

/*--------------------Plans section------------------*/
.floorplan{
  padding: 50px 20px;
}

.heading h3{
  font-size: 34px;
  text-transform: uppercase;
  text-align: center;
  color: #ad750b;
  margin-bottom: 15px;
}

.underline2{
  background: #ad750b;
  width: 60px;
  height: 3px;
  display: block;
  margin: 15px auto 35px;
}

.conf-main-content{
  position: relative;
  overflow: hidden;
}

.img-content img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 2px solid #ad750b;
  filter: blur(2px);
}

.conf-content{
  background: rgba(0,0,0,0.75);
  padding: 18px;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.conf-content h3{
  color: #f1b13a;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.plan-click{
  border: 1px solid #f1b13a;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 7px 14px;
  text-decoration: none;
  display: inline-block;
}

.plan-click:hover{
  background: #f1b13a;
  color: #000;
  text-decoration: none;
}

@media(max-width:991px){
  .heading h3{
    font-size: 28px;
  }

  .img-content img{
    height: 260px;
  }

  .conf-content h3{
    font-size: 17px;
  }

  .plan-click{
    font-size: 13px;
    padding: 6px 12px;
  }

}

@media(max-width: 768px){
  .floorplan{
    padding: 20px 10px;
  }
   
  .underline2 {
    margin: 10px auto 15px; 
  }  
}

@media(max-width:576px){
  .floorplan{
    padding: 20px 10px;
  }

  .heading h3{
    font-size: 24px;
  }

  .img-content img{
    height: 230px;
  }

  .conf-content{
    padding: 14px;
  }

  .conf-content h3{
    font-size: 16px;
  }

  .plan-click{
    font-size: 12px;
    padding: 6px 10px;
  }

}

/*---------------------Gallery Section-------------------*/
.gallery-section {
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
  background-image: url('images/garden.jpg');
  background-size: cover;
  background-position: center;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.gallhead {
  text-align: center;
  font-size: 35px;
  margin-bottom: 20px;
  color: #dba542;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.owl-carousel .item img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 2px solid #dba542;
  position: relative;
  z-index: 2;
}

.owl-carousel .owl-nav .owl-prev, 
.owl-carousel .owl-nav .owl-next {
  margin: 10px 5px;
  width: 45px;
  height: 45px;
  background-color: #dba542 !important;
  color: #000 !important;
  font-size: 25px !important;
  border-radius: 50% !important;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media(max-width: 768px) {
  .gallery-section {
    padding: 20px 15px;
  }
 
  .gallhead {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .owl-carousel .item img {
    height: 220px;
  }

  .owl-carousel .owl-nav .owl-prev, 
  .owl-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
  }

}

/*--------------------Loaction Advantage-------------------*/
.location-section{
  padding:60px 20px;
}

.locationhead{
  font-size:35px;
  text-transform:uppercase;
  text-align:center;
  color:#ad750b;
  margin-bottom:10px;
}

.underline2{
  background:#ad750b;
  width:60px;
  height:2px;
  margin:0 auto 40px;
}

.location-accordion .card{
  border:none;
  margin-bottom:15px;
}

.location-accordion .card-header{
  background:#ad750b;
  padding:10px 15px;
  border-radius:4px;
}

.location-accordion .btn-link{
  color:#fff;
  font-size:16px;
  width:100%;
  text-align:left;
  text-decoration:none;
}

.location-accordion .btn-link:hover{
  color:#fff;
  text-decoration:none;
}

.location-accordion .card-body{
  background:#fff;
  padding:18px;
  border:1px solid #ddd;
}

.location-accordion ul{
  list-style:none;
  padding:0;
  margin:0;
}

.location-accordion ul li{
  padding:6px 0 6px 20px;
  position:relative;
  font-size:15px;
}

.location-accordion ul li:before{
  content:"✔";
  position:absolute;
  left:0;
  top:6px;
  color:#ad750b;
  font-size:14px;
}

.location-map{
  width:100%;
  border-radius:6px;
  box-shadow:0 4px 16px rgba(0,0,0,0.6);
}

@media(max-width:991px){
  .location-map{
    margin-bottom:30px;
  }
}

@media(max-width: 768px){
  .location-section {
    padding: 20px 10px;
  }

  .underline2 {
    margin: 0 auto 20px;
  }

}

@media(max-width:576px){
  .location-section {
    padding: 20px 10px;
  }

  .locationhead{
    font-size: 22px;
  }
 
  .underline2 {
    margin: 0 auto 20px;
  }

  .location-accordion .btn-link{
    font-size: 14px;
  }

  .location-accordion ul li{
    font-size:14px;
  }
}

/*----------------About Developer--------------------------*/
.about-dev{
  padding: 40px 20px;
  text-align: center;
}

.about-dev-wrap{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.about-dev-logo{
  max-width: 60px;
  margin-bottom: 15px;
}

.about-dev-heading{
  font-size: 1.7rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-dev-text{
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

@media (min-width:1200px){
  .about-dev-heading{
    font-size: 1.9rem;
  }

  .about-dev-text{
    font-size: 1.05rem;
    line-height: 1.9;
  }

}

@media (max-width:1199px){
  .about-dev-heading{
    font-size: 1.7rem;
  }

  .about-dev-text{
    font-size: 1rem;
  }

}

@media (max-width:991px){
  .about-dev-logo{
    max-width: 55px;
  }

  .about-dev-heading{
    font-size: 1.55rem;
  }

  .about-dev-text{
    font-size: 0.98rem;
    line-height: 1.75;
  }

}

@media (max-width:767px){
  .about-dev{
    padding: 10px 8px;
  }

  .about-dev-logo{
    max-width: 50px;
  }

  .about-dev-heading{
    font-size: 1.45rem;
  }

  .about-dev-text{
    font-size: 0.95rem;
    line-height: 1.7;
  }

}

@media (max-width:480px){
  .about-dev {
    padding: 10px 8px;
  }

  .about-dev-logo{
    max-width: 45px;
  }

  .about-dev-heading{
    font-size: 1.3rem;
  }

  .about-dev-text{
    font-size: 0.92rem;
    line-height: 1.65;
  }

}

/*-------------------Footer section---------------------*/
.footer {
  background-color: #000;
  color: #f0f0f0;
  padding: 30px 0;
}

.footer-info h5{
  margin-top: 30px;
}

.cnthead {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.f-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.f-col {
  width: 32%;
}

.f-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.f-icon {
  background: #ad750b;
  padding: 10px 14px;
  color: #fff;
}

.f-input-wrap input {
  border: none;
  padding: 10px;
  width: 100%;
  outline: none;
}

.f-input-wrap input:focus {
  box-shadow: 0 0 0 2px rgba(173,117,11,.3);
}

.f-btn-wrap {
  width: 100%;
  margin-top: 12px;
}

.f-btn {
  background: #ad750b;
  border: none;
  padding: 10px 25px;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.f-btn:hover {
  background: #593c06;
}

.qr-codes {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.qr-codes img {
  width: 100px;
}

.rerapara {
  margin-top: 8px;
  font-size: 14px;
}

.addrespara, .reralink {
  font-size: 1rem;
}

.reralink a {
  color: #dfae59;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cfd8dc;
  margin-top: 20px;
}

.policylink{
  color: #dfae59;
}

@media(max-width:576px) {
  .footer-info{
    margin-top: 20px;
  }

  .addrespara, .reralink {
    font-size: 14px;
  }

  .reralink {
    margin-bottom: 10px;
  }

  .qr-codes {
    margin: 8px 0;
  }

  .f-col {
    width: 100%;
  }

  .qr-codes img {
    width: 60px;
  }

  .rerapara {
    font-size: 12px;
  }

  .footer {
    padding: 20px 10px;
  }

  .disclaimer {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 30px;
  }

}

/*-----------------------------------whatsapp, phone code-----------------------*/
#desktop-view {
  position: fixed;
  bottom: 20px; 
  right: 20px; 
  z-index: 9999; 
}
  
.icn {
  margin: 15px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  animation: zoomIcons 0.6s ease-in-out infinite; 
}
  
@keyframes zoomIcons {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); 
  }
  100% {
    transform: scale(1);
  }
}
  
.icn:hover {
  animation-play-state: paused; 
}
  
@keyframes gradient {
  0%{
    background-position: 0 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0 50%;
  }
}
  
@media(max-width: 768px){
  .icn{
    width: 20px;
    height: 20px;
  }
}
  
@media(max-width: 991px){
  #desktop-view{
    display: none;
  }
}
  
/*-------------------------mobile section contact-----------------------*/
.mob-action {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #a36700;
  box-shadow: 0 1px 6px 2px rgb(0 0 0 / 40%);
  z-index: 1030;
}
  
.mob-action ul {
  display: flex;
  flex-direction: row;
  align-content: center;
  list-style: none;
  padding: 0;
  margin: 10px 0;
  justify-content: space-around;
  align-items: center;
}
  
.mobile-view {
  display: none;
} 

@media (max-width: 991px) {
  .mobile-view {
    display: block;
  } 
}
  
  
 