@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
* {
  font-family: "League Spartan", 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.4rem 0.4rem !important; 
    text-align: center;
  }
}
  
.navbar-toggler{
  color: #000 !important;
  font-size: 1.3rem;
}
      
.navbar-nav {
  margin-left: auto;
}
    
.nav-link{
  font-size: 18px;
  color: #000;
}
  
.nav-link:hover{
  color: #6b4e2e;
}

/*---------------------Popup Form Code-------------------*/
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  overflow: auto;
  backdrop-filter: blur(6px);
}

.popup-content {
  background: linear-gradient(145deg, #fff, #f8f3eb);
  margin: 5% auto;
  padding: 35px 30px;
  border-radius: 15px;
  max-width: 450px;
  position: relative;
  border: 1px solid #e2c18b;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 8px rgba(210, 165, 98, 0.2);
  transition: all 0.4s ease;
}

.close-icon {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #a88955;
  transition: color 0.3s ease;
}

.close-icon:hover {
  color: #7d0808;
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: #4a3a1a;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
  position: relative;
}

.popup-content h2::after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #d2a562;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.popup-content .labelpara {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #555;
  text-align: center;
  line-height: 1.5;
}

.popup-content .form-group {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.input-group-prepend .input-group-text {
  background: linear-gradient(135deg, #f5d6a3, #e0b87c);
  border: none;
  border-radius: 6px 0 0 6px;
  padding: 12px;
  color: #4a3a1a;
  display: flex;
  align-items: center;
}

.input-group-text i {
  font-size: 1.1rem;
}

.popup-content input {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 0 6px 6px 0;
  box-sizing: border-box;
  font-size: 15px;
  background: transparent;
  outline: none;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.popup-content input:focus {
  box-shadow: 0 0 6px rgba(210, 165, 98, 0.7);
}

.submit-button {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #d2a562, #b4863b);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Cinzel", serif;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.submit-button:hover {
  background: linear-gradient(135deg, #e2b874, #c59947);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .popup-content {
    margin: 20px;
    padding: 25px 20px;
  }
}

@media (max-width: 450px) {
  .popup-content h2 {
    font-size: 12px;
    font-weight: 700;
  }

  .popup-content input {
    font-size: 14px;
  }

  .submit-button {
    font-size: 14px;
    font-weight: 800;
    padding: 8px 10px;
  }
}


/*------------------------Home Page Section-----------------------*/
#homeCarousel {
  height: 100vh;
  overflow: hidden;
}

.carousel-img {
  height: 100vh;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  animation: zoomEffect 10s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
  from { transform: scale(1.1); }
  to { transform: scale(1.2); }
}

.carousel-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  max-width: 600px;
}

.carousel-content h1 {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.carousel-content h1 span {
  color: #cb9f5d;
  font-size: 40px;
  font-weight: 600;
}

.carousel-content .location {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.carousel-content .details {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
}

.carousel-content .price {
  font-size: 25px;
  font-weight: 500;
  color: #000;
  margin-bottom: 25px;
  background-color: #dbb378;
  text-align: center;
  padding: 5px 6px;
  border-radius: 5px;
}

.carousel-content .price span {
  font-weight: 700;
  font-size: 35px;
  color: #7d0808;
}

.carousel-content .highlights {
  list-style: none;
  padding: 0;
}

.carousel-content .highlights li {
  font-size: 20px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 30px;
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: 1px;
}

.carousel-content .highlights li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #d2a562;
}

.animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-delay-1 { animation-delay: 0.4s; }
.fade-in-delay-2 { animation-delay: 0.8s; }
.fade-in-delay-3 { animation-delay: 1.2s; }
.fade-in-delay-4 { animation-delay: 1.6s; }
.fade-in-delay-5 { animation-delay: 2s; }

@media (max-width: 768px) {
  .carousel-content h1 { font-size: 38px; }
  .carousel-content .location { font-size: 18px; }
}

@media (max-width: 768px) {
  #homeCarousel {
    height: auto;
  }

  .carousel-overlay {
    display: none;
  }

  .carousel-img {
    height: 300px; 
    animation: none; 
  }

  .carousel-content {
    position: static;
    transform: none;
    max-width: 100%;
    background: #6b4e2e;
    padding: 20px 15px;
    text-align: center;
  }

  .carousel-content h1 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
  }

  .carousel-content h1 span {
    font-size: 22px;
  }

  .carousel-content .location {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 400;
  }

  .carousel-content .details {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .carousel-content .price {
    font-size: 14px;
    margin-bottom: 15px;
    padding: 8px 10px;
  }

  .carousel-content .price span {
    font-size: 20px;
  }

  .carousel-content .highlights li {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

.carousel-content .offer-box {
  border-top: 2px solid #d2a562;
  margin-top: 20px;
  padding-top: 15px;
}

.carousel-content .offer-box p {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
}

.carousel-content .offer-box span {
  color: #7d0808;
  background-color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .carousel-content .offer-box {
    background: #846a43;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
  }

  .carousel-content .offer-box p {
    font-size: 16px;
    font-weight: 600;
    margin: 4px 0;
    line-height: 1.4;
  }

  .carousel-content .offer-box span {
    padding: 2px 6px;
    font-size: 13px;
  }
}


/*----------------------Overview Section------------------------*/
.overview-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 40px;
  background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
  color: #222;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.overview-left,
.overview-right {
  flex: 1;
  max-width: 50%;
  position: relative;
}

.oversub-title {
  color: #c59d5f;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 25px;
  text-transform: uppercase;
  position: relative;
}

.oversub-title::after {
  content: "";
  width: 100px;
  height: 3px;
  background: #c59d5f;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

.overmain-title {
  color: #111;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  line-height: 1.1;
  text-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.overview-text {
  color: #444;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.overview-img img {
  width: 100%;
  border: 1px solid #b0720e;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.overview-img img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 3px;
  height: calc(100% - 20px);
  background: #c59d5f33;
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-3px);
}

.timeline-icon {
  flex-shrink: 0;
  width: 50px; 
  height: 50px;
  background: linear-gradient(135deg, #fceabb, #f8d76c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px; 
  color: #a87100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-right: 15px;
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: #fffaf2;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  flex: 1;
}

.timeline-content h4 {
  margin: 0 0 5px; 
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.timeline-content p {
  margin: 0;
  font-size: 16px; 
  color: #555;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .overview-section {
    flex-direction: column;
    padding: 30px 10px;
    gap: 20px;
  }

  .overview-left,
  .overview-right {
    max-width: 100%;
  }

  .overmain-title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .oversub-title {
    font-size: 20px;
  }

  .overview-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .timeline {
    padding-left: 0;
    margin-top: 20px;
  }

  .timeline::before {
    display: none; 
  }

  .timeline-item {
    flex-direction: row;
    margin-bottom: 15px;
    align-items: flex-start;
  }

  .timeline-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
    margin-right: 12px;
  }

  .timeline-content {
    padding: 12px 15px;
    border-radius: 8px;
  }

  .timeline-content h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .timeline-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .overview-img img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
  }
}

/*---------------------Amenities Section---------------------*/
.amenities-section {
  text-align: center;
  padding: 60px 0;
  background-color: #f6f6f6;
}

.amenities-section h5 {
  color: #c59d5f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.amenities-section h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  font-family: "Cinzel", serif;
}

.amenities-section h2::after {
  content: "";
  display: block;
  width: 20%;
  height: 3px;
  background: #c59d5f;
  margin: 10px auto 0;
  border-radius: 2px;
}

.amenity-box {
  border: 1px solid rgba(184,138,68,0.4);
  background: #111;
  padding: 35px 20px;
  transition: all 0.4s ease;
  border-radius: 8px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(184,138,68,0.15);
}

.amenity-box img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.amenity-box p {
  font-size: 18px;
  text-align: center;
  margin: 0;
  line-height: 1.4;
  color: #c59d5f;
}

.amenity-arrows {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 35px;
  position: relative;
  z-index: 5;
}

.amenity-arrow {
  width: 55px;
  height: 55px;
  border: 1px solid #b88a44;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(184,138,68,0.2);
}

.amenity-arrow:hover {
  background: #b88a44;
  color: #000;
  text-decoration: none;
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .amenity-box {
    padding: 20px 10px;
    margin-bottom: 20px;
    min-height: 100px;
  }

  .amenity-box img {
    max-height: 50px;
    margin-bottom: 10px;
  }

  .amenity-box p {
    font-size: 14px;
  }

  .amenity-arrows {
    margin-top: 20px;
  }

  .amenity-arrow {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .amenities-section h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .amenity-box {
    padding: 15px 8px;
    min-height: 100px;
  }

  .amenity-box img {
    max-height: 40px;
  }

  .amenity-box p {
    font-size: 13px;
  }

  .amenity-arrows {
    gap: 10px;
    margin-top: 15px;
  }

  .amenity-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

}

/*------------------Project Gallery Section------------------------*/
.project-gallery {
  background: #f6efe6;
  padding: 60px 20px;
  font-family: "Cinzel", serif;
  text-align: center;
}

.gallery-title {
  font-size: 36px;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border: 1px solid #c09a62;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  box-shadow: 0 15px 30px rgba(255,255,255,0.2);
}

.gallery-item.large:nth-child(1) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item.large:nth-child(6) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item:nth-child(3) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item:nth-child(5) {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 992px) {
  .project-gallery {
    padding: 30px 10px;
  }

  .gallery-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 576px) {
  .project-gallery {
    padding: 30px 10px;
  }

  .gallery-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/*------------------Academies Points Section--------------------*/
.celebrity-academy-showcase {
  padding: 50px 20px;
  background: linear-gradient(135deg, #fff6ec, #ffffff);
}

.showcase-title {
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 35px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.showcase-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #c59d5f;
  display: block;
  margin: 15px auto 0;
  border-radius: 4px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.academy-card {
  background: linear-gradient(145deg, #ffffff, #f7efe2);
  border-radius: 20px;
  border: 1px solid #c09a62;
  padding: 30px 20px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.academy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.academy-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197,157,95,0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.academy-card:hover::before {
  transform: scale(1);
}

.academy-logo {
  height: 80px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.academy-logo img {
  max-height: 80px;
  max-width: 120px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.academy-card:hover .academy-logo img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.academy-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.academy-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .showcase-title {
    font-size: 30px;
  }

  .academy-logo img {
    max-height: 60px;
  }
}

@media (max-width: 768px) {
  .celebrity-academy-showcase {
    padding: 30px 15px;
  }

  .showcase-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .academy-card {
    padding: 15px 10px;
  }

  .academy-card h3 {
    font-size: 16px;
  }

  .academy-card p {
    font-size: 13px;
  }

  .showcase-grid {
    gap: 20px;
  }

}


/*---------------------Configuration Section-------------------*/
.config-section {
  background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
  padding: 60px 20px;
}

.config-head {
  font-size: 36px;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  font-weight: 600;
  color: #111;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.config-card {
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  padding: 40px 20px;
  border: 1px solid rgba(107, 78, 46, 0.15);
}

.config-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ribbon {
  position: absolute;
  top: 10px;
  right: -25px;
  background: linear-gradient(45deg, #6b4e2e, #c59d5f);
  color: #fff;
  padding: 6px 28px;
  font-weight: 700;
  font-size: 14px;
  transform: rotate(45deg);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.config-type {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin: 20px 0 10px;
}

.config-area {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 15px;
}

.btn-config {
  background-color: #c59d5f;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-config:hover {
  background-color: #6b4e2e;
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .config-section {
    padding: 50px 30px;
  }
  .config-head {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .config-card {
    padding: 35px 20px;
  }
  .ribbon {
    font-size: 13px;
    right: -20px;
    top: 8px;
  }
}

@media (max-width: 768px) {
  .config-section {
    padding: 30px 10px;
  }
  .config-head {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .config-type {
    font-size: 1.4rem;
  }
  .config-area {
    font-size: 1rem;
  }
  .btn-config {
    font-size: 15px;
    padding: 8px 22px;
  }
}

@media (max-width: 576px) {
  .config-section {
    padding: 30px 5px;
  }
  .config-head {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .config-card {
    padding: 30px 15px;
    margin: 0 10px;
  }
  .ribbon {
    font-size: 11px;
    right: -18px;
    top: 6px;
    padding: 5px 20px;
  }
  .config-type {
    font-size: 1.2rem;
  }
  .config-area {
    font-size: 0.95rem;
  }
  .btn-config {
    font-size: 14px;
    padding: 7px 18px;
  }
}

/*-------------------Unit Plans Section-------------------*/
.unitplans-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
}

.unitplans-head {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  font-family: "Cinzel", serif;
  color: #111;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.unitplans-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.unit-box {
  width: 30%;
  text-align: center;
  transition: all 0.4s ease;
}

.unit-img {
  overflow: hidden;
  border-radius: 20px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 5px 20px rgba(107, 78, 46, 0.15);
  border: 1px solid #6b4e2e;
}

.unit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  filter: blur(1.5px) brightness(0.9);
  transition: all 0.5s ease;
}

.unit-details {
  margin-top: 20px;
}

.unit-details h5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6b4e2e;
  text-transform: uppercase;
}

.underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #c59d5f, #6b4e2e);
  margin: 10px auto 18px;
  border-radius: 5px;
}

.btn-unit {
  background: linear-gradient(45deg, #c59d5f, #6b4e2e);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-unit:hover {
  background: linear-gradient(45deg, #6b4e2e, #c59d5f);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .unit-box {
    width: 45%;
  }
  .unit-img {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .unit-box {
    width: 100%;
  }
  .unit-img {
    height: 220px;
  }
  .unit-details h5 {
    font-size: 1.2rem;
  }
  .btn-unit {
    font-size: 14px;
    padding: 8px 18px;
  }
}

@media(max-width: 768px){
  .unitplans-section {
    padding: 30px 5px;
  }

  .unitplans-head {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .unitplans-wrapper {
    gap: 20px;
  }

}


/*----------------------Location Section-------------------------*/
.location-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
}

.location-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #9b7740;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.location-map {
  flex: 1.2;
  min-width: 400px;
}

.location-info {
  flex: 1;
  display: flex;
  gap: 30px;
  align-items: center;
}

.location-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-right: 2px solid rgba(112, 84, 38, 0.8);
  flex-shrink: 0;
  width: 220px;
}

.location-tabs li {
  padding: 14px 10px;
  font-size: 18px;
  letter-spacing: 0.7px;
  font-weight: 600;
  cursor: pointer;
  color: #111;
  position: relative;
  transition: all 0.3s;
  border-bottom: 2px solid rgba(112, 84, 38, 0.8);
}

.location-tabs li.active {
  color: #6b4e2e;
}

.location-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.tab-content {
  display: none;
  text-align: left;
}

.tab-content.active {
  display: block;
}

.tab-content ul {
  list-style: disc;
  padding-left: 10px;
  margin: 0;
}

.tab-content li {
  margin-bottom: 8px;
  color: #000;
  font-size: 18px;
}

@media (max-width: 992px) {
  .location-container {
    flex-direction: column;
    gap: 20px; 
  }

  .location-map {
    min-width: auto; 
    width: 100%;
  }

  .location-info {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .location-tabs {
    display: flex;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .location-tabs li {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .location-content {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  
}

@media (max-width: 576px) {
  .location-section {
    padding: 30px 10px;
  }

  .location-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .location-tabs li {
    font-size: 14px;
    padding: 10px 8px;
  }

  .tab-content li {
    font-size: 14px;
  }

  .location-map iframe {
    height: 300px;
  }
}

/*---------------------Contact Section------------------*/
.contact-us {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  font-family: "Cinzel", serif;
  background: url('images/gera3.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); 
  z-index: 1;
}

.contact-wrapper {
  display: flex;
  width: 100%;
  z-index: 2;
  position: relative;
}

.contact-left {
  flex: 1;
  background: url('images/overview-gera.png') no-repeat center center;
  background-size: cover;
  padding: 60px 40px;
}

.contact-right {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-subtitle {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #c59d5f;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  width: 100%;
  background: #98794a;
  color: #fff;
  padding: 10px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #8e6932;
}

.site-address {
  margin-top: 30px;
  font-size: 20px;
  color: #FFF;
  line-height: 1.6;
}

.site-address h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #c59d5f;
}

.cntphone {
  margin-top: 10px;
  color: #FFF;
  font-size: 20px;
}

@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-left {
    height: 300px;
    min-height: 200px;
    background-position: center;
    padding: 0;
  }

  .contact-right {
    padding: 30px 20px;
    text-align: center;
  }

  .contact-subtitle {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .contact-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .contact-form input {
    font-size: 14px;
    padding: 12px;
  }

  .contact-form button {
    font-size: 14px;
    padding: 12px;
  }

  .site-address {
    margin-top: 25px;
    font-size: 14px;
  }

  .site-address h3 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .contact-us {
    background-position: center;
    background-size: cover;
    padding: 0;
  }

  .contact-left {
    height: 280px;
    min-height: 200px;
  }

  .contact-right {
    padding: 20px 15px;
  }

  .contact-subtitle {
    font-size: 14px;
  }

  .contact-title {
    font-size: 22px;
  }

  .contact-form input,
  .contact-form button {
    font-size: 13px;
    padding: 10px;
  }

  .site-address {
    font-size: 13px;
    margin-top: 20px;
  }

  .site-address h3 {
    font-size: 15px;
  }
}


/*-------------------Footer Section--------------------*/
.project-footer {
  background: #393025; 
  padding: 30px 20px;
  color: #fff; 
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.rera-info {
  display: flex;
  align-items: center;
  text-align: left;
}

.rera-img {
  width: 80px;
  height: auto;
  margin-right: 15px;
}

.rera-details p {
  margin: 4px 0;
  font-size: 16px;
  color: #ddd;
}

.rera-details a {
  color: #c59d5f; 
  text-decoration: none;
  font-weight: 600;
}

.rera-details a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
}

.disclaimer {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.6;
}

.privacy {
  font-size: 16px;
  color: #c59d5f;
  text-decoration: none;
  font-weight: 600;
}

.privacy:hover {
  text-decoration: underline;
  color: #c59d5f;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .rera-info {
    flex-direction: column;
    align-items: center;
  }

  .rera-img {
    margin: 0 0 10px 0;
  }

  .rera-details p {
    font-size: 13px; 
  }

  .rera-details a {
    word-break: break-word; 
  }

  .footer-bottom {
    padding-top: 20px;
    margin-bottom: 40px;
  }

  .disclaimer {
    font-size: 13px;
    line-height: 1.5;
  }

  .privacy {
    font-size: 13px;
  }
}


/*-----------------------------------whatsapp and call-----------------------*/
#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: #917855;
  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;
  } 
}
  
  
 