@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&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
  font-family: "Rubik", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}
    
html{
  scroll-behavior: smooth;
}
    
.navbar {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  z-index: 100;
  padding: 2px !important;
}
    
.navbar-brand img {
  max-height: 60px; 
}
    
@media(max-width: 1200px){
  .navbar-brand img {
    max-height: 40px; 
  }

  .navbar {
    padding: 0.8rem 0.8rem !important; 
    text-align: center;
  }
}
  
.navbar-toggler{
  color: #000 !important;
  font-size: 1.2rem;
  font-weight: bold;
}
      
.navbar-nav {
  margin-left: auto;
}
    
.nav-link{
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
}
    
.nav-link:hover{
  color: #ad750b;
}

/*--------------------------home slider style code----------------------*/
.for-desktop {
  display: block;
  width: 100%;
  height: auto;  
}

.for-mobile {
  display: none;
  max-width: 768px !important; 
  width: 100%;
  height: auto;   
}

@media (max-width: 768px) {
  .for-desktop {
    display: none;
  }

  .for-mobile {
    display: block;
  }
}



/*----------------------css popup code for all login forms one time written and apply for all-------------------------*/
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow: auto;
}
  
.popup-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 25px;
  border: 1px solid #888;
  max-width: 450px;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
  
.close-icon {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}
  
.popup-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color:#ad750b;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
}
  
.formlogo {
  display: block;
  margin: 0 auto 10px; 
}
  
.popup-content label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}
  
.popup-content input[type="text"],
.popup-content input[type="email"],
.popup-content input[type="tel"] {
  width: 100%;
  padding: 8px; 
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
  
.submit-button {
  font-size: 1.1rem;
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #ad750b;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
  
.submit-button:hover{
  background-color: #fff;
  color: #ad750b;
  border: 2px solid #ad750b;
}
  
@media (max-width: 600px) {
  .popup-content {
    margin: 20px;
  }
}
  
@media (max-width: 450px){
  .popup-content h2{
    font-size: 1rem;
  }  
} 

/*---------------overview section---------*/
.aboutus {
  padding: 70px 0;
  margin-top: 4%;
  background: #f1e3c8; 
}

.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: 767px) {
  .aboutus {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .aboutus .img-fluid {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .aboutus .col-lg-6{
    padding: 10px;
  }
  
  .aboutus_text {
    padding-right: 0;
    margin-bottom: 10px;
  }

  .aboutus_text .overhead {
    font-size: 28px;
    text-align: center;
  }

  .aboutus_text p {
    font-size: 16px;
  }

}

/*----------------Configuration------------------*/
.confighead{
    font-size: 35px;
    text-transform: uppercase;
    text-align: center;
    color: #ad750b;
    margin-bottom: 20px;
}

.underline2 {
    background: #ad750b;
    width: 56px !important;
    height: 4px;
    display: block;
    margin: 20px auto;
}

.global-sec {
    padding: 80px;
}

.pricingTable {
    text-align: center;
    padding: 35px 20px 0;
    box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.3);
    transition: ease all 0.5s;
    border: 2px solid #ad750b;
    height: 220px;
}

.pricingTable .title {
    color: #444444;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 25px;
}

.pricingTable .price-value {
    color: #444444;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    display: block;
}

.price-click {
    background: #ad750b;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    display: inline-block;
    transition: all 0.5s;
}

.price-click:hover{
    background-color: #593c06;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

@media(max-width: 768px){
    .pricingTable {
        margin-bottom: 20px;
    }

    .global-sec {
        padding: 30px 0;
    }

    .confighead{
        font-size: 1.8rem;
    }

    .pricingTable .title {
        font-size: 25px;
    }
    
    .pricingTable .price-value {
        font-size: 16px;
    }
}


/*----------------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;
}

.amenities_title_container h3 {
  font-size: 22px;
  color: #57207d;
  margin-bottom: 30px;
}

.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------------------*/
.heading h3 {
  font-size: 35px;
  text-transform: uppercase;
  text-align: center;
  color: #ad750b;
  margin-top: 5%;
  margin-bottom: 20px;
}

.underline2 {
  background: #ad750b;
  width: 56px !important;
  height: 2px;
  display: block;
  margin: 20px auto;
}

.img-content img {
  width: 100%;
  height: 300px; 
  object-fit: contain; 
  border: 2px solid #ad750b;
  filter: blur(2px);
}

.conf-main-content {
  position: relative;
}

.conf-content {
  background: #000000c2;
  padding: 20px;
  position: relative;
  z-index: 1;
  margin-top: -130px;
}

.conf-content h3 {
  color: #f1b13a;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.plan-click {
  cursor: pointer;
  border: 1px solid #f1b13a;
  color: #fff;
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 8px 13px;
  text-decoration: none;
}

.plan-click:hover {
  text-decoration: none;
  color: #fff;
}

.mt-4 {
  margin-top: 20px;
}

@media(max-width: 768px){
  .conf-main-content{
    margin-bottom: 20px;
  }
}

@media(max-width: 768px) {
  .heading h3 {
    font-size: 1.8rem;
  }
}


/*---------------------Gallery Section-------------------*/
.gallery-section {
  margin-top: 5%;
  padding: 30px 0;
  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;
  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) {
  .gallhead {
    font-size: 1.8rem;
  }
}

/*--------------------Loaction Advantage-------------------*/
.locationhead{
  font-size: 35px;
  text-transform: uppercase;
  text-align: center;
  color: #ad750b;
  margin-top: 5%;
}

.accordion .card {
  border: none;
  margin-bottom: 1rem;
}

.card-header {
  background-color: #ad750b;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.btn-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 2px; 
}

.btn-link:hover {
  text-decoration: none;
  color: #fff;
}

.card-body {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.card-body ul {
  list-style-type: none;
  padding-left: 0;
}

.card-body ul li {
  padding: 0.5rem 0;
  position: relative;
}

.card-body ul li:before {
  content: "✔";
  position: absolute;
  left: -15px;
  color: #ad750b;
  font-size: 1.2rem;
}

.location-map {
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s;
}

.location-map:hover {
  transform: scale(1.05);
}

@media(max-width: 768px) {
  .locationhead {
    font-size: 1.8rem;
  }
}

/*-------------------Footer section---------------------*/
.footer {
  background-color: #000;
  color: #f0f0f0;
  padding: 20px 0;
}

.footer h5 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

.input-group {
  width: 100%;
}

.input-group .input-group-text {
  background-color: #ad750b;
  border: 1px solid #ced4da;
  color: white; 
}

.input-group .form-control {
  border-radius: 0.25rem;
  box-shadow: none;
  border: 1px solid #ced4da;
}

.input-group .form-control:focus {
  border-color: #ad750b;
  box-shadow: 0 0 0 0.2rem rgba(255, 206, 107, 0.25);
}

.footer .btn-primary {
  background-color: #ad750b;
  border: none;
  border-radius: 0.25rem;
  padding: 10px 20px;
}

.footer .btn-primary:hover {
  background-color: #593c06;
}

.footer p {
  margin-bottom: 15px;
}

.footer img {
  margin-top: 10px;
}

.qr-codes {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.qr-codes div {
  text-align: center;
  flex: 1; 
  margin: 0 5px; 
}

.rerapara{
  margin-top: 10px;
  font-size: 14px;
}

.addrespara, .reralink{
  font-size: 1rem;
  letter-spacing: 1px;
}

.cnthead{
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cfd8dc;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .footer h5 {
    font-size: 1.25rem;
  }
  .form-row {
    flex-direction: column;
  }
  .footer img{
    width: 60px !important;
    height: 60px !important;
  }
  .rerapara{
    font-size: 12px;
  }
  .footer{
    margin-bottom: 5%;
  }
}

/*-----------------------------------whatsapp, phone, and enquiry 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 !important;
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background-color: #94650c !important;
  box-shadow: 0 1px 6px 2px rgb(0 0 0 / 40%) !important;
  z-index: 1030 !important;
}

.mob-action ul {
  display: flex !important;
  flex-direction: row !important;
  align-content: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 5px 0 !important;
  justify-content: space-around !important;
  align-items: center !important;
}

.mobile-view {
  display: none;
} 

@media (max-width: 991px) {
  .mobile-view {
    display: block;
  } 
}


