*{
  font-family: "Montserrat", sans-serif;
}
/* --- HEADER --- */
#site-header {

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.068);
  backdrop-filter: blur(10px); 
  backface-visibility: unset;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 40px;
  font-family: "Montserrat", sans-serif;
  z-index: 900;
  box-sizing: border-box;
  cursor: pointer;
}

.header-container {

  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0;
}

.logo-image {

  display: block;
  width: 200px;
  height: auto;
}

#site-header nav {

  font-size: 16px;
  display: flex;
  gap: 16px;
}

#site-header nav a {

  cursor: pointer;
  font-weight: 900;
  
  color: #202020;
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

#site-header nav a.callnow {

  background-color: #e3b577;
  color: #fff;
  border-radius: 5px;
  padding: 8px 16px;
}

#site-header nav a:hover {

  color: #ae7f47;
  background-color: transparent;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
  display: inline-block;
  margin-top: 8px;
}

.dropdown-toggle {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  padding: 8px 12px;
}

.dropdown-toggle:hover {
  color: #000;
}

.arrow {
  margin-left: 5px;
  font-size: 0.7em;
  transition: transform 0.3s ease;
}

/* Optional: rotate arrow on hover */
.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  background-color: #fff;
  border: 1px solid #ddd;
  z-index: 10;
}

.dropdown-menu li {
  display: block;
}

#site-header nav .dropdown-menu li a {

  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  display: block;
  font-weight: 700;
  padding: 8px 12px;
  color: #333;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* === HOMEPAGE BANNER SECTION === */
#banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  margin-top: 10px;
}

#homepageCarousel {
  width: 100%;
  height: 105vh; /* adjust as needed */
}

#homepageCarousel .carousel-inner {
  width: 100%;
  height: 100%;
}

#homepageCarousel .carousel-item {
  height: 103vh;
  position: relative;
  transition: opacity 1s ease-in-out;
}

#homepageCarousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(90%); /* darkens image for better text contrast */
}

/* === CAPTION STYLES === */
#homepageCarousel .carousel-caption {
  position: absolute;
  bottom: 18%;
  left: 8%;
  text-align: left;
  color: #fff;
  z-index: 10;
}

#homepageCarousel .carousel-caption h5 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #e3b577;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

#homepageCarousel .carousel-caption p {
  font-size: 1.2rem;
  max-width: 600px;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

#homepageCarousel .carousel-caption .btn {
  padding: 12px 30px;
  font-size: 1rem;
  background-color: #ae7f47;
  border: none;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

#homepageCarousel .carousel-caption .btn:hover {
  background-color: #8d6937;
}

/* === CAROUSEL CONTROLS === */
#homepageCarousel .carousel-control-prev,
#homepageCarousel .carousel-control-next {
  width: 5%;
}

#homepageCarousel .carousel-control-prev-icon,
#homepageCarousel .carousel-control-next-icon {
  filter: invert(100%); /* make white arrows */
}

/* --- BUTTON NAVIGATION --- */
.button-nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 20px 0 50px 0;
}

.button-nav button {
  background: linear-gradient(205deg, #ae7f47, #e3b577);
  color: white;
  border: none;
  border-radius: 15px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1.75rem;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: inset 0 6px 15px rgba(243, 175, 40, 0.96);
  position: relative;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.button-nav button:hover {
  transform: scale(1.05);
  background-color: #ffd28f;
  box-shadow: inset 0 8px 20px rgba(252, 181, 17, 0.91);
}

.button-nav button span {
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff9e1;
  line-height: 1;
  margin-top: 2px;
}

/* --- PROJECTS --- */
#projects {
  max-width: 1300px;
  margin: 80px auto 60px;
  padding: 0 20px;
  text-align: center;
}

/* Heading Style */
.projects-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #ae7f47;
  line-height: 1.3;
}

/* Card Container */
.project-card {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.project-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.4s ease;
}

.projects-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.4s ease;
}

.project-image:hover .projects-image {
  transform: scale(1.05);
}

/* Text Overlay */
.location-text {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.9);
  pointer-events: none;
}

/* ===================== Enquiry Modal Styling ===================== */

/* Centered modal with shadow and rounded corners */
#enquiryModal .modal-dialog {
  max-width: 500px;       /* Limit width */
  margin: 1.75rem auto;   /* Bootstrap default top/bottom spacing */
  z-index: 10500;        /* Above other content */
}

#enquiryModal .modal-content {
  border-radius: 12px;    /* Rounded corners */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35); /* Smooth shadow */
  overflow: hidden;       /* Prevent overflow */
}

/* Modal header styling */
#enquiryModal .modal-header {
  background-color: #e3b577; 
  color: #fff;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Close button in header */
#enquiryModal .btn-close {
  filter: brightness(0.9);
  transition: filter 0.2s ease;
}

#enquiryModal .btn-close:hover {
  filter: brightness(1.2);
  cursor: pointer;
}

.modal-close-x {
  position: absolute;
  top: 1rem;     
  right: 1rem;   
  z-index: 1055; 
}

/* Modal body */
#enquiryModal .modal-body {
  padding: 1.5rem;
  background-color: #fff;
}

.modal-body h1 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  margin-right: 40px;
  margin-left: 40px;
  text-align: center;
  background-color: #ae7f47;
}

.btn-close {
  font-size: 1.3rem;
  cursor: pointer;
}

/* Form labels */
#enquiryModal label.form-label {
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: block;
}

/* Form controls */
#enquiryModal .form-control {
  border-radius: 6px;
  border: 1px solid #ced4da;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}

#enquiryModal .form-control:focus {
  border-color: #ae7f47;
  box-shadow: 0 0 0 0.2rem rgba(174,127,71,0.25);
  outline: none;
}

/* Modal footer */
#enquiryModal .modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #dee2e6;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  background-color: #f9f9f9;
}

/* Buttons */
#enquiryModal .btn-primary {
  background-color: #ae7f47;
  border-color: #ae7f47;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}

#enquiryModal .btn-primary:hover {
  background-color: #e3b577;
}

#enquiryModal .btn-secondary {
  background-color: #03a33ee6;
  border-color: #04a44c;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}

#enquiryModal .btn-secondary:hover {
  background-color: #029642c0;
}

#enquiry-timer {
  display: none;
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
  text-align: center;
}


.message-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10001;
    width: 350px;
}
.message-container .alert {
    pointer-events: all;
}

/* --- FOOTER --- */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #131313;
  padding: 15px 20px;
  text-align: center;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 25px;
  z-index: 9999;
}

/* Links styling */
footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ae7f47;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover effects for links */
footer a:hover {
  color: #f0c14b; /* Example hover color */
}

footer a:hover img {
  transform: scale(1.2);
}

  /* Floating WhatsApp Button */
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #e3b577;
    color: white;
    border: 2px groove rgba(240, 240, 240, 0.755);
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: inset 0 9px 10px rgba(253, 223, 147, 0.755);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10500;
  }

  .whatsapp-btn:hover {
    background-color: #ae7f47;
    transform: scale(1.05);
  }

  /* Optional: WhatsApp icon before text */
  .whatsapp-btn::before {
    content: "💬 ";
    font-size: 15px;
  }

  @media screen and (max-width: 480px) {
  .whatsapp-btn {
    padding: 10px 15px;
    font-size: 12px;
    border-radius: 40px;
    bottom: 15px;
    right: 15px;
    box-shadow: inset 0 6px 8px rgba(253, 223, 147, 0.6);
  }
  .whatsapp-btn::before {
    font-size: 12px;
  }
}


/* --- PROJECTS SECTION --- */
.listings-container {
  max-width: 1300px;
  margin: 120px auto 60px; /* offset for fixed header */
  padding: 0 20px;
  font-family: "Montserrat", sans-serif;
  color: #222;
}

.projects-heading,
#projects h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 50px;
  color: #ae7f47;
  scroll-margin-top: 100px;
}

.project-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}

.project-info-block {
  flex-grow: 1;
  min-width: 300px;
  margin: 0 30px;
}

.project-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
}

.project-description {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 20px;
}

.left-image .project-info-block {
  order: 1;
  text-align: left;
}

.right-image .project-info-block {
  order: 0;
  text-align: right;
}

.project-image-block {
  
  width: 450px;
  height: 400px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}

.project-image-block img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.project-image-block img:hover{
  transform: scale(1.05);
}

.left-image .project-image-block {
  order: 0;
}

.right-image .project-image-block {
  order: 1;
}

.left-project-stats {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  font-size: 1rem;
  color: #141414;
}

.left-project-stats li {
  max-width: 1200px;
  width: 100%;
  margin-bottom: 8px;
  width: 50%;
  border-bottom: 2px dashed #292929;
}

.right-project-stats {

  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  font-size: 1rem;
  color: #141414;
}

.right-project-stats li {

  display: flex;
  width: 50%;
  justify-content: flex-start;
  border-bottom: 2px dashed #292929;
  margin-bottom: 8px;
  margin-left: 375px;
}

.right-project-stats li::after,
.left-project-stats li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none; 
}

.right-project-stats li .stat-logo,
.left-project-stats li .stat-logo {
  width: 24px;
  height: 24px;
  padding-right: 7px;
  object-fit: contain;
}

.project-actions {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 18px;
}

.call-btn,
.brochure-btn {
  display: flex;
  align-items: center;
  background-color: #ae7f47;
  color: #fff;
  gap: 10px;
  padding: 10px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  font-family: "Montserrat", sans-serif;
  transition: background 0.3s ease;
}

.call-btn:hover,
.brochure-btn:hover {
  color: #fff;
  background: #8b6531;
  text-decoration: none;
}

/* Divider Style */
.project-divider {
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, #ae7f47, #e3b577, #c7a869);
  margin: 50px 0 30px 0;
  border-radius: 4px;
}

.right-image .project-actions {
  justify-content: flex-end;
}


/* ---======================== Project Detail Page ===============================--- */

/* --- DETAIL BANNER --- */
.detail-banner {

  margin-top: 80px;
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 600px;
  overflow: hidden;
}

.detail-banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.detail-banner-slide.active {
  opacity: 1;
}

.detail-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-banner-text {
  position: absolute;
  bottom: 50px;
  left: 50px;
  font-family: "Montserrat",sans-serif;
  color: #ae7f47;
}

.detail-banner-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.detail-banner-text p {
  font-size: 1.5rem;
}


/*-------------------Project Info-------------------- */
.content-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 70px;
}

.image-block {
  flex: 1;
  max-width: 700px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.image-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.carousel-slide {
  display: none;
  width: 100%;
  transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 10px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }

.carousel-dots {
  text-align: center;
  margin-top: 12px;
}

.carousel-dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.carousel-dot.active {
  background-color: #333;
}


/* --- FORM BOX --- */
.form-box {
  margin-top: 100px;
  width: 400px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0px 8px 30px rgba(206, 149, 44, 0.44);
  text-align: center;
}

.input-box {
  margin-bottom: 15px;
  width: 100%;
}

.input-box input {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #7b7b7b;
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  background: #ae7f47;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #e3b577;
}


/* Parent layout: left (config) + right (highlights) */
.project-info {
  display: flex;              /* use flex for side-by-side */
  gap: 50px;                  /* spacing between columns */
  justify-content: flex-start; /* left align */
  flex-wrap: wrap;            /* allow wrap on smaller screens */
  width: 100%;
  margin-top: 40px;
}

/* ---------- LEFT: Configuration ---------- */
.config-section {
  flex:  1 680px;       /* fixed-ish left column */
  max-width: 620px;
  min-width: 300px;
  text-align: center;
  margin: 50px;
  font-family: "Montserrat", sans-serif;
}

/* heading inside left column */
.config-section .config-heading {
  font-size: 34px;
  font-weight: 700;
  color: #ae7f47;  
  text-transform: none;
}

/* table card */
.config-table {
  width: 100%;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 35px rgba(0,0,0,0.12);
  overflow: hidden;
}

/* header row */
.config-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ae7f47;
  color: #fff;
  padding: 16px;
  font-weight: 600;
  font-size: 16px;
}

/* each data row */
.config-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 13px;
  align-items: center;
  color: #202020;
  font-family: "Montserrat",sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

/* remove border on last row */
.config-row:last-child {
  border-bottom: none;
}

/* ---------- RIGHT: Highlights ---------- */
.highlights-section {
  flex: 1 1 400px;   /* grow to fill available space */
  min-width: 300px;  /* prevent too small on resize */
  margin-top: 0;     /* remove extra margin for desktop */
}

.highlight-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ae7f47;
  margin-bottom: 25px;
  text-align: center;
}

.highlight-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.project-info .highlight-box {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.project-info .highlight-box p {
  margin: 0;
}

.project-info .highlight-box:hover {
  background: #ffd28f60;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}


/*----------GALLERY SCTION-----------*/
.gallery-section {
  max-width: 1300px;
  margin: 70px auto;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

.gallery-title {
  font-size: 2.5rem; 
  font-weight: 600; 
  color: #ae7f47; 
  margin-bottom: 25px;
  z-index: 10;
  position: relative;
  text-transform: uppercase;
}

/* wrapper hides overflow; slider is the moving element */
.gallery-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 20px; /* add some spacing between title and slider */
}

.gallery-slider {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

/* EXACT 2 visible slides */
.gallery-slide {
  flex: 0 0 calc(50% - 10px);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin-bottom: 30px;
  padding: 20px;
}

.gallery-slide img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* caption stays the same */
.gallery-caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  background: #e3b577;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  z-index: 20;
}

/* Controls */
.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 15px;
  position: relative;
  z-index: 50;
}

.gallery-controls button {
  font-size: 1rem;
  border: none;
  border-radius: 50%;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.2s;
  background: transparent;
  pointer-events: auto;
}
.gallery-controls button:hover { background: #e3b577; color: #fff; }

/* disabled state */
.gallery-controls button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ensure no accidental margins from other rules */
.gallery-slider .gallery-slide { margin: 0; }

/*---------------LOCATION------------*/
.location-section {
  background: #e4e4e4;
  padding: 40px 0 60px 0;
  text-align: center;
}
.location-title {

  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ae7f47;
  font-size: 3.0rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.location-subtitle {
  color: #ae7f47;
  font-size: 1.2rem;
  margin-bottom: 32px;
  font-weight: 500;
}
.location-map {
  margin: 0 auto 32px auto;
  max-width: 700px;
}
.location-map img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(32,58,117,0.13);
  background: #fff;
}

.location-info {
  display: flex;           /* panels side by side */
  flex-wrap: wrap;         /* wrap to next line if needed */
  gap: 16px;               /* spacing between panels */
  justify-content: center; /* center panels horizontally */
  max-width: 1000px;
  margin: 20px auto;       /* vertical spacing + horizontal center */
}

.location-info .panel {
  flex: 1 1 250px;         /* min width 250px, grow to fill space */
  background: #fff;
  border: 2px solid #ae7f47;
  border-radius: 6px;
  box-sizing: border-box;
}

.panel-header {
  font-weight: bold;
  background-color: #ae7f47;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.67);
}

.panel-body {
  font-size: 0.95rem;
  color: #353535;
  line-height: 1.5;
}


/*---------------RERA SECTION------------*/

.rera-section {
  width: 100%;
  background: #fff;
  padding: 40px 20px; /* more top padding for spacing */
  box-sizing: border-box;
  text-align: center;
}

.rera-qr-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* stack on small screens */
  gap: 36px;
  margin-bottom: 30px; /* space between QR row and disclaimer */
}

.rera-numbers {
  color: #222;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  flex: 1 1 300px;
  line-height: 1.5;
  text-align: left;
}

.rera-qr {
  flex: 0 1 250px;
}

.rera-qr img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.rera-disclaimer {
  background: #fff;
  padding: 24px;
  border: 1px solid #ae7f47;
  border-radius: 6px;
  max-width: 800px;
  margin: 0 auto; /* horizontally centered */
  font-size: 0.95rem;
  color: #353535;
  line-height: 1.5;
  box-shadow: 0 4px 14px rgba(32, 58, 117, 0.09);
}

.rera-disclaimer .disclaimer-title {
  font-weight: bold;
}

.rera-disclaimer .more-text {
  display: none; /* hidden by default */
}

.rera-disclaimer.expanded .more-text {
  display: inline; /* show when expanded */
}

.rera-disclaimer .toggle-btn {
  display: inline-block;
  cursor: pointer;
  color: #ae7f47;
  font-weight: bold;
  text-decoration: underline;
  margin-left: 5px;
}



/* --- ENQUIRY SUCCESS MODAL --- */
#enquirySuccessModal {
  display: none; /* initially hidden */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1050; /* ensure above other content */
}

#enquirySuccessModal .modal-content {
  background: white;
  margin: 15% auto;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  text-align: center;
}

.success-page-container {
  padding-top: 150px; /* adjust depending on your header height */
}

.blur-target {
    filter: blur(10px);
    pointer-events: none;
    transition: filter 0.3s ease;
}

.blur-off {
    filter: blur(0px) !important;
    pointer-events: auto !important;
}



@media screen and (max-width: 768px) {
  body {
    padding-top: 110px; /* adjust based on your mobile header height */
  }
}

/* --- TABLET: up to 1024px --- */
@media screen and (max-width: 1024px) {
  #site-header {
    padding: 5px 10px;

  }
  .banner-text {
    left: 40px;
    top: 45%;
  }
  .banner-text h1 {
    font-size: 1.5rem;
  }
  .banner-text p {
    font-size: 1.1rem;
  }
  .button-nav {
    flex-direction: column;
    gap: 30px;
    margin: 20px auto;
  }
  .button-nav button {
    width: 400px;
    font-size: 1.5rem;
  }
  .project-row {
    flex-wrap: wrap;
    gap: 24px;
  }
  .project-image-block {
    width: 100%;
    height: auto;
  }
  .project-info {
    flex-direction: column;
    gap: 40px;
  }
}


/* === RESPONSIVE STYLES === */
@media (max-width: 992px) {
  #homepageCarousel .carousel-caption {
    bottom: 12%;
    left: 5%;
  }
  #homepageCarousel .carousel-caption h5 {
    font-size: 2rem;
  }
  #homepageCarousel .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  #homepageCarousel .carousel-caption {
    bottom: 10%;
    left: 4%;
  }
  #homepageCarousel .carousel-caption h5 {
    font-size: 1.5rem;
  }
  #homepageCarousel .carousel-caption p {
    font-size: 0.9rem;
  }
  #homepageCarousel .carousel-caption .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* --- MOBILE: up to 768px --- */
@media screen and (max-width: 768px) {

    #site-header {
      font-size: 10px;
      height: 90px;
      padding: 3px 3%;
    }

    #site-header nav {
      gap: 5px;
    }

    #site-header a {
      font-size: 10px !important;
    }

    .header-container {
      display: flex;
      flex-direction: row; 
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .header-container nav{
      display: flex;
      align-items: center;
      gap: 5px
    }

    .call-btn {
      font-size: 10px;
      padding: 6px 10px;
    }

    /* Logo smaller */
    .logo-image {
      width: 80px;
      margin-right: 10px;
    }

    .home-logo {
      text-decoration: none; /* remove underline */
  }

    .gallery-section {
      margin: 30px auto 20px auto; /* smaller margins on mobile */
    }

  .home-logo h3 {
      font-family: "Montserrat", sans-serif;
      font-size: 0.8rem;          
      font-weight: 700;
      color: #ae7f47;            
      margin: 0;                  
      padding: 0;
      text-transform: uppercase;         
      transition: color 0.3s ease;
  }

  .home-logo:hover h3 {
      color: #e3b577;              
      cursor: pointer;
  }

    /* Navigation stays inline */
  .main-nav .nav-links {
    display: flex;
    flex-direction: row;
    gap: 10px;    /* Adjust for spacing */
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .main-nav .nav-links li {
    display: flex;
    align-items: center;
  }

    .dropdown-menu{
      position: relative;         /* Dropdown still works */
    }

    /* Smaller button */
    .call-btn {
      padding: 6px 10px;
      font-size: 11px;
    }

    .dropdown {
      position: relative;
    }


    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 150px;
      background: #fff;
      z-index: 10;
    }


    .banner-text h1 {
      font-size: 2rem;
    }
    .banner-text p {
      font-size: 1rem;
    }
    .button-nav button {
      width: 90%;
      font-size: 1.3rem;
    }

    .listings-container h1{
      font-size: 2rem;
    }

    #projects h1{
      font-size: 2rem;
    }

    .project-info {
      flex-direction: column;
    }

    .brochure-btn{
      font-size: 10px;
      padding: 8px 16px;
    }

    .highlight-boxes {
      flex-direction: column;
      gap: 15px;
    }
    .form-box {
      width: 95%;
      margin: 50px auto;
    }


    footer a {
      display: inline-flex;   /* make <a> a flex container */
      align-items: center;    /* vertically center the content */
      gap: 5px;               /* space between image and text */
  }

    footer a img {
      width: 18px;
      height: 18px;
    }

    .whatsapp-btn {

      width: 150px;
      padding: 10px 15px;
      font-size: 10px;
      border-radius: 40px;
      bottom: 15px;
      right: 15px;
      box-shadow: inset 0 6px 8px rgba(253, 223, 147, 0.6);
    }

    .project-info {
      flex-direction: column;
      gap: 0;
    }

    /* Config section adjustments */
    .config-section {
      margin: 20px auto;
      text-align: center;
    }

    /* Config table adjustments */
    .config-table {
      margin-bottom: 0; 
    }

    .config-row {
      padding: 10px 8px; 
    }

    /* Highlights section adjustments */
    .highlights-section {
      margin-top: 0; /* remove extra space at the top */
      width: 100%;
    }

      /* Reduce modal width */
    #enquiryModal .modal-dialog {
        max-width: 90%;
        margin: 20px auto;
    }

    /* Reduce padding inside modal */
    #enquiryModal .modal-body {
        padding: 15px;
    }

    /* Smaller title */
    #enquiryModal .modal-body h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    /* Smaller label text */
    #enquiryModal label {
        font-size: 13px;
    }

    /* Smaller input fields */
    #enquiryModal .form-control {
        padding: 6px 10px;
        font-size: 14px;
    }

    /* Smaller footer buttons */
    #enquiryModal .modal-footer .btn {
        padding: 6px 12px;
        font-size: 14px;
    }
}




/* --- SMALL MOBILE: up to 480px --- */
@media screen and (max-width: 480px) {
  .banner-text h1 {
    font-size: 1.5rem;
  }
  .banner-text p {
    font-size: 0.9rem;
  }
  .button-nav button {
    font-size: 1.2rem;
    padding: 10px 20px;
  }
  .project-row {
    flex-direction: column;
    gap: 15px;
  }
  .project-image-block {
    width: 100%;
    height: auto;
  }
  #site-header nav a {
    font-size: 10px;
    padding: 6px 10px;
  }
  #site-header nav a.callnow {
    font-size: 16px;
    padding: 8px 12px;
  }

  .right-project-stats li .stat-logo,
  .left-project-stats li .stat-logo {

    width: 20px;  
    height: 20px;  
    object-fit: contain;
  }
}

@media (max-width: 980px) {
  .location-content {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .location-info {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 700px) {
  .location-map, .location-info { max-width: 95%; }
}

