
@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap');
*{
  font-family: "Overpass", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html{
  scroll-behavior: smooth;
}

/*-----------------------------navbar code---------------------------*/
.navbar {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 100;
  padding: 0 !important;
}

.navbar-brand img {
  max-height: 50px; 
}

@media(max-width: 768px){
  .navbar-brand img {
    max-height: 40px; 
    margin-left: 10px;
  }
  .navbar {
    padding: 10px; 
  }
}

.nav-link{
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
}

.nav-link:hover{
  background-color: #1f5a46;
  padding: 5px;
  color: #fff;
}

/*-----------------Contact Form For Mobile View-------------*/
#contact-form-mobile {
  background: linear-gradient(135deg, #e0f7f4, #f1f9f8);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-background {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #c7dfdb;
}

.form-title {
  color: #0d402f;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-control {
  padding: 20px 50px;
  border-radius: 30px;
  border: 2px solid #c7dfdb;
  font-size: 16px;
  background-color: #f7fdfb;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  border-color: #165742;
  box-shadow: 0 0 10px rgba(22, 87, 66, 0.15);
}

.form-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #165742;
  font-size: 20px;
}

.btn-custom {
  background-color: #165742;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-custom:hover {
  background-color: #0f2920;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}


/*-------------------------------home page----------------------*/
.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;
  }
}
 
/*----------------------------------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: 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:#1f5a46;
  font-size: 26px;
  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: #1f5a46;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
  
.submit-button:hover{
  background-color: #023826;
  color: #fff;
}
  
@media (max-width: 600px) {
  .popup-content {
    margin: 20px;
  }
}
  
@media (max-width: 450px){
  .popup-content h2{
    font-size: 1rem;
  }
} 

/*-----------------------overview section-----------------*/
.overview-container {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 10px;
  margin-top: 5%;
}
  
.overview-row {
  display: flex; 
  flex-wrap: wrap; 
}
  
.overview-row .col-md-6 {
  flex: 0 0 50%; 
  padding: 0 25px; 
}
  
.overview-row .overhead1 {
  font-size: 30px; 
  font-weight: 700;
  margin-bottom: 10px; 
  text-transform: uppercase;
}

@media(max-width: 768px){
  .overview-row .overhead1{
    font-size: 25px;
  }

  .overview-row .overhed2 {
    font-size: 20px;
  }

  .overview-row .overpara {
    font-size: 16px; 
  }
}
  
.overview-row .overhed2 {
  font-size: 25px;
  margin-bottom: 15px; 
}
  
.overview-row .overpara {
  font-size: 17px; 
}

.img-fluid {
  max-width: 100%;
  height: auto; 
  border: 6px double #1f5a46;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7); 
}

@media (max-width: 767px) {
  .overview-row .col-md-6 {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

/*-------------------Highlights Section-------------------*/
.highlights-section {
  background-color: #f4f4f4;
  padding: 50px 0;
  margin-top: 2%;
}

.highlights-heading {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.highlights-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.highlight-item {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  width: 22%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-10px);
}

.highlight-icon {
  font-size: 3rem;
  color: #1f5a46;
  margin-bottom: 10px;
}

.highlight-text h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.highlight-text p {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
  .highlights-heading {
    font-size: 1.7rem;
    margin-bottom: 2px;
  }

  .highlights-section {
    padding: 20px 0;
  }

  .highlight-item {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .highlights-heading {
    font-size: 1.7rem;
    margin-bottom: 2px;
  }

  .highlights-section {
    padding: 20px 0;
  }

  .highlight-item {
    width: 90%;
  }
}

/*-------------------------amenities section---------------------*/
.ame-container {
  width: 80%;
  margin: 0 auto;
}
  
.section-title {
  text-align: center;
  margin-top: 8%;
  margin-bottom: 20px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
  
.amenity-card {
  border: 6px double #1f5a46;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
}
  
.amenity-card:hover {
  transform: scale(1.05); 
}
  
.amenity-card p {
    margin: 0;
    font-weight: 700;
}
  
@media screen and (max-width: 768px) {
    .amenities-grid {
      grid-template-columns: 1fr; 
    }
  
    .section-title{
      font-size: 1.6rem;
    }
  
}
  
.amenity-card img {
    max-width: 50px;
    height: auto;
    margin-bottom: 10px; 
}

/*-----------------------configuration---------------------*/
.config-head{
    text-align: center;
    margin-top: 5%;
    margin-bottom: 10px;
}

.pricing-section {
    position: relative;
    background-image: url('images/balconyview.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
}

.pricing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
}

.pricing-heading h3 {
    color: #fff;
    text-align: center;
}

.pricing-form {
    background-color: #FFFFFF33;
    padding: 20px;
    border-radius: 5px;
}

.pricing-form input,
.pricing-form select {
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
    border: 1px solid #69727d;
    border-radius: 4px;
}

.pricing-form .priceform-btn {
    background-color: #1f5a46;
    color: #fff;
    width: 100%;
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pricing-form .priceform-btn:hover {
    background-color: #000;
}

.pricing-table {
    margin-top: 20px;
    font-size: 1.1rem;
}

.pricing-table th,
.pricing-table td {
    color: #fff;
    padding: 15px;
    border-width: 2px;
    border-style: none;
    background-clip: padding-box;
}

.pricing-table a {
    color: #fff;
    text-decoration: none;
}

.pricing-table a:hover {
    text-decoration: underline;
}

.pricetable-btn{
    background-color: #1f5a46;
    color: #fff;
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s; 
}

.pricetable-btn:hover{
    background-color: #000;
}

@media(max-width: 768px){
  .config-head{
   font-size: 1.7rem;
  } 

  .pricing-heading h3 {
    font-size: 1.4rem;
  }

  table{
    font-size: 1rem;
  }

  .pricing-section{
    padding: 10px;
  }

  .pricing-heading h3 {
    margin-top: 10px;
  }

}

/*-----------------------------floor plan----------------------*/
.floor-tittle{
    margin-top: 5%;
    text-align: center;
    margin-bottom: 20px;
}
    
  .floor-plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
  }
    
  .floor-plan {
    margin: 10px;
    padding: 20px;
    background-color: #fff;
    border: 4px double #1f5a46;
    text-align: center;
    position: relative;
    width: 350px; 
    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;
    font-weight: 500;
    padding: 8px 16px;
    border: none;
    background-color: #1f5a46;
    color: white;
    border-radius: 4px;
    cursor: pointer;
  }
    
  .view-details-button:hover {
    background-color: #074732;
    color:#fff;
  } 

  @media (max-width: 768px) {
    .floor-plan {
      width: 100%; 
      max-width: 300px; 
    }
    .floor-head{
     font-size: 1.7rem;
    }
  }

/*-------------------------section------------------------*/ 
.hero {
    position: relative;
    margin-top: 5%;
    height: 550px;
    background-image: url('images/topview.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.book-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1f5a46;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.book-button:hover {
    background-color: #023826;
}

@media(max-width: 768px){
  .hero-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-title1{
    font-size: 23px;
  }
}

/*-----------------------------------gallery slider------------------------------*/
.galleryhead{
    text-align: center;
    margin-top: 5%;
}
  
.owl-carousel {
    display: flex;
    justify-content: center;
    margin: 0;
}
  
.owl-item {
    width: 100%; 
}
  
.item {
    position: relative;
    height: 300px; 
}
  
.item img {
    width: 100%;
    height: 100%;
    border: 2px solid #1f5a46;
    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;
    }

    .galleryhead{
       font-size: 1.7rem;
    }
}

/*-------------------------location section-----------------*/
.locathead{
    text-align: center;
    margin-top: 5%;
}
  
#location-info {
    padding: 10px;
}
  
.accordion-list li{
    list-style-type: none;
    margin-bottom: 10px !important;
}
  
#accordion .card-header {
    background-color: #1f5a46;
    color: white;
    font-weight: bold;
    cursor: pointer;
    padding-left: 40px;
    position: relative;
}
  
#accordion .btn-link {
    color: white;
}
  
#accordion .card-body {
    background-color: #f0f0f0;
}
  
.btn-link.collapsed::before,
.btn-link::before {
    content: "\002D";
    font-size: 1.7em;
    background-color:#1f5a46;
    padding: 10px 14px;
    color: white;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
  
.btn-link.collapsed::before {
    content: "\002B";
    background-color:#1f5a46;
    color: #fff;
}

@media(max-width: 768px){
  .locathead{
     font-size: 1.7rem;
  }
}

/*--------------------Video Section-----------------*/
.video-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
  margin-top: 30px;
}

.video-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #343a40;
}

.video-description {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 20px;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.custom-video {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .video-heading {
      font-size: 1.8rem;
  }

  .video-section{
     padding: 20px 5px;
  }

  .custom-video {
      height: 200px; 
  }
}

@media (max-width: 480px) {
  .video-heading {
      font-size: 1.8rem;
  }

  .video-section{
    padding: 20px 5px;
  }

 .custom-video {
      height: 150px;
  }
}
  


/*---------------------------completed projects-------------*/
.custom-project-card {
  margin-bottom: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
  height: 420px; 
}

.custom-project-card:hover {
  transform: translateY(-5px);
}

.custom-project-card .custom-card-img-top {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.custom-project-card .custom-card-body {
  background-color: #f8f9fa;
  height: calc(100% - 300px); 
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.custom-project-card .custom-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f5a46;
}

.custom-project-card .custom-card-text {
  color: #333;
}

@media(max-width: 768px){
     .projecthead{
         font-size: 1.7rem !important;
     }
}
  
/*-------------------------------contact section-----------------*/
.contact-section {
    background-image: url('images/greenview.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    margin-top: 5%;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-container {
    z-index: 1;
    position: relative;
}

.contact-row {
    margin-top: 50px; 
}

.contact-form-group {
    margin-bottom: 20px; 
}

.conthead {
    color: #fff;
    text-align: center; 
}

.input-group-text {
    background-color: #1f5a46;
    color: white;
}

.form-control {
    height: 48px;
}

.cnt-btn{
    padding: 10px;
    width: 100%;
    font-size: 1.2rem;
    background-color: #1f5a46;
    color: white;
}

.cnt-btn:hover {
    background-color: #074732;
}

iframe {
    border: none;
    width: 100%;
    height: 450px; 
}

@media(max-width: 600px){
  iframe{
    width: 100%;
    height: 350px !important; 
  }

  .conthead {
    font-size: 1.6rem;
    margin-top: 20px;
  }

  .contact-section{
    padding: 10px;
  }

  .form-control {
    height: 35px;
  }

  .cnt-btn{
    padding: 5px;
  }

}

/*------------------------------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 #1f5a46;
    width: 100px;
    height: 100px; 
  }
  
  .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: #1f5a46;
    font-weight: bold;
    text-decoration: none;
  }
  
  .adres_phone_para a:hover {
    text-decoration: underline;
  }
  
  .disclaimer-section {
    background-color: #1f5a46;
    font-size: 1.1rem;
    color: #fff;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 25px;
  }
  
  .gov-link {
    color: #1f5a46;
    font-weight: bold;
  }
  
  .terms-link {
    color: #1f5a46;
    font-weight: bold;
  }
  
  .privacy-policy-link {
    color: #fff;
  }
  
  .privacy-policy-link:hover {
    text-decoration: underline;
    color: #fff;
  }
  
  @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 {
    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: #0e4533;
    cursor: pointer;
  }
  
  .ola_uber img{
    border-style: none;
    vertical-align: middle;
  }
  
  @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: 1200px){
    #desktop-view{
      display: none;
    }
  }
  
  /*-------------------------mobile section contact-----------------------*/
  .mob-action {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #074732;
    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: #0e4533;
    cursor: pointer;
  } 
  
  /*------------------------media screen for mobile view----------------------*/
  @media (max-width: 1200px) {
    .mobile-view {
      display: block;
    } 
  }