@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
* {
  font-family: "Maven Pro", 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.8);
  z-index: 100;
  padding: 5px !important;
}
    
.navbar-brand img {
  max-height: 45px; 
}
    
@media(max-width: 1200px){
  .navbar-brand img {
    max-height: 35px; 
  }

  .navbar {
    padding: 0.6rem 0.6rem !important; 
    text-align: center;
  }
}
  
.navbar-toggler{
  color: #000 !important;
  font-size: 1.3rem;
  font-weight: bold;
}
      
.navbar-nav {
  margin-left: auto;
}
    
.nav-link{
  font-size: 16px;
  font-weight: 500;
  color: #805832;
}
    
.nav-link:hover{
  color: #2c1d0e;
}

/*---------------------Popup Form Code-------------------*/
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  overflow: auto;
  backdrop-filter: blur(5px);
}

.popup-content {
  background: linear-gradient(135deg, #f6e7cf, #f7ecd9);
  margin: 5% auto;
  padding: 35px;
  border: 2px solid #805832;
  max-width: 450px;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-icon {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.close-icon:hover {
  transform: rotate(90deg);
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #805832;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
}

.popup-content .labelpara {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  color: #805832;
  text-align: center;
}

.popup-form-group {
  margin-bottom: 22px;
  position: relative;
}

.popup-input-group {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 6px;
  padding: 5px;
  border: 1px solid #093828;
  transition: all 0.3s ease-in-out;
}

.popup-input-group:focus-within {
  border-color: #805832;
  box-shadow: 0 0 8px rgb(128, 88, 50);
}

.popup-input-group-prepend .popup-input-group-text {
  background-color: #805832;
  border: 1px solid #805832;
  border-radius: 6px 0 0 6px;
  padding: 10px 12px;
  color: #fff;
  font-size: 1rem;
}

.popup-input-group-text i {
  font-size: 1.2rem;
}

.popup-form-control {
  width: 100%;
  padding: 12px;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #093828;
}

.submit-button {
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 12px 18px;
  background: linear-gradient(135deg, #805832, #4d3721);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.submit-button:hover {
  background: linear-gradient(135deg, #805832, #3e3328);
  box-shadow: 0 6px 12px rgb(9, 56, 40, 0.5);
}

@media (max-width: 600px) {
  .popup-content {
    margin: 20px;
    padding: 25px;
  }
}

@media (max-width: 450px) {
  .popup-content h2 {
    font-size: 1.4rem;
  }
}

/*-----------------Home Page section---------------*/
.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 Section------------------*/  
.overview-section {
  background: #e6c8a3;
  padding: 40px 20px;
  border-top: 1px solid #805832;
}

.overview-heading {
  font-weight: 700;
  color: #805832;
  font-size: 36px;
  margin-bottom: 20px;
}

.overview-description {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
}

.overview-image-wrapper {
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  display: inline-block;
  padding: 10px;
}

.overview-image {
  border-radius: 50%;
  max-width: 100%;
  height: 500px;
}

@media(max-width: 768px){
  .overview-section {
    padding: 20px 10px;
  }

  .overview-heading {
    font-size: 1.7rem;
  }

  .overview-description {
    font-size: 14px;
  }

  .overview-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
  }

  .overview-image-wrapper {
    border-radius: 0;
    padding: 5px;
  }

}

/*-------------------Project Highlights Section---------------*/
/* .project-highlights-section {
  background: #fcf5ee;
  border-top: 1px solid #805832;
  padding: 40px 20px;
}

.highlight-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #805832;
}

.highlight-subtitle {
  font-size: 18px;
  color: #5a4531;
}

.highlight-box {
  background: #fff;
  padding: 20px 10px;
  border-radius: 12px;
  border: 1px solid #a9937e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.highlight-box img {
  height: 50px;
  margin-bottom: 15px;
}

.highlight-box h5 {
  font-size: 18px;
  font-weight: 600;
  color: #805832;
}

.highlight-box p {
  font-size: 14px;
  color: #000;
}

@media(max-width: 768px){
  .project-highlights-section {
    padding: 20px 2px;
  }

  .highlight-title {
    font-size: 1.8rem;
  }

  .highlight-subtitle {
    font-size: 16px;
  }

} */

.project-highlights-section {
  background: #fcf5ee;
  border-top: 1px solid #805832;
  padding: 40px 20px;
}

.highlight-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #805832;
}

.highlight-subtitle {
  font-size: 18px;
  color: #5a4531;
}

.highlight-box {
  background: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  border: 1px solid #a9937e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.highlight-box img {
  height: 50px;
  margin-bottom: 15px;
}

.highlight-box h5 {
  font-size: 18px;
  font-weight: 600;
  color: #805832;
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 14px;
  color: #000;
  margin-bottom: 0;
}

@media(max-width: 768px){
  .project-highlights-section {
    padding: 20px 10px;
  }

  .highlight-title {
    font-size: 1.8rem;
  }

  .highlight-subtitle {
    font-size: 16px;
  }

  .highlight-box {
    padding: 15px 12px;
  }

  .highlight-box img {
    height: 40px;
  }

  .highlight-box h5 {
    font-size: 16px;
  }

  .highlight-box p {
    font-size: 13px;
  }
}


/*----------------------Amenities Section------------------*/
.amenities-section {
  background-color: #fff;
  padding: 40px 20px;
  border-top: 1px solid #805832;
}

.amenities-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #805832;
}

.amenity-icon {
  width: 35px;
  height: 35px;
  margin-right: 15px;
  margin-top: 3px;
}

.amenity-text {
  font-size: 18px;
  font-weight: 400;
  color: #444;
}

@media (max-width: 767px) {
  .amenities-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .amenities-section {
    padding: 10px 20px;
  }

  .amenity-item {
    display: flex;
    align-items: center;
  }

  .amenity-icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }

  .amenity-text {
    font-size: 16px;
    color: #444;
  }

  .amenities-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
  }
}

/*----------------Configuration and Unit Plans Section--------------*/
.config-unit-section {
  background: linear-gradient(to bottom right, #f3e4d7, #fff9f2);
  padding: 40px 20px;
  border-top: 1px solid #805832;
}

.config-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #805832;
  position: relative;
}

.config-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #c59d5f, #8a623b);
  margin: 12px auto 0;
  border-radius: 2px;
}

.config-table th {
  background: linear-gradient(to right, #f9e5c5, #fbe9d4);
  color: #5b3a1f;
  font-weight: 600;
  font-size: 16px;
  border: none;
}

.config-table td {
  background-color: #fffdf9;
  color: #333;
  font-size: 15px;
  vertical-align: middle;
  border-top: 1px solid #eee;
}

.btn-config {
  background: linear-gradient(to right, #a9794d, #6f472a);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-config:hover {
  background: linear-gradient(to right, #6f472a, #a9794d);
  transform: scale(1.05);
  color: #fff;
}

.unit-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
  background-color: #fff;
  border: 1px solid #805832;
  padding: 20px;
}

.unit-card:hover {
  transform: translateY(-8px);
}

.unit-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  filter: blur(1px);
}

.unit-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(128, 88, 50, 0.9);
  color: #fff;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  z-index: 2;
}

.btn-view-plan {
  position: static !important;
  display: block;
  margin: 10px auto 0 auto;
  opacity: 1 !important;
  background-color: #805832;
  color: #fff;
  padding: 6px 16px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-view-plan:hover {
  background-color: #6f472a;
  color: #ffff;
}

.unit-card:hover .btn-view-plan {
  opacity: 1 !important;
}

@media(max-width: 768px){
  .config-unit-section {
    padding: 10px 2px;
  }

  .config-table th {
    font-size: 12px;
  }

  .config-table td {
    font-size: 12px;
  }

  .btn-config {
    font-size: 12px;
  }

  .config-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

@media(min-width: 300px) and (max-width: 600px){
  .config-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

/*-----------------Gallery Section------------------*/
.gallery-section {
  background: #e6c8a3;
  padding: 40px 20px;
  border-top: 1px solid #805832;
}

.gallery-title {
  margin-bottom: 40px;
  font-size: 36px;
  color: #805832;
}

.gallery-carousel .carousel-inner {
  overflow: visible;
}

.gallery-carousel .carousel-item .image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.image-wrapper {
  flex: 0 0 30%;
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  border: double 4px #8a623b;
  transition: transform 0.3s ease;
}

.custom-prev, .custom-next {
  background-color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-prev {
  left: 2%;
}

.custom-next {
  right: 2%;
}

.carousel-control-icon {
  font-size: 1.5rem;
  color: #805832;
  font-weight: bold;
}

@media (max-width: 992px) {
  .image-wrapper {
    flex: 0 0 45%;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 20px 2px;
  }

  .gallery-carousel .carousel-item .image-row {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .image-wrapper {
    flex: 0 0 100%;
    max-width: 90%;
  }

  .gallery-img {
    height: 220px;
  }

  .custom-prev, .custom-next {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 2rem;
  }

  .gallery-img {
    height: 200px;
  }
}

/*---------------------Location Advantage Section--------------------*/
.location-advantage-section {
  background: #f6e7cf;
  padding: 30px 0;
}

.section-title {
  font-size: 36px;
  color: #805832;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #c59d5f, #8a623b);
  margin: 10px auto 0;
  border-radius: 2px;
}

.map-responsive {
  position: relative;
  overflow: hidden;
  padding-bottom: 70%;
  height: 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-box {
  background: #fff;
  border-left: 4px solid #805832;
  padding: 10px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  transition: 0.3s ease;
}

.custom-location-box {
  width: 100%;
  max-width: 90%;
}

.location-box h5 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #805832;
}

.location-box ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.location-box ul li {
  list-style: disc;
  font-size: 18px;
  margin-bottom: 8px;
  color: #333;
}

.location-box:hover {
  transform: translateY(-5px);
}

@media (max-width: 767.98px) {
  .location-advantage-section {
    padding: 10px 0;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .section-title::after {
    width: 50px;
    height: 3px;
  }

  .map-responsive {
    padding-bottom: 60%;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .location-box {
    padding: 12px 15px;
    margin-bottom: 20px;
  }

  .location-box h5 {
    font-size: 16px;
  }

  .location-box ul li {
    font-size: 13px;
  }

  .custom-location-box {
    max-width: 100%;
  }
}

/*------------------About the Develpoer------------------*/
.about-developer-section {
  background-color: #f9f9f9;
  color: #000;
  padding: 40px 20px;
  border-top: 1px solid #805832;
}

.about-developer-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.developer-logo {
  width: 140px;
  height: auto;
}

.developer-heading {
  font-size: 32px;
  font-weight: 700;
  color: #805832;
  text-transform: uppercase;
}

.developer-underline {
  width: 70px;
  height: 4px;
  background-color: #2c1d0e;
  margin: 10px auto;
}

.developer-description {
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
}

@media (max-width: 768px) {
  .about-developer-section {
    padding: 20px 15px;
    text-align: center;
  }

  .developer-heading {
    font-size: 26px;
  }

  .developer-description {
    font-size: 14px;
    max-width: 100%;
  }

  .developer-logo {
    width: 100px;
    margin-bottom: 15px;
  }

  .developer-underline {
    width: 50px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .about-developer-section {
    padding: 20px 10px;
  }

  .developer-heading {
    font-size: 22px;
  }

  .developer-description {
    font-size: 13px;
  }

  .developer-underline {
    width: 40px;
  }
}

/*-------------------Contact Us Section-----------------------*/
.contact-section {
  background: linear-gradient(to bottom right, #fdf6ef, #fff);
  padding: 40px 20px;
  border-top: 1px solid #805832;
}

.contact-title {
  font-size: 36px;
  color: #4a321f;
  margin-bottom: 40px;
  position: relative;
}

.contact-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #a9794d;
  margin: 10px auto 0;
  border-radius: 2px;
}

.form-wrapper {
  background: #fff;
  border-radius: 12px;
}

.fancy-input {
  border-radius: 30px;
  padding-left: 40px;
  height: 45px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: border-color 0.3s;
}

.fancy-input:focus {
  border-color: #805832;
  box-shadow: none;
}

.form-icon {
  position: absolute;
  top: 13px;
  left: 14px;
  color: #805832;
  font-size: 16px;
}

.btn-submit {
  background: linear-gradient(to right, #a9794d, #6f472a);
  color: #fff;
  border-radius: 25px;
  padding: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(to right, #6f472a, #a9794d);
  transform: scale(1.02);
  color: #fff;
}

.info-box h5 {
  font-size: 16px;
  font-weight: 600;
  color: #805832;
  margin-top: 16px;
}

.info-box p, .info-box a {
  font-size: 14px;
  color: #333;
  margin-bottom: 0;
}

.reralist ul li{
  list-style-type: none;
}

.rera-logo {
  height: 50px;
}

.disclaimer-box {
  margin-top: 30px;
}

.disclaimer-box small {
  font-size: 13px;
}

.privacylink{
  color: #5b3a1f;
}

.privacylink:hover{
  color: #5b3a1f;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .contact-section {
    padding: 20px 2px;
  }

  .contact-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .fancy-input {
    height: 42px;
    font-size: 13px;
  }

  .btn-submit {
    padding: 8px;
    font-size: 14px;
  }

  .info-box h5 {
    font-size: 15px;
  }

  .info-box p {
    font-size: 13px;
  }

  .rera-logo {
    height: 40px;
  }

  .disclaimer-box{
    margin-bottom: 40px;
  }

}

/*-----------------------------------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;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #805832;
    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 screen for mobile view----------------------*/
  @media (max-width: 991px) {
    .mobile-view {
      display: block;
    } 
  }
  
  
 