@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;500;600&display=swap');

*{
  font-family: 'Sen', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}


html{
  scroll-behavior: smooth;
}
 
.navbar {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 5px !important;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.2);;
}
    
.navbar .logo {
  flex: 1;
  padding: 0 10px;
}
    
.navbar .logo img {
  max-height: 45px;
  vertical-align: middle;
}
    
.navbar .menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}
    
.navbar .menu li {
  margin: 0;
  padding: 15px;
}
  
.menu .number{
  border: 1px solid rgb(0, 0, 0);
  border-radius: 8px;
  padding: 3px !important;
}
    
.navbar .menu li a {
  color: #000;
  text-decoration: none;
}
   
.navbar .menu li a:hover {
  color: #5C7235;
}
    
.menu-button {
  display: none;
  cursor: pointer;
  color: #5C7235;
  font-size: 24px;
  padding: 10px;
}
  
@media (max-width: 1200px) {
  .navbar .menu {
    display: none;
    flex-direction: column;
    text-align: center;
    background-color: #ffffff;
    color: #000;
    padding: 10px;
    position: absolute;
    top: 60px;
    width: calc(100% - 20px); 
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
    
  .navbar .menu.active {
    display: flex;
  }
    
  .navbar .menu li {
    margin: 5px 0;
    padding: 0;
    display: block;
  }
    
  .navbar .menu li a {
    display: block;
    padding: 5px;
  }
    
  .menu-button {
    display: block;
    }
  }

  .call-button {
    background-color: #5C7235;
    color: #fff !important;
    padding: 10px 8px;
    border-radius: 5px;
    text-decoration: none;
  }
    
  .call-button:hover{
    cursor: pointer;
  }


  .enquire-button {
    position: fixed;
    top: 50%;
    right: -63px;
    transform: rotate(90deg);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 10px 20px;
    background-color: #394b1b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
  }


/*----------------------------------one popup form for all style code-------------------*/
.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: 20px;
  border: 1px solid #888;
  max-width: 500px;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color:#5C7235;
  font-size: 20px;
  text-align: center;
}

.popup-content label {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
}

.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: #5C7235;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.submit-button:hover{
  background-color: #000;
  color: #fff;
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 50px;
}

.icons img {
  width: 45px;
  height: 45px;
  margin: 0 5px;
}

.icons .formimageicon{
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}


/* Media query for smaller screens */
@media (max-width: 600px) {
 .popup-content {
   margin: 20px;
  }
}

@media (max-width: 450px){
  .popup-content h2{
     font-size: 1rem;
  }
  
.icons {
  gap: 40px;
}

.icons img {
  width: 40px;
  height: 35px;
 }
}   


/*----------------------code for home slider-----------------*/
.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;
  }
}

/*------------------------overview code------------------------*/
.overview-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#overview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#testimonial-slider {
  width: 52%; 
}

.testimonial {
  border-left: 3px solid #5C7235;
  padding: 40px 0 20px 50px;
  position: relative;
  background-color: #fff;
}

.testimonial:before {
  border-top: 3px solid #5C7235;
  top: 0;
}

.testimonial:before, .testimonial:after {
  content: "";
  width: 365px;
  height: 35px;
  border-right: 3px solid #5C7235;
  position: absolute;
  left: 0;
}

.testimonial:after {
  border-bottom: 3px solid #5C7235;
  bottom: 0;
}

.testimonial-content {
  max-width: 70%;
  margin: 0 auto;
}

.overview-head {
  color: #5C7235;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 4%;
}

.over-head {
  color: #5C7235;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.testimonial .description {
  font-size: 18px;
  color: #333;
  text-align: left;
  line-height: 25px;
  position: relative;
}

.description {
  font-size: 14px;
  color: #000;
  line-height: 27px;
}

.register_form_wrap {
  width: 52%;
  background: #84a84a;
  padding: 50px;
  border-left: 3px solid #5C7235;
  border-bottom: 3px solid #5C7235;
}

.form-title {
  color: #000;
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: bold;
  color: #fff;
}

.form-control {
  border-radius: 0;
}

.input-group-addon {
  color: #fff;
  padding: 6px;
  background-color: #394b1b;
  border: 1px solid #394b1b;
}

.price-btn {
  margin: 0 auto;
  display: block;
  background-image: none;
  text-shadow: none;
  color: #fff;
  border: 2px solid #5C7235;
  background: #394b1b;
  border-radius: 0;
  padding: 8px 30px;
  transition: all 0.5s ease;
  font-weight: 800;
  box-shadow: none;
}

.price-btn:hover{
   background-color: #000;
   color: #fff;
}


@media only screen and (max-width: 768px) {
#overview {
  flex-direction: column;
}

#testimonial-slider,
.register_form_wrap {
  width: 100%;
  border-left: none;
  border-top: none;
}

.testimonial:before, 
.testimonial:after {
  border: none;
}

.testimonial {
  border-left: none;
  padding: 2px;
}

.register_form_wrap {
  padding: 2px;
 }

.testimonial .description {
  text-align: center;
}

}

@media(max-width: 600px){
  .overview-head{
    font-size: 1.8rem;
  }

  .over-head{
    font-size: 18px;
  }

  .testimonial .description{
    font-size: 15px;
  }

  .form-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .register_form_wrap,
  .testimonial-content {
    float: none;
    width: 100%;
  }
}


/*-------------------avalon overview--------------*/
.overview-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 20px;
}

.avalonhead{
  font-size: 30px;
  text-transform: uppercase;
  color: #5C7235;
}

.avalonpara{
  font-size: 18px;
}

.image-container,
.text-container {
  flex: 1;
  max-width: 50%;
  box-sizing: border-box;
  padding: 10px;
}

.image-container img {
  width: 100%;
  height: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .overview-section {
    flex-direction: column;
    padding: 5px;
  }

  .avalonhead{
    font-size: 18px;
    margin-top: 20px;
  }

  .avalonpara{
    font-size: 15px;
  }

  .image-container img{
    width: 100%;
    height: auto;
  }

  .image-container,
  .text-container {
      max-width: 100%;
      padding: 5px;
  }
}

/*------------------------------configuration---------------------------*/
.config-head{
  text-align: center;
  margin-bottom: 2%;
  color: #fff;
}

#configuration {
  position: relative;
  background-image: url('images/bed.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  /* margin-top: 4%; */
  padding: 100px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#configuration::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  left: 0;
  top: 0;
  box-sizing: border-box;
  padding: 120px 0; 
  display: block;
}

#configuration .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  text-align: center;
}

.sec-head {
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 13px;
  line-height: 35px;
  color: #fff;
}

.config-wrap {
  text-align: center;
  border: 10px solid #ffffff;
  padding: 25px;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.43);
  margin-bottom: 20px;
  transition: ease all 0.5s;
}

.config-wrap h3 span {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}

.config-wrap h2 {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  color: #fff;
}

.config-wrap .pricing_btn {
  background: #5C7235;
  border: none;
  font-size: 17px;
  color: #ffffff;
  padding: 8px 5px;
  margin: 5px 0;
  font-weight: 600;
  border: 2px solid;
  outline: none;
}

.row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

.col-md-4 {
  flex: 1;
  width: 400px;
}

@media(max-width: 600px){
  .config-head{
    font-size: 1.8rem;
  }
}

@media(max-width: 768px){
  .row {
    flex-direction: column;
    gap: 10px; 
  }

  .col-md-4 {
    width: 100%; 
  }

  /* .register_form_wrap {
    order: -1;
  } */

}

/*----------------------------------amenities------------------------------------*/
.amenities-wrap {
  text-align: center;
  padding: 20px 10px;
  position: relative;
  background: #f0f0f0;
  width: 220px;
  margin-top: 30px;
}

.amenities-wrap:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
  border-top: 3px solid #5C7235;
  border-left: 3px solid #5C7235;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.amenities-wrap:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 0;
  right: 0;
  border-bottom: 3px solid #5C7235;
  border-right: 3px solid #5C7235;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.amenities-wrap:hover:before, .amenities-wrap:hover:after {
  width: 100%;
  height: 100%;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
}

.custom-col-md-3 {
  flex: 0 0 calc(25% - 10px); 
  margin-bottom: 20px;
}

.custom-container {
  max-width: 1200px; 
  margin: 0 auto; 
}

.amenities-wrap img {
  max-width: 60px;
  height: auto; 
  margin-bottom: 10px; 
}

.img-head{
  font-size: 1rem;
  font-weight: 600;
  color: #5C7235;
}

.amenities-head{
  text-align: center;
  margin-top: 5%;
  margin-bottom: 1%;
  color: #5C7235;
}

@media (max-width: 767px) {
  .custom-col-md-3 {
    flex: 0 0 calc(50% - 10px); 
  }

  .amenities-wrap {
    width: 100%; 
    margin-bottom: 20px;
  }

  .amenities-head {
    margin-top: 4%;
  }
}

@media(max-width: 600px){
  .amenities-head{
    font-size: 1.8rem;
  }
}

/*-----------------------------floor plan-----------------------------------*/
.floorhead {
  color: #5C7235;
  margin-top: 5%;
}

.floor-plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.floor-plan {
  margin: 20px;
  padding: 20px;
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  text-align: center;
  position: relative;
  width: 300px; 
  transition: transform 0.3s ease;
}

.floor-plan-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 200px; 
}

.floor-plan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
}

.floor-plan:hover {
  transform: scale(1.05) translateY(-10px); 
}

.floor-plan-text {
  margin-top: 10px;
  font-size: 1.2rem;
}

.view-details-button {
  margin-top: 10px;
  font-size: 1rem;
  padding: 8px 16px;
  border: none;
  background-color: #5C7235;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.view-details-button:hover {
  background-color: #000;
} 


@media (max-width: 768px) {
  .floorhead{
    font-size: 1.5rem;
  } 

  .floor-plan {
    width: 100%; 
    max-width: 330px; 
  }
}

@media (max-width: 450px){
  .floorhead{
    font-size: 1.5rem;
  } 
}

@media (max-width: 300px){
  .floorhead{
    font-size: 12px;
  }
}

/*-----------------------------------Avalon victoria floor plan------------------------------*/
.avalon-plan-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.avalon-plan {
  width: 300px; 
  position: relative;
}

.avalonfloorhead {
  text-align: center;
  margin-top: 5%;
  margin-bottom: 15px;
  color: #5C7235;
}

.avalonimage-container {
  position: relative;
  width: 100%;
  height: 200px; 
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.avalonimage-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: blur(1px);
}

.avalonoverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0; 
  transition: opacity 0.3s ease;
}

.btn3 {
  padding: 10px 20px;
  background-color: #5C7235;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.avalonimage-container:hover .avalonoverlay {
  opacity: 1;
}

.avalontext {
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
  background-color: #5C7235;
  color: #fff;
  padding: 10px;
  border-radius: 0 0 5px 5px;
}

@media (max-width: 768px) {
  .avalon-plan {
    width: 100%;
  }
  .avalonfloorhead{
      font-size: 1.4rem;
  }
}




/*-----------------------------------gallery slider------------------------------*/
.galleryhead{
  text-align: center;
  margin-top: 5%;
  color: #5C7235;
}

.owl-carousel {
  display: flex;
  justify-content: center;
  margin: 0;
}

.owl-item {
  width: 100%; 
}

.item {
  position: relative;
  height: 300px; 
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  font-size: 24px;
  color: #555;
  display: block;
  transform: translateY(-50%);
  cursor: pointer;
}

.owl-prev {
  left: 10px;
}

.owl-next {
  right: 10px;
}

.owl-prev:hover, .owl-next:hover {
  color: #333;
}

@media (max-width: 768px){
  .owl-prev {
    left: 10px;
  }

  .owl-next {
    right: 10px;
  }
}


/*-------------------------------Contact Us----------------------------*/
.locationhead{
  text-align: center;
  margin-top: 5%;
  color: #5C7235;
}

.lochead{
  font-size: 1.7rem;
  text-align: center;
}


.location-container {
  display: flex;
  width: 80%;
  justify-content: space-between;
  padding: 10px;
  gap: 20px;
  margin: 0 auto;
}

.address {
  flex: 1;
  padding: 10px;
  color: #000;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center; 
}

.contact-form {
  flex: 1;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
}

.lochead {
  margin-top: 0;
  margin-bottom: 2%;
}

.contactus-form-group {
  margin-bottom: 10px;
}

.contactus-form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 2%;
}

.contactus-form-group input[type="text"],
.contactus-form-group input[type="email"],
.contactus-form-group input[type="tel"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #b8b8b8;
  border-radius: 4px;
}

.contactus-form-group .cntbtn {
  background-color: #5C7235;
  color: #fff;
  font-size: 1rem;
  border: none;
  padding: 8px 25px;
  border-radius: 4px;
  cursor: pointer;
}

.contactus-form-group .cntbtn:hover {
  background-color: #000;
  color: #fff;
}

.address iframe {
  width: 100%;
  max-height: 340px; 
}

@media (max-width: 768px) {
  .location-container {
    flex-direction: column; 
    padding: 0 !important; 
    gap: 10px; 
  }

  .address,
  .contact-form {
    padding: 15px; 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px; 
    width: 100%; 
  }

  .locationhead{
    font-size: 1.8rem;
  }

}


/*------------------------------footer section---------------------*/
.footer-container {
  margin: 5px auto; 
  max-width: 100%; 
  padding: 0 20px; 
  box-sizing: border-box; 
}

.connect-with-me {
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.qr-code {
  margin-bottom: 20px;
  text-align: center;
}

.qr-code img {
  border: 2px solid #5C7235;
  width: 80px;
  height: 80px; 
}

.reranum{
  margin-top: 2%;
  font-size: 1.1rem;
}

.dispara{
  font-size: 1.2rem;
}

.adres_para,
.adres_submision_para,
.adres_phone_para,
p {
  margin: 0;
}

.adres_para,
.adres_phone_para{
  font-size: 1.2rem;
}

.adres_phone_para {
  text-align: center;
}

.adres_phone_para a {
  color: #5C7235;
  font-weight: bold;
  text-decoration: none;
}

.adres_phone_para a:hover {
  text-decoration: underline;
}

.disclaimer-section {
  background-color: #394b1b;
  font-size: 1.1rem;
  color: #fff;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.gov-link {
  color: #5C7235;
  font-weight: bold;
}

.terms-link {
  color: #5C7235;
  font-weight: bold;
}

.privacy-policy-link {
  color: #dadada;
}

.privacy-policy-link:hover {
  color: #000;
}

@media(max-width: 768px){
  .disclaimer-section{
    margin-bottom: 15%;
  }
}

@media (min-width: 769px) and (max-width: 991px){
  .disclaimer-section{
    margin-bottom: 10%;
  }
}

/*---------------------------------desktop fixed position whatsapp and phone---------------------*/
#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; 
}

.ola_uber_desk {
  position: fixed;
  padding: 0 12px;
  height: 40px;
  bottom: 0;
  left: 0;
  color: #fff !important;
  text-align: center;
  z-index: 100;
  margin: 0 auto;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  text-shadow: none;
  font-size: 16px;
  font-weight: 500;
  background-color: #4f7114;
  cursor: pointer;
}

@media(max-width: 768px){
  .icn{
    width: 20px;
    height: 20px;
  }
}

@media(max-width: 1200px){
  #desktop-view{
    display: none;
  }
}

/*-------------------------mobile section contact-----------------------*/
.mob-action {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #5C7235;
  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;
} 

.ola_uber_mobile {
  padding: 0 10px;
  height: 35px;
  bottom: 0;
  left: 0;
  color: #fff !important;
  text-align: center;
  box-shadow: 2px 3px 15px 0px #100f0f;
  z-index: 100;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  text-shadow: none;
  font-size: 15px;
  font-weight: 500;
  background-color: #4f7114;
  cursor: pointer;
} 

/*------------------------media screen for mobile view----------------------*/
@media (max-width: 1200px) {
  .mobile-view {
    display: block;
  } 
}



