@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
* {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  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: 1px !important;
}

.navbar-brand img {
  max-height: 50px;
}

@media(max-width: 1200px) {
  .navbar-brand img {
    max-height: 35px;
  }

  .navbar {
    padding: 0.4rem 0.4rem !important;
    text-align: center;
  }
}

.navbar-toggler {
  color: #000 !important;
  font-size: 1.4rem;
  font-weight: bold;
}

.navbar-nav {
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #262f46;
}

.nav-link:hover {
  color: #dfb83f;
}

.container-flex {
  display: flex;
}


/*----------------------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: 5% auto;
  padding: 30px;
  border: 1px solid #888;
  max-width: 450px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.close-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #262f46;
  font-family: "Lobster", serif;
  font-size: 26px;
  text-align: center;
}

.popup-content .labelpara {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  margin-top: 10px;
}

.popup-content input {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.popup-content .form-group {
  margin-bottom: 20px;
}

.input-group-prepend .input-group-text {
  background-color: #ddd;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px;
  color: #262f46;
}

.input-group-text i {
  font-size: 1.2rem; 
}

.submit-button {
  font-size: 1.2rem;
  display: block;
  width: 100%;
  padding: 8px 16px;
  background-color: #ffca06;
  color: #262f46;
  font-weight: 400;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #080d18;
  color: #fff;
}

@media (max-width: 600px) {
  .popup-content {
    margin: 20px;
  }
}

@media (max-width: 450px) {
  .popup-content h2 {
    font-size: 1.2rem;
  }
}


/*------------------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: #f7f5ee;
  border-top: 1px solid #ffca06;
  border-bottom: 1px solid #ffca06;
  padding: 40px 20px;
}

.overview-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.overview-text {
  flex: 1;
  padding: 20px;
  max-width: 50%;
}

.overview-text h2 {
  font-size: 30px;
  color: #262f46;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ffca06;
  display: inline-block;
}

.overview-description {
  font-size: 17px;
  color: #333437;
  line-height: 1.7;
  margin-bottom: 30px;
}

.overview-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.overview-features li {
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.overview-features li:hover {
  background-color: #fff4c2;
  transform: translateX(5px);
}

.overview-features li .icon {
  margin-right: 10px;
  font-size: 18px;
  color: #ffca06;
}

.overview-image {
  flex: 1;
  max-width: 48%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.overview-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border: 3px solid #ffca06;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.overview-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .overview-content {
    flex-direction: column;
    text-align: center;
  }

  .overview-section {
    padding: 20px 5px;
  }

  .overview-text {
    max-width: 100%;
    text-align: left; 
  }

  .overview-features {
    grid-template-columns: 1fr;
  }

  .overview-features li {
    justify-content: flex-start;
    font-size: 14px;
    padding: 8px 12px;
  }

  .overview-image {
    max-width: 100%;
  }

  .overview-text h2 {
    font-size: 1.2rem;
  }

  .overview-description {
    font-size: 15px;
  }

  .overview-image img {
    height: auto;
  }
}

/*--------------Amenities Section-------------*/
.amesection {
  padding: 40px 20px;
  background-color: #fff7d6;
  border-bottom: 1px solid #ffca06;
  overflow: hidden;
  position: relative;
}

.amenitieshead {
  font-size: 36px;
  color: #262f46;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.amenitieshead::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ffca06;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.owl-carousel .owl-item img {
  width: 100%;
  display: block;
}

.item-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}

.ami_sec {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.ami_sec:hover {
  transform: translateY(-4px);
}

.ami_sec img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #ffca06;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.ami_sec p {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(38, 47, 70, 0.85);
  color: #fff;
  padding: 6px 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.ami_sec:hover p {
  background: #ffca06;
  color: #262f46;
}

.owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.owl-nav button {
  pointer-events: all;
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  color: #262f46 !important;
  font-size: 30px !important;
  font-weight: bold !important;
  transition: 0.3s ease-in-out;
}

.owl-nav button:hover {
  background: #ffca06 !important;
  color: #262f46 !important;
}

.owl-prev {
  margin-left: -10px;
}

.owl-next {
  margin-right: -10px;
}

@media (max-width: 991px) {
  .amenitieshead {
    font-size: 1.7rem;
  }

  .amesection {
    padding: 10px 20px;
  }

  .ami_sec img {
    height: 140px;
  }

  .ami_sec p {
    font-size: 12px;
    padding: 4px 10px;
  }

  .owl-nav button {
    width: 38px;
    height: 38px;
    font-size: 24px !important;
  }
}

/*--------------------Configuration----------------*/
.configuration-section {
  background-color: #fff;
  padding: 50px 30px;
}

.section-heading {
  font-size: 2.2rem;
  color: #262f46;
  margin-bottom: 30px;
  font-weight: 800;
  text-align: center;
  position: relative;
}

.section-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #ffca06;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.table-responsive {
  overflow-x: auto;
}

.configuration-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
}

.configuration-table th,
.configuration-table td {
  padding: 16px;
  text-align: center;
  border: 1px solid #262f46;
  font-size: 15px;
}

.configuration-table th {
  background-color: #262f46;
  color: #fff;
  font-weight: 600;
}

.configuration-table tr:hover {
  background-color: #f1f1f1;
  transition: background 0.3s ease;
}

.config-button {
  /* background: linear-gradient(90deg, #dfb83f, #262f46); */
  background-color: #ffca06;
  padding: 10px 18px;
  color: #262f46;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.config-button:hover {
  background: #262f46;
  color: #ffca06;
}

@media(max-width: 767px){
  .section-heading {
    font-size: 1.6rem;
  }

  .configuration-section {
    padding: 20px 20px;
  }

  .configuration-table th,
  .configuration-table td {
    padding: 12px;
    font-size: 13px;
  }

  .config-button {
    padding: 8px 14px;
    font-size: 13px;
  }
}


/*-------------Floor Plan Section------------*/
#plans {
  padding: 50px 30px;
  background-color: #f7f5ee;
  border-top: 1px solid #ffca06;
}

.masterhead {
  font-size: 2.2rem;
  color: #262f46;
  text-align: center;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
}

.masterhead::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #ffca06;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.floor-plan-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.floor-plan-card {
  background: #fafafa;
  border: 1px solid #262f46;
  border-radius: 12px;
  max-width: 350px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floor-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.floor-plan-img-wrap {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.floor-plan-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: blur(2px);
}

.floor-plan-button {
  margin-top: 15px;
  padding: 10px 18px;
  background-color: #ffca06;
  color: #262f46;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.floor-plan-button:hover {
  background: #262f46;
  color: #ffca06;
}

@media screen and (max-width: 768px) {
  #plans {
    padding: 20px 15px;
  }

  .floor-plan-container {
    flex-direction: column;
    align-items: center;
  }

  .floor-plan-card {
    width: 100%;
    max-width: 90%;
  }

  .masterhead {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .floor-plan-img-wrap img {
    height: 180px;
  }
}

/*-------------------Location Section----------------*/
.location-section {
  background-color: #fff;
  padding: 40px 30px;
  border-top: 1px solid #ffca06;
}

.map-container {
  width: 100%;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  overflow: hidden;
}

.category-title {
  font-size: 36px;
  font-weight: 800;
  color: #262f46;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.category-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #ffca06;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.location-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-category {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.location-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  width: 100%;
}

.location-group {
  background: linear-gradient(135deg, #fefefe, #f7f7f7);
  border-radius: 16px;
  border: 1px solid #262f46;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-group:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.icon-container {
  font-size: 2.8rem;
  color: #ffca06; 
  margin-bottom: 18px;
}

.group-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #262f46;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.location-list li {
  font-size: 0.95rem;
  color: #444c6b;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.location-list li i {
  font-size: 1.3rem;
  color: #ffca06;
  margin-right: 12px;
}

.location-list li:hover {
  color: #262f46;
  transform: translateX(7px);
}

.full-width {
  grid-column: span 1;
}

@media (max-width: 991px) {
  .location-section {
    padding: 15px 10px 10px 10px;
  }

  .map-container iframe {
    height: 280px !important;
  }

  .category-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .location-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .location-group {
    padding: 18px 15px;
    box-shadow: none;
  }

  .group-title {
    font-size: 1.2rem;
  }

  .location-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}


/*------------------------Contact Section----------------*/
.footer {
  background: linear-gradient(135deg, #fdf6e3 0%, #fff7d6 100%);
  color: #1b2330;
  padding: 40px 20px;
  border-top: 1px solid #ffca06;
}

.footer-heading {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #262f46;
  border-bottom: 4px solid #ffca06;
  padding-bottom: 0.6rem;
  max-width: max-content;
}

.contact-form .form-label {
  font-weight: 600;
  color: #444;
  margin-bottom: 0.7rem;
  display: block;
  letter-spacing: 0.5px;
}

.footer .form-control {
  border-radius: 12px;
  border: 2px solid #ffca06;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  color: #1b2330;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 6px rgb(223 184 63 / 0.2);
}

.footer .form-control::placeholder {
  color: #b5a86d;
  font-style: italic;
}

.footer .form-control:focus {
  border-color: #262f46;
  box-shadow: 0 0 8px rgba(38, 47, 70, 0.6);
  outline: none;
  background: #fffbe6;
}

.btn-cnt {
  background: #262f46;
  color: #fdf6e3;
  border: none;
  border-radius: 25px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  margin-top: 1.6rem;
  box-shadow: 0 4px 12px rgba(38, 47, 70, 0.4);
}

.btn-cnt:hover,
.btn-cnt:focus {
  background: #ffca06;
  color: #1b1b1b;
  box-shadow: 0 6px 18px rgba(223, 184, 63, 0.7);
  outline: none;
  transform: translateY(-2px);
}

.contact-info address {
  font-style: normal;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #555;
  letter-spacing: 0.2px;
}

.contact-info a {
  color: #131825;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #262f46;
}

.contact-info i {
  margin-right: 10px;
  color: #ffca06;
  font-size: 1.2rem;
  vertical-align: middle;
}

.footer-bottom {
  border-top: 1px solid #ffca06;
  color: #7a6b0a;
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  font-style: italic;
}

@media (max-width: 768px) {
  .footer {
    padding: 20px 10px;
  }
  
  .footer-heading {
    font-size: 1.6rem;
    border-bottom: 3px solid #ffca06;
    margin-bottom: 1.3rem;
  }

  .footer .form-row {
    flex-direction: column;
  }

  .footer .form-group {
    margin-bottom: 1.2rem;
  }

  .footer .form-group.col-md-6 {
    width: 100%;
  }

  .btn-cnt {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }

  .contact-info {
    margin-top: 2.5rem;
  }
}


/*-----------------About Developer Section-----------------*/
.about-developer-section {
  padding: 40px 20px;
  background: #f7f5ee;
  text-align: center;
  color: #333;
  border-top: 1px solid #ffca06;
}

.developer-logo img {
  max-width: 180px;
  margin-bottom: 25px;
}

.about-developer-section h2 {
  font-size: 30px;
  color: #262f46;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1.1px;
  border-bottom: 3px solid #ffca06;
  display: inline-block;
  padding-bottom: 8px;
}

.developer-description {
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
  color: #4a4a4a;
}

@media (max-width: 768px) {
  .about-developer-section {
    padding: 20px 15px;
  }

  .about-developer-section h2 {
    font-size: 24px;
  }

  .developer-description {
    font-size: 15px;
  }

  .developer-logo img {
    max-width: 140px;
    margin-bottom: 15px;
  }
}

/*---------------Footer Section---------------------*/
.rera-sec {
  padding: 30px 0px;
  background: #131825;
  color: #fff;
  background-size: contain;
  background-attachment: initial;
  background-position: initial;
  background-repeat: no-repeat;
 }
 
 .rera-sec img {
  width: 80px;
  margin-bottom: 10px;
  margin: 10px auto;
  text-align: center;
  display: block;
 }
 
 .footer-text {
  color: #fff;
  font-weight: 400;
 }
 
 .footer-text a{
   color: #dfb83f;
   font-weight: 600;
 }
 
 .foote-wrap p {
  text-align: center;
  margin-top: 7px;
  color: #fff;
  font-weight: 400;
 }
 
 .disclpara{
  padding: 10px;
 }
 
 .privacy-policy-link{
   color: #dfb83f;
 }
 
 .privacy-policy-link:hover{
  color: #fff;
  text-decoration: underline;
 }
 
 @media(max-width: 768px){
  .rera-sec{
    margin-bottom: 40px;
  }
  
  .footer-text {
    font-size: 12px;
  }

  .disclpara {
    font-size: 12px;
  }

 }
 

/*---------------whatsapp, phone section---------------*/
#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; 
}
  
@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: #4a5165;
  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 (max-width: 991px) {
  .mobile-view {
    display: block;
  } 
}