@import url('https://fonts.googleapis.com/css2?family=Gantari:ital,wght@0,100..900;1,100..900&display=swap');
* {
  font-family: "Gantari", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}
    
html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body{
  background-color: #f9f4ee;
}
  
.navbar {
  position: sticky;
  top: 0;
  background-color: #013b2f;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  z-index: 100;
  padding: 2px;
}
    
.navbar-brand img {
  max-height: 50px; 
}
    
@media(max-width: 1200px){
  .navbar-brand img {
    max-height: 40px; 
  }

  .navbar {
    padding: 0.2rem 0.2rem !important; 
    text-align: center;
  }
}
  
.navbar-toggler{
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: bold;
}
      
.navbar-nav {
  margin-left: auto;
}
    
.nav-link{
  font-size: 15px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: #fff;
}

.nav-link:hover{
  color: #c0ac66;
}
    
/*---------------------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, #ffffff, #f7ecd9);
  margin: 5% auto;
  padding: 35px;
  border: 2px solid #c5a67e;
  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: #333;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  font-style: italic;
}

.popup-content .labelpara {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  color: #333;
  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: 2px;
  border: 1px solid #c5a67e;
  transition: all 0.3s ease-in-out;
}

.popup-input-group:focus-within {
  border-color: #c5a67e;
  box-shadow: 0 0 8px rgb(219, 209, 175);
}

.popup-input-group-prepend .popup-input-group-text {
  border-radius: 6px 0 0 6px;
  padding: 8px 12px;
  color: #013b2f;
  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: #013b2f;
}

.submit-button {
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 12px 18px;
  background: #e9caa1;
  color: #013b2f;
  font-size: 16px;
  font-weight: 600;
  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: #fde6c9;
  color: #01211b;
  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---------------*/
.carousel-item {
  width: 100%;
  height: 700px; 
}
  
.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
  
.carousel-container {
  position: relative;
}
  
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  color: #fff;
  margin: 10px;
}
  
.carousel-indicators {
  bottom: 10px;
}
  
.banner-offers {
  position: absolute;
  top: 50px;
  left: 25px;
  width: 25vw; 
  background-color: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 20px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10; 
}
  
.banner-offers h4 {
  font-size: 1.5vw;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
}
  
.banner-offers ul {
  list-style-type: none;
  padding: 0;
}
  
.banner-offers ul li {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.75;
  border: 2px dashed #fff;
  border-radius: 15px;
  color: #fff;
  margin-bottom: 8px;
  padding: 10px;
}
  
.pro-price {
  font-size: 22px !important;
  color: #fff;
  text-shadow: 0 1px 2px #000;
  margin-top: 10px;
  display: block;
  text-align: center;
}

.pro-price b{
  color: #e6cf7e;
  font-size: 25px !important;
}
  
.pro-tagg-line {
  font-size: 18px;
  text-transform: capitalize;
  line-height: 1.4;
  text-shadow: 0 1px 2px #000;
  color: #eed2ad;
  letter-spacing: 0.8px;
  display: block;
  text-align: center;
}
  
.enquire-btn {
  display: inline-block;
  font-weight: 400;
  color: #000;
  background-color: #e0ce8b;
  border: none;
  padding: .375rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: .25rem;
  margin: 0 auto;
  display: block;
}
  
.enquire-btn:hover {
  background-color: #332700;
  color: #fff;
}
  
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
  
.animated {
  animation-duration: 0.7s; 
  animation-iteration-count: infinite; 
  animation-direction: alternate; 
  animation-timing-function: ease-in-out; 
  animation-fill-mode: both; 
}
  
.zoomInOut {
  animation-name: zoomInOut;
}
  
.infinite {
  animation-iteration-count: infinite;
}
  
@media (max-width: 991px) {
  .carousel-item {
    width: 100%;
    height: 320px; 
    object-fit: cover;
  }
    
  .carousel-container {
    flex-direction: column;
  }
  
  .banner-offers {
    position: static;
    width: auto;
    padding: 15px;
    border-radius: 0;
    box-shadow: none;
    background-color: #013b2f;
  }
  
  .banner-offers h4 {
    font-size: 18px;
    text-align: center;
  }
  
  .banner-offers ul li {
    font-size: 12px;
  }
  
  .pro-tag-line{
    font-size: 16px;
    text-align: center;
  }
  
  .pro-price {
    font-size: 22px;
  }

}
  
/*----------------Overview Section--------------------*/
.overview-section{
  padding: 50px 20px;
}

.image-wrapper {
  border: 1px solid #013b2f;
  padding: 5px;
  display: inline-block;
  position: relative;
}

.overimg{
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.over-title {
  font-size: 32px;
  color: #b79852;
  text-transform: uppercase;
  letter-spacing: 1px;
}
  
.over-description {
  font-size: 18px;
  color: #333;
}
  
@media(max-width: 991px){
  .overview-section {
    padding: 30px 10px;
  }

  .overimg{
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .over-title {
    font-size: 22px;
    margin-top: 20px;
  }
      
  .over-description {
    font-size: 16px;
  }    
}

/*-------- Highilights Section ------------*/
.highlights-section {
  padding: 40px 20px;
  text-align: center;
}

.high-title {
  font-size: 32px;
  color: #b79852;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.underline {
  width: 80px;
  height: 3px;
  background: #b79852;
  margin: 0 auto 30px auto;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.highlight-box {
  padding: 18px 15px;
  border: 1px solid #e4d5b5;
  border-radius: 10px;
  background: #fdfaf5;
  transition: 0.3s;
}

.highlight-box:hover {
  background: #fff7e6;
  border-color: #c8a56b;
}

.highlight-box p {
  margin: 0;
  font-size: 17px;
  color: #333;
  line-height: 1.5;
}

.highlight-box p strong {
  color: #000;
}

@media(max-width: 991px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .high-title {
    font-size: 26px;
  }
}


/*-------------------Amenities Section--------------*/
.amenitieshead{
  font-size: 32px;
  color: #b79852;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.amenity-section {
  padding: 50px 20px;
  text-align: center;
}

.amenity-card {
  margin: 20px 0;
}

.amenity-icon {
  width: 80px;
  height: 80px;
  border: 1px solid #b79852;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.amenity-icon img {
  max-width: 50px;
  max-height: 50px;
}

.amenity-name {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

@media (max-width: 991px) {
  .amenity-section {
    padding: 20px 10px;
  }

  .amenitieshead {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .amenity-name {
    font-size: 14px;
  }  

  .amenity-card {
    flex: 0 0 50%; 
    max-width: 50%;
  }
}

/*----------------Configuration-------------*/
.configsection{
  padding: 50px 40px;
}

.confighead{
  font-size: 32px;
  color: #b79852;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-align: center;
}

.unique-table {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  border: 2px solid #c0ac66;
  text-align: center;
}

.theadb th{
  background-color: #013b2f;
  color: #eadaa0;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
}

.unique-table tbody tr {
  transition: background-color 0.3s;
}

.unique-table tbody tr:hover {
  background-color: rgba(212, 175, 55, 0.2);
}

.unique-table td {
  vertical-align: middle;
  color: #333;
  font-weight: 500;
}

.config-btn{
  color: #000;
  background-color: #e6cf7e;
  padding: 6px 16px;
  border-radius: 5px;
}

@media(max-width: 991px){
  .configsection {
    padding: 20px 10px;
  }

  .confighead {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .theadb th {
    letter-spacing: 0; 
    font-size: 12px;
  }

  .unique-table td {
    font-size: 14px;
  }

  .config-btn {
    padding: 2px 12px;
    font-size: 14px;
  }

}

/*----------------Unit Plans Section----------------*/
.unit-plans-section{
  padding: 60px 20px;
}

.unit-heading {
  font-size: 32px;
  text-transform: uppercase;
  color: #b79852;
}

.unit-underline {
  width: 80px;
  height: 3px;
  background-color: #b79852;
  border-radius: 2px;
  margin-top: 8px;
}

.unit-card {
  background-color: #fdfaf5; 
  border: 1px solid #013b2f;
  border-radius: 10px;
  padding: 10px;
  transition: 0.3s;
}

.unit-img {
  height: 200px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: blur(2px);
}

.unit-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  color: #013b2f;
}

.unit-btn{
  border: 2px solid #ebcea9;
  border-radius: 50px;
  margin-top: 10px;
  padding: 8px 20px;
  font-size: 16px;
  background-color: transparent;
  color: #333;
}

.unit-btn:hover{
  background-color: #c5a67e;
  color: #000;
}

.unit-carousel .owl-nav {
  position: relative;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.unit-carousel .owl-nav button {
  background: #e4d5b5 !important;
  color: #013b2f !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
}

@media(max-width: 768px){
  .unit-plans-section {
    padding: 20px 10px;
  }

  .unit-heading {
    font-size: 25px;
  }

}

/*-----------------Project Gallery Section-----------------*/
.project-gallery-section {
  padding: 60px 20px;
}

.gallery-heading {
  font-size: 32px;
  text-transform: uppercase;
  color: #b79852;
}

.gallery-underline {
  width: 80px;
  height: 3px;
  background-color: #b79852;
  border-radius: 2px;
  margin-top: 8px;
}

.gallery-slide-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  cursor: pointer;
}

.project-gallery-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.project-gallery-carousel .owl-nav {
  text-align: center;
  margin-top: 10px;
}

.project-gallery-carousel .owl-nav button {
  background: #e4d5b5 !important;
  color: #013b2f !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-size: 16px !important;
}

/*-----------------------Location Section----------------*/
.location-section{
  padding: 40px 30px;
}

.location-title {
  text-align: center;
  font-size: 32px;
  color: #b79852;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.accordion-button {
  color: #013b2f;
  border: none;
  border-radius: 0;
  font-weight: 500;
  font-size: 18px;
  transition: background-color 0.3s;
  width: 100%;
  text-align: left; 
}

.accordion-button:hover{
  color: #333;
  text-decoration: none;
}

.accordion-button.collapsed {
  color: #013b2f;
  text-decoration: none;
}

.card {
  border: 1px solid #c0ac66;
}

.card-body {
  border-radius: 10px;
}

.card-body ul {
  list-style-type: none;
}

@media (max-width: 768px) {
  .location-section{
    padding: 20px 10px;
  }

  .map-container {
    margin-bottom: 20px; 
  }

  .location-title {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .accordion-body {
    padding: 15px;
  }
    
}

/*----------------About Purvankara Legacy------------*/
#about-puravankara {
  width: 100%;
  padding: 60px 20px;
}

#about-puravankara .about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

#about-puravankara .about-text h2 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #b79852;
  margin-bottom: 25px;
  position: relative;
}

#about-puravankara .about-text h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #013b2f;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

#about-puravankara .about-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.stats-wrapper .stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.stats-wrapper .stat-item {
  flex: 1 1 45%;
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stats-wrapper .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.stats-wrapper .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #b79852;
  margin-bottom: 2px;
}

.stats-wrapper .stat-label {
  font-size: 16px;
  color: #013b2f;
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats-wrapper .stat-item {
    flex: 1 1 100%;
  }
}


/*-------------Contact us section------------------*/
footer {
  background-color: #141414;
  color: #fff;
  padding: 30px 0;
}

footer h4 {
  color: #c5a67e;
  margin-bottom: 15px;
}

footer a {
  color: #c5a67e;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.cnt-btn{
  background-color: #c5a67e;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  padding: 6px 18px;
  border-radius: 2px;
  letter-spacing: 0.9px;
}

.img-qr{
  width: 80px;
  height: 80px;
}

.privacy-link:hover{
  color: #c5a67e;
}

@media (max-width: 768px) {
  .contact-form, .contact-info {
    text-align: center;
  }
    
  .contact-info img {
    margin: 0 auto;
  }

  .img-qr{
    width: 50px;
    height: 50px;
  }  

  .address{
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
  }

  .dispara{
    font-size: 13px;
    padding-bottom: 30px;
  }

  .reragovlink{
    font-size: 13px;
  }

  footer h4 {
    margin-bottom: 10px;
    font-size: 25px;
    margin-top: 20px;
  }

  footer{
    padding: 10px 0;
  }

}

/*-----------------------------------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: #352901;
    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;
    } 
  }
  
  
  /*----------------------------ola/uber-----------------------------*/
  @media only screen and (max-width: 991px) {
    .freevisit-btn {
      bottom: 40px !important;
      left: 0 !important;
      width: 100%;
    }
  }
  
  .freevisit-btn {
      position: fixed;
      z-index: 9999;
      bottom: 2px;
      left: 10px;
      font-size: 16px !important;
      background: #9c7d15;
      border: none;
      margin: 30px auto 0px;
      color: #fff;
      border: 2px solid;
      padding: 8px 10px;
      font-weight: 400;
      outline: none !important;
      display: block;
  }
  
  .freevisitbtn {
      display: inline-block;
      margin-bottom: 0;
      font-weight: 400;
      text-align: center;
      white-space: nowrap;
      vertical-align: middle;
      -ms-touch-action: manipulation;
      touch-action: manipulation;
      cursor: pointer;
      background-image: none;
      border: 1px solid transparent;
      padding: 6px 10px;
      font-size: 14px;
      line-height: 1.42857143;
      border-radius: 4px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
  }
  
  
  
  
  