* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  color: #333;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 400; /* Default weight */

}

@font-face {
    font-family: 'Jost';
    src: url('https://www.k-raheja-corp.com/font/Jost-Italic-VariableFont_wght.ttf') format('truetype'),
         url('https://www.k-raheja-corp.com/font/Jost-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}



.mainWrapper {
  display: flex;
}

.content {
  display: flex;
  flex-direction: column;
  width: 80%;
}

/* ================= OVERLAY ================= */
#navOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 900;
}

#navOverlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ================= NAVBAR ================= */
.top-nav {
position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  height: 80px;
}

.brand-logo {
  height: 75px;
}

/* Menu Desktop */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 22px;
  align-items: center;
  margin-right: 30px;
}

/* Nav Items */
.nav-item {
  cursor: pointer;
  position: relative;
  padding-bottom: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #222;
  transition: 0.3s ease;
}

.nav-item i {
  margin-right: 4px;
}

/* ACTIVE UNDERLINE */
.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background: #004d3c;
}

.nav-item:hover {
  color: #004d3c;
}

/* Hide close button (only for mobile) */
.menu-close {
  display: none;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 30px;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #003f32;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Transform to X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

/* ================= MOBILE MENU ================= */
@media (max-width: 850px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    right: -100%;
    top: 0;
    width: 260px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 20px 30px;
    gap: 22px;
    transition: 0.4s ease;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
    z-index: 99999;
  }

  .nav-menu.open {
    right: 0;
  }

  /* Close button inside mobile menu */
  .menu-close {
    display: block;
    align-self: flex-end;
    font-size: 1.7rem;
    margin-bottom: 10px;
    cursor: pointer;
    color: #003f32;
  }

  .nav-item {
    font-size: 1.1rem;
  }
}

.sidebar-right {
  width: 20rem;
  flex-shrink: 0;
  position: sticky;
  top: 6rem;
  align-self: start;
  height: fit-content;
}

.carousel {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  height: 90vh;
  width: 100%;
}
.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel-slide.active {
  opacity: 1;
}
.carousel button.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.25rem;
  padding: 5px;
  transition: background 0.3s;
  cursor: pointer;
}
.carousel button.nav:hover {
  background: rgba(0, 0, 0, 0.7);
}
.carousel button.prev {
  left: 1rem;
}
.carousel button.next {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  cursor: pointer;
}
.dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}
.dot.active {
  background: white;
  width: 24px;
  border-radius: 8px;
}

/* carousel cards  */

.carouselCard {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 1.5rem 1.25rem;
  width: 360px;
  color: #222;
  position: absolute;
  top: 12%;
  left: 20px;
  border: 2px solid #004d3c;
  box-shadow: 3px 3px 7px #004d3c;
}

.badge {
  display: inline-block;
  background: #004d3c;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 0.25rem;
}

.location {
  font-size: 1rem;
  color: #444;
}

.developer {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.possession {
  background: #f2f2f2;
  border-radius: 6px;
  padding: 8px;
  margin: 1rem 0;
  font-weight: 500;
  color: #333;
}
.possession span {
  font-weight: 700;
}

.highlights {
  background: #004d3c;
  color: #fff;
  border-radius: 6px;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.highlights p {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
  padding: 4px 0;
}
.highlights p:last-child {
  border-bottom: none;
}

.pricing {
  margin: 1rem 0;
}
.pricing p {
  color: #222;
  font-size: 0.95rem;
}
.pricing h3 {
  color: #004d3c;
  font-size: 1.6rem;
  margin: 0.25rem 0 0;
}
.pricing h3 span {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.enquire-btn {
  background: #004d3c;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.enquire-btn:hover {
  background: #006852;
}

.rera {
  font-size: 0.8rem;
  color: #444;
  margin-top: 1rem;
  line-height: 1.4;
}

@media (max-width: 850px) {
  .content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .carousel {
    height: 50vh;
  }
  .carouselCard {
    position: relative;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    left: 50%;             
    transform: translateX(-50%);  
    top: 2%;
  }
}

/* about section  */

.about-section {
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 420px;
  min-width: 300px;
}

.about-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.underline {
  width: 60px;
  height: 3px;
  background: #ccc;
  margin-bottom: 1rem;
}

.about-text p {
  color: #444;
  margin-bottom: 0.75rem;
}

.read-more {
  display: inline-block;
  color: #0077cc;
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.read-more:hover {
  text-decoration: underline;
}

/* Brochure button */
.brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.8rem 1.6rem;
  background: #004d3c;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: background 0.3s, transform 0.2s;
}

.brochure-btn:hover {
  background: #006852;
  transform: translateY(-2px);
}

.icon {
  font-size: 1.2rem;
}

.about-image {
  position: relative;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 0 2rem;
  box-shadow: 6px 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;border: 1px solid #cda549;
}

.about-image .caption {
  position: absolute;
  bottom: 10px;
  right: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    order: 1;
    flex: 0;
  }

  .about-image {
    order: 2;
  }

  .about-image img {
    max-width: 99%;
    margin: 0 auto;
  }
}
/* highlights section  */

.highlights-section {
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
}

.highlights-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

/* Left image */
.highlight-image {
  min-width: 300px;
  position: relative;
}

.highlight-image img {
  width: 100%;
  border-radius: 2rem 0;
  box-shadow: 6px 8px 20px rgba(0, 0, 0, 0.12);
  object-fit: cover;border: 1px solid #cda549;
}

.highlight-image .caption {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Right text content */
.highlight-text {
  flex: 1 1 480px;
  min-width: 300px;
}

.highlight-text h2 {
  font-size: 1.6rem;
  color: #003f32;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.underline {
  width: 60px;
  height: 3px;
  background: #ccc;
  margin-bottom: 1.5rem;
}

/* Highlight box */
.highlight-box {
  background: #f4f5f5;
  border-radius: 6px;
  padding: 1.5rem 1.2rem;
}

.highlight-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  height: 30vh;
}

.highlight-box li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #333;
}

.highlight-box li:last-child {
  margin-bottom: 0;
}

/* Check icon */
.check {
  color: #004d3c;
  background: #e6f4f0;
  border-radius: 6px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-right: 0.6rem;
}

/* Responsive layout */
@media (max-width: 850px) {
  .highlights-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .highlight-image img {
    max-width: 99%;
  }

  .highlight-text {
    order: 2;
    flex: 0;
  }

  .highlight-image {
    order: 1;
  }

  .highlight-box {
    text-align: left;
    margin: 0 auto;
    max-width: 500px;
  }
}

/* pricing carousel section  */
.related-pricing-section {
  width: 100%;
  text-align: center;
  padding: 3rem 1rem;
}

.related-pricing-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #003f32;
}
.related-pricing-underline {
  width: 60px;
  height: 3px;
  background: #ccc;
  margin: 12px auto 28px;
  border-radius: 2px;
}

/* ===== Carousel ===== */
.related-pricing-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.related-pricing-carousel {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s ease-in-out;
  flex-wrap: nowrap;
  width: 100%;
  will-change: transform;
}

.related-pricing-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem 1.2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
}

.related-pricing-card:hover {
  transform: translateY(-5px);
}

.related-pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.related-pricing-area {
  color: #444;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.related-pricing-price {
  color: #004d3c;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}
.related-pricing-btn {
  background: #004d3c;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.related-pricing-btn:hover {
  background: #006852;
}

/* ===== Navigation Arrows ===== */
.related-pricing-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.related-pricing-nav:hover {
  background: #004d3c;
  color: #fff;
}
.related-pricing-prev {
  left: 8px;
}
.related-pricing-next {
  right: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .related-pricing-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}
@media (max-width: 600px) {
  .related-pricing-card {
    flex: 0 0 100%;
  }
  .related-pricing-nav {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.9);
  }
}

/* floor plan  */

.responsive-gallery {
  position: relative;
  max-width: 1400px;
  margin: auto;
  text-align: center;
  padding: 20px;
  margin-bottom: 50px;
}

/* Heading */
.gallery-heading {
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: bold;
  font-weight: 700;
}

/* Gallery Wrapper */
.gallery-wrapper {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px;
  justify-content: space-evenly;
}

.gallery-item {
  flex: 0 0 24%; /* PC: Show 4 images in one row */
  height: 350px;
  border-radius: 50px 0;
  border: 2px solid black;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modal Styles */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.gallery-modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Arrows */
.gallery-arrow {
  display: none;
  position: absolute;
  top: 58%;
  transform: translateY(-50%);

  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;

  width: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.gallery-arrow-left {
  left: 10px;
}

.gallery-arrow-right {
  right: 10px;
}
.plan-layout-btn {
  margin-top: 1rem;
  background: #004d3c;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.plan-layout-btn:hover {
  background: #006852;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .gallery-item {
    flex: 0 0 95%; /* Show one image and hint of the next */
  }

  .gallery-arrow {
    display: flex; /* Show arrows only on mobile */
  }
}

@media (max-width: 767px) {
  .gallery-wrapper {
    justify-content: unset;
    flex-direction: column;
  }
}

.blur-image {
  filter: blur(8px);
  transition: filter 0.3s ease;
  cursor: pointer;
}

.gallery-wrapper.unblurred .blur-image {
  filter: none;
}


/* Always keep siteplan images blurred, no matter what other JS/CSS does */
#siteplan .blur-image {
  filter: blur(8px) !important;
}

/* Even if some script adds .unblurred, keep them blurred here */
#siteplan .gallery-wrapper.unblurred .blur-image {
  filter: blur(8px) !important;
}

/* Optional: don't remove blur on hover for this section */
#siteplan .blur-image:hover {
  filter: blur(8px) !important;
}



#project-feature-image {
  margin: auto;
  max-width: 1000px;
  max-height: 100%;
}

.blurred-price {
  filter: blur(6px);
  pointer-events: none;
}

.unblurred-price {
  filter: none !important;
  pointer-events: auto;
}

.price-blur-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#config-price-table {
  position: relative;
}

.price-unblur-btn {
  padding: 12px 24px;
  background-color: #004d3c;
  color: #272566;
  border: none;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
  width: auto;
}

@media (max-width: 768px) {
  .highlight-item {
    flex: 0 0 90%;
  }

  .nonewala {
    display: none;
  }
}

.popup-overlay {
  display: none; /* Ensures the popup is hidden initially */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 400px;
  position: relative;
  box-shadow: 3px 3px 7px #004d3c;
  text-align: center;
}

.popup-content h2 {
  color: #004d3c;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: "Jost", sans-serif;
  padding: 0;
}

.popup-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-content form label {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: #333;
}

.popup-content form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Jost", sans-serif;
}

.popup-content form button {
  background-color: #004d3c;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  margin-top: 15px;
}

.popup-content form button:hover {
  background-color: #022c23;
}

.close-popup {
  position: absolute;
  top: 1px;
  right: 20px;
  cursor: pointer;
  font-size: 32px;
  color: #333;
  font-weight: bold;
}

/* Media Query for Mobile (768px and below) */
@media (max-width: 768px) {
  #download-brochure-li {
    height: 50px; /* Set height to 50px for mobile */
    display: flex; /* Ensures proper alignment if needed */
    align-items: center; /* Vertically center the content inside */
    align-self: center;
  }

  .popup-content {
    width: 90%;
  }

  #download-brochure-btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  #download-brochure-container {
    margin-right: 0px;
    margin-left: 20px;
  }

  .features-list {
    grid-template-columns: none;
  }

  .all-para {
    max-width: 95% !important;
  }
}

/* =======Amenities Section ======== */

.amenities-section {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff;
}

.amenities-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003f32;
}

.amenities-underline {
  width: 60px;
  height: 3px;
  background: #ccc;
  margin: 10px auto 30px;
  border-radius: 2px;
}

.amenities-carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
}

.amenities-carousel {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s ease-in-out;
}

/* Each column (with 2 images stacked vertically) */
.amenity-column {
  flex: 0 0 calc((100% - 3rem) / 3);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.amenity-card {
  border-radius: 20px 0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
}

.amenity-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px 0;
}

.amenity-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenity-image-wrapper:hover img {
  transform: scale(1.05);
}

.artistic-caption {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
}

.amenity-label {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 0 20px 20px 0;
  position: absolute;
  bottom: 14px;
  left: 0;
}

/* Navigation Buttons */
.amenities-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ccc;
  color: #333;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.amenities-nav:hover {
  background: #004d3c;
  color: #fff;
}

.amenities-nav.prev {
  left: 5px;
}

.amenities-nav.next {
  right: 5px;
}

/* Responsive */
@media (max-width: 900px) {
  .amenity-column {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 600px) {
  .amenity-column {
    flex: 0 0 100%;
  }
  .amenities-nav {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.8);
  }
}

/* Project Gallery Section */

.project-gallery-section {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff;
}

.project-gallery-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003f32;
  text-transform: capitalize;
}

.project-gallery-underline {
  width: 60px;
  height: 3px;
  background: #ccc;
  margin: 10px auto 30px;
  border-radius: 2px;
}

.project-gallery-carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
}

.project-gallery-carousel {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s ease-in-out;
}

.project-gallery-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  border-radius: 20px 0;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  background: #fff;
  position: relative;
}

.project-gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-gallery-card:hover img {
  transform: scale(1.05);
}

.project-gallery-caption {
  position: absolute;
  bottom: 8px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
}

/* ===== Navigation Buttons ===== */
.project-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ccc;
  color: #333;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.project-gallery-nav:hover {
  background: #004d3c;
  color: #fff;
}

.project-gallery-nav.prev {
  left: 5px;
}

.project-gallery-nav.next {
  right: 5px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .project-gallery-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 600px) {
  .project-gallery-card {
    flex: 0 0 100%;
  }

  .project-gallery-nav {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.8);
  }
}

/* location section  */

/* ===== Section ===== */
.location-section {
  text-align: center;
  padding: 3rem 1rem;
}

.location-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003f32;
}

.location-underline {
  width: 60px;
  height: 3px;
  background: #ccc;
  margin: 10px auto 30px;
  border-radius: 2px;
}

/* ===== Container ===== */
.location-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.map-card {
  flex: 1 1 46%;
  position: relative;
  border-radius: 50px 0;
  overflow: hidden;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.map-card:hover {
  transform: translateY(-3px);
}

.map-card iframe,
.map-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: none;
}

/* ===== Overlay on Image ===== */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: #ccc;
}

/* ===== Responsive ===== */
@media (max-width: 850px) {
  .map-card {
    flex: 1 1 100%;
  }
}

/* connectivity section */

/* ===== Connectivity Section ===== */
.connectivity-section {
  padding: 3rem 1rem;
  text-align: center;
  background: #fff;
}

.connectivity-container {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: left;
  background: #fff;
  overflow: hidden;
  position: relative;
}

/* Header Tab */
.connectivity-header {
  background: #fff;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #ddd;
  display: inline-block;
  position: relative;
  top: -1px;
  left: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #004d3c;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* List Styling */
.connectivity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  padding: 1.8rem 2rem;
  list-style: none;
}

.connectivity-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
  color: #222;
}

.connectivity-list li i {
  color: #004d3c;
  margin-top: 2px;
}

/* Button */
.connectivity-btn {
  margin-top: 2rem;
  background: #004d3c;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.2s ease;
}

.connectivity-btn:hover {
  background: #006852;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .connectivity-list {
    grid-template-columns: 1fr;
  }
  .connectivity-container {
    padding-bottom: 1rem;
  }
}

/* form section  */

.site-visit-section {
  padding: 3rem 1rem;
  text-align: center;
  background: #f6f7f7;
}

.site-visit-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003f32;
}

.site-visit-underline {
  width: 60px;
  height: 3px;
  background: #ccc;
  margin: 10px auto 30px;
  border-radius: 2px;
}

/* ===== Container ===== */
.site-visit-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* ===== Left Image ===== */
.site-visit-image {
  flex: 1 1 45%;
  border-radius: 50px 0;
  overflow: hidden;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.site-visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Right Form ===== */
.site-visit-form {
  flex: 1 1 45%;
  text-align: left;
}

.site-visit-form input[type="text"],
.site-visit-form input[type="tel"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 1rem;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}

.site-visit-form input:focus {
  border-color: #004d3c;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.checkbox-wrapper input {
  margin-top: 4px;
}

.checkbox-wrapper label {
  font-size: 0.8rem;
  color: #444;
  line-height: 1.4;
}

.checkbox-wrapper a {
  color: #004d3c;
  text-decoration: none;
  font-weight: 500;
}

.checkbox-wrapper a:hover {
  text-decoration: underline;
}

.submit-btn {
  background: #004d3c;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #006852;
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 850px) {
  .site-visit-container {
    flex-direction: column;
    text-align: center;
  }

  .site-visit-form {
    width: 100%;
    text-align: center;
  }

  .site-visit-form input[type="text"],
  .site-visit-form input[type="tel"] {
    width: 90%;
  }

  .checkbox-wrapper {
    justify-content: center;
    text-align: left;
    width: 90%;
    margin: 0 auto 1.5rem;
  }

  .submit-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

/* ===== Footer Section ===== */
.footer-section {
  text-align: center;
  padding: 2rem 1.5rem 1rem;
  background: #fff;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}

/* ===== Logos ===== */
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-logos img {
  height: 60px;
  object-fit: contain;
}

/* ===== QR Section ===== */
.footer-qr {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-qr img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

/* ===== RERA Details ===== */
.rera-info {
  margin: 1rem auto 1.5rem;
  color: #000;
  font-weight: 500;
  line-height: 1.8;
}

.rera-info a {
  color: #004d3c;
  text-decoration: none;
}

.rera-info a:hover {
  text-decoration: underline;
}

/* ===== Disclaimer ===== */
.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  text-align: justify;
  color: #555;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ===== Policy Links ===== */
.footer-links {
  text-align: center;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #004d3c;
  text-decoration: none;
  margin: 0 5px;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ===== Copyright ===== */
.footer-bottom {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-qr {
    flex-direction: column;
  }

  .footer-logos {
    flex-direction: column;
  }

  .footer-disclaimer {
    text-align: left;
    font-size: 0.8rem;
  }
}

/* ==== TOPBAR ==== */
.rightside-form {
  width: 20%;
  height: 100vh;
  position: sticky;
  top: 0;
  background: #abffec;
}
.topbar {
  background: #003524;
  color: #fff;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}
.topbar span {
  cursor: pointer;
  font-size: 13px;
}
.topbar a {
  color: #fff;
  text-decoration: none;font-size: 13px;
}

/* ==== Call Back Button ==== */
.callback-wrapper {
  margin: 20px auto;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.callback-btn {
  background: #004d3c;
  color: #fff;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 40px;
  border: none;
  width: 75%;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
  font-weight: bold;
}

.whatsapp-icon {
  background: #25d366;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
}

/* ==== Enquiry Section ==== */
.enquiry-section {
  width: 90%;
  margin: auto;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  
}

.enquiry-title {
  margin-top: 10px;
  margin-bottom: 4px;
  color: #003f32;
  font-size: 1.4rem;
  font-weight: 700;
}

.enquiry-underline {
  width: 60px;
  height: 3px;
  background: #ccc;
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* Inputs */
.enquiry-input,
.phone-input {
  width: 100%;
  padding: 14px;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
  outline: none;
}

.phone-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  
  
  border-radius: 10px;
}

.flag {
  font-size: 1.3rem;
}

.phone-input {
  border: none;
  flex: 1;
}

/* Checkbox */
.checkbox-row {
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  text-align: left;
  margin-top: 10px;
}

.checkbox-row a {
  color: #0077cc;
}

/* Submit Btn */
.submit-btn {
  background: #004d3c;
  color: #fff;
  width: 60%;
  border: none;
  padding: 12px 18px;
  margin-top: 16px;
  border-radius: 40px;
  font-size: 1.2rem;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

/* Pickup Drop Image */
.pickup-wrapper {
  width: 100%;
  margin: 30px auto;
  text-align: center;
}

.pickup-wrapper img {
  width: 90%;
  border-radius: 15px;
}

@media (max-width: 850px) {
  .rightside-form {
    display: none;
    background: #000;
  }
}



/* ============================
   STICKY BUTTONS (DESKTOP RIGHT SIDE)
   ============================ */

.sticky-buttons-custom {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.button-custom {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-left: 7px;
}

.whatsapp-button {
    background-color: #25D366;
}

.email-button {
    background-color: #3B3B98;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    gap: 10px;
}

.email-icon {
    width: 20px;
    height: 20px;
}

.email-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}

/* Circular Call Button */
.circular-call-button {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}

.circular-call-icon {
    width: 25px;
    height: 25px;
}

.circular-call-button:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 3px solid transparent;
    border-top: 3px solid #003524;
    border-right: 3px solid #003524;
    border-radius: 50%;
    animation: revolveBorderCircular 1.5s linear infinite;
}

@keyframes revolveBorderCircular {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide sticky-right on mobile */
@media (max-width: 768px) {
    .sticky-buttons-custom {
        display: none !important;
    }
}

/* ============================
   MOBILE STICKY BOTTOM BUTTONS
   ============================ */

/* Hidden by default (desktop view) */
.sticky-bottom {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #cda549;
    justify-content: space-between;
    padding: 10px;
    z-index: 1005;
}

.sticky-bottom .button {
    flex: 1;
    margin: 0 10px;
    padding: 5px;
    text-align: center;
    background-color: #cda549;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    color: black;
}

.sticky-bottom .button:hover {
    background-color: white;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 768px) {
    .sticky-bottom {
        display: flex !important;
    }
}

/* ============================
   LEFT FLOATING BUTTON
   ============================ */

.sticky-left-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background-color: #003524;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-left-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* Hide left button on small screens */
@media (max-width: 768px) {
    .sticky-left-button {
        display: none;
    }
}


.loading-spinner {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
}

.spinner-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-top-color: transparent;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
