@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Apply fonts universally */
* {
  font-family: 'Poppins', sans-serif;
  /* color: #4a3b2a; */
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  color: #7a4b2d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
body {
  background-color: #f9f9f9;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
/* -------- LEFT SECTION -------- */
.left-section {
  width: 75%;
  float: left;
  min-height: 90vh;
}

/* MENU SECTION */
/* Navbar Section */
#menu-section .navbar {
  position: fixed;              /* Fixes it to the top */
  top: 0;                       /* Aligns to top edge */
  left: 0;
  width: 75%;                  /* Full width */
  background-color: #fff;       /* Solid background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;                /* Keeps it above all other content */
  padding: 10px 20px;
}

/* Add padding-top to body so content doesn't hide behind navbar */
body {
  padding-top: 90px;            /* Adjust to navbar height */
}

/* Navbar Brand */
#menu-section .navbar-brand {
  font-weight: bold;
  color: #957854 !important;
  letter-spacing: 1px;
  font-size: 0.5rem;
}

/* Nav Links */
#menu-section .nav-link {
  position: relative;
  color: #333 !important;
  font-weight: 500;
  margin-right: 10px;
  transition: color 0.3s ease;
  padding-bottom: 5px;
  font-size: 1rem;
}

/* Hover underline effect */
#menu-section .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background-color: #957854;
  transition: width 0.3s ease;
}

/* Hover & Active states */
#menu-section .nav-link:hover {
  color: #957854 !important;
}
#menu-section .nav-link:hover::after,
#menu-section .nav-link.active::after {
  width: 100%;
}
#menu-section .nav-link.active {
  color: #957854 !important;
}
#menu-section .navbar-brand .subtext {
  font-size: 0.4rem;       /* Small font size */
  color: #957854;          /* Match brand color */
  margin-top: 2px;         /* Small spacing below logo */
  /* letter-spacing: 0.5px;   Slight spacing for readability */
}
@media (max-width: 991px) {
  /* Make navbar full width and slightly taller */
  #menu-section .navbar {
    width: 100%;
    padding: 8px 15px;
  }

  /* Center brand and logo */
  #menu-section .navbar-brand {
    align-items: center !important;
  }

  #menu-section .navbar-brand img {
    width: 75px;
  }

  #menu-section .navbar-brand .subtext {
    font-size: 0.5rem;
    text-align: center;
  }

  /* Stack nav links vertically */
  #menu-section .navbar-collapse {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 10px 0;
  }

  #menu-section .nav-link {
    display: block;
    margin: 10px 0;
    font-size: 1rem;
  }

  /* Hide underline hover effect for mobile (optional) */
  #menu-section .nav-link::after {
    display: none;
  }
}

/* SLIDER SECTION */
#slider-section .carousel-item img {
  height: 90vh;
  object-fit: cover;
  border-bottom: 5px solid #957854;
}

#slider-section .carousel-caption {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 15px 25px;
}

#slider-section .carousel-caption h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
}

#slider-section .carousel-caption p {
  color: #eee;
  margin-bottom: 0;
}
/* Artistic Impression Tag */
.artistic-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 0.6rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 10;
}
/* ✅ SLIDER SECTION */
#slider-section .carousel-item img {
  height: 90vh;
  width: 100%;
  object-fit: cover;
  border-bottom: 5px solid #957854;
}

/* ✅ MOBILE FIX */
@media (max-width: 768px) {
  #slider-section .carousel-item img {
    height: 60vh; /* smaller height for mobile */
    object-fit: contain; /* ensures full image is visible */
      background-color: #000; /* adds background for empty space  */
  }

  #slider-section .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
  }

  #slider-section .carousel-caption h5 {
    font-size: 1.2rem;
  }

  #slider-section .carousel-caption p {
    font-size: 0.9rem;
  }

  .artistic-tag {
    font-size: 0.55rem;
    padding: 4px 8px;
    top: 10px;
    right: 10px;
  }
}

/* ✅ EXTRA SMALL DEVICES */
@media (max-width: 480px) {
  #slider-section .carousel-item img {
    height: 50vh;
  }
}
/* ✅ SLIDER FIXED HEIGHT ADJUSTMENT */
#slider-section .carousel-item img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  border-bottom: 5px solid #957854;
}

/* ✅ MOBILE FIX (better balance) */
@media (max-width: 768px) {
  #slider-section .carousel-item img {
    height: auto;
    max-height: 70vh;
    object-fit: cover; /* fills screen but crops slightly */
  }

   /* .carousel-inner { */
     /* background-color: #000; subtle background behind  */
  /* }  */
}

/* ✅ RIGHT FIXED SECTION */
.right-section {
  width: 25%;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  overflow-y: auto;
}

.contact-top {
  background: #fff;
  border-bottom: 1px solid #d41a1a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-family: 'Poppins', sans-serif;
  flex-wrap: wrap;
}

.visit-text {
  color: #333;
  font-size: 15px;
}

.phone-number {
  color: #555;
  font-size: 14px;
  font-weight: bold;
}

.phone-icon, .whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-icon {
  background-color: #25d366; /* Green */
  animation: pulse-phone 1.5s infinite;
}

.whatsapp-icon {
  background-color: #128C7E;
  animation: pulse-whatsapp 1.5s infinite;
}

/* Hover Effects */
.phone-icon:hover, .whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Pulse Animations */
@keyframes pulse-phone {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(18, 140, 126, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(18, 140, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(18, 140, 126, 0); }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-top {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .callback-box {
    justify-content: center;
  }
}

/* Enquiry Box */
.enquiry-box h4 {
  color: #957854;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.btn-custom {
  background-color: #957854;
  color: white;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: #a00000;
  transform: scale(1.02);
}

/* -------- RESPONSIVE -------- */
@media (max-width: 992px) {
  .left-section, .right-section {
    width: 100%;
    position: relative;
    height: auto;
  }

  .right-section {
    box-shadow: none;
    padding: 20px;
  }

  #slider-section .carousel-item img {
    height: 60vh;
  }

  #menu-section .navbar-brand {
    font-size: 1rem;
  }
}
/* 🌍 Country Code Dropdown Styling */
#countryCode {
  background-color: #fff;
  border: 1px solid #ccc;
  border-right: none; /* blend smoothly with phone input */
  border-radius: 6px 0 0 6px;
  font-size: 14px;
  color: #444;
  font-weight: 500;
  padding: 10px;
  min-width: 90px;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none; /* hide default arrow in most browsers */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23957854' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

#countryCode:focus {
  border-color: #957854;
  outline: none;
  box-shadow: 0 0 5px rgba(149, 120, 84, 0.3);
}

/* 📱 Adjust input alignment */
.input-group {
  display: flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
}

#phone {
  border-radius: 0 6px 6px 0;
  border-left: none;
}

/* 🧩 Mobile Responsive Fixes */
@media (max-width: 576px) {
  #countryCode {
    font-size: 13px;
    padding: 8px;
    min-width: 75px;
  }
}
.input-group {
  display: flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  cursor: text; /* makes the whole group feel clickable */
}

#countryCode {
  border-right: 1px solid #ccc;
}

#phone {
  border-left: none;
  flex: 1;
}
.input-group {
  display: flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  cursor: text; /* user sees text cursor everywhere */
}

#countryCode {
  border-right: 1px solid #ccc;
  background-color: #fff;
}

#phone {
  border-left: none;
  flex: 1;
}
@media (max-width: 992px) {
  .right-section {
    position: relative !important;
    width: 100%;
    top: auto;
    right: auto;
    box-shadow: none;
    padding: 20px;
  }
}


  /* Make spacing from above content & footer */
  main {
    margin-bottom: 0;
  }

  .right-section .enquiry-box {
    margin-top: 10px;
  }

  .contact-top {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .callback-box {
    justify-content: center;
  }


/* ✅ Small Phones */
@media (max-width: 576px) {
  .right-section {
    padding: 20px 15px;
  }

  .enquiry-box h4 {
    font-size: 18px;
  }

  .btn-custom {
    font-size: 14px;
    padding: 10px;
  }
}


.about-heading {
  color: #3c2813;
  white-space: nowrap;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.5rem); /* adjusts size by screen width */
}


.about-section {
  background-color: #fafafa;
  align-items: center;
  padding-bottom: 20px;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.about-image img {
  border-radius: 12px;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.image-frame {
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  border: 3px solid #4f3819;
  z-index: -1;
  border-radius: 15px;
}

.artistic-label {
  position: absolute;
  bottom: 10px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.text-primary {
  color: #4f3819 !important;
}

.btn-about {
  background-color: #4f3819;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background-color: #3c2813;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-section {
    text-align: center;
  }
  .image-frame {
    display: none;
  }
  .artistic-label {
    bottom: 8px;
    right: 8px;
    font-size: 10px;
    padding: 3px 8px;
  }
}
/* Alternating Layout Enhancements
#About .row {
  margin-bottom: 4rem;
}

#About .about-image img {
  border-radius: 12px;
  transition: transform 0.6s ease, box-shadow 0.3s ease;
}

#About .about-image:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

#About .about-content {
  color: #555;
  line-height: 1.7;
} */

@media (max-width: 768px) {
  #About .row {
    text-align: center;
  }
  #About .about-content {
    padding: 0 !important;
  }
}


.pricing-section {
  background-color: #f5f5f5;
  padding-bottom: 30px;
}

.section-title {
  color: #732e2e;
  font-size: 1.9rem;
}

.underline {
  width: 60px;
  height: 3px;
  background-color: #4f3819;
  border-radius: 3px;
}

.pricing-card {
  transition: all 0.4s ease;
  border: none;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.text-accent {
  color: #4f3819;
}

.btn-pricing {
  background-color: #4f3819;
  color: #fff;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.btn-pricing:hover {
  background-color: #3c2813;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-card {
    margin-bottom: 20px;
  }
  .section-title {
    font-size: 1.6rem;
  }
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Enquiry Box */
.popup-box {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  animation: slideUp 0.4s ease;
  border-top: 6px solid #3c2813; /* Elegant maroon accent */
}

/* Slide-up animation */
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Logo */
.popup-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 5px;
}

/* Heading */
.popup-title {
  color: #3c2813; /* Maroon tone matching heading */
  font-weight: 650;
  font-size: 22px;
  margin-bottom: 20px;
}

/* Input Fields */
.popup-box input {
  width: 90%;
  margin-bottom:10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: 0.3s;
  font-size: 15px;
}

.popup-box input:focus {
  border-color: #3c2813;
  box-shadow: 0 0 5px rgba(156, 35, 35, 0.4);
}

/* Submit Button */
.btn-submit {
  width: 100%;
  background-color: #3c2813; /* Maroon shade */
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
  box-shadow: 0 3px 10px rgba(156, 35, 35, 0.3);
}

.btn-submit:hover {
  background-color: #3c2813; /* Slightly darker on hover */
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  cursor: pointer;
  color: #9c2323;
  font-weight: 600;
  transition: 0.2s;
}

.close-btn:hover {
  color: #7c1b1b;
}

/* Thank You Popup */
.thankyou-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #9c2323;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Enquiry Button (if outside form) */
.btn-enquiry {
  background-color: #9c2323;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-enquiry:hover {
  background-color: #7c1b1b;
}
/* Floor Plan Section */
#floor-plan {
  background-color: #fafafa;
}

.plan-card {
  border: 2px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}.plan-card {
  border: 2px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  height: 320px; /* 👈 Fixed uniform height for all cards */
}

.plan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 👈 Keeps image ratio consistent */
}


.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Blur effect */
.blurred-image {
  filter: blur(3px);
  transition: filter 0.5s ease, transform 0.4s ease;
}

.plan-card:hover .blurred-image {
  filter: blur(5px);
  transform: scale(1.05);
}

/* Overlay text */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.plan-card:hover .overlay {
  opacity: 1;
}

.overlay-text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Button Styling */
.btn-plan {
  background-color: #7a2e2e;
  color: #fff;
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.btn-plan:hover {
  background-color: #992f2f;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .plan-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .plan-card {
    height: 250px;
  }
}
#amenities {
  background: #f8f9fa;
  padding-top: 60px;
  padding-bottom: 60px;
}

#amenities h2 {
  font-weight: 700;
  color: #7a2e2e;
  letter-spacing: 1px;
}

#amenities p.text-muted {
  max-width: 700px;
  margin: 0 auto 40px;
}

.amenity-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 15px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
}

.amenity-card i {
  font-size: 2.5rem;
  color: #7a2e2e;
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.amenity-card p {
  margin: 0;
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.amenity-card:hover i {
  transform: scale(1.1);
  color: #992f2f;
}

/* Carousel control styles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
  background-size: 100%, 100%;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .amenity-card {
    padding: 20px 10px;
  }

  .amenity-card i {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  #amenities h2 {
    font-size: 1.6rem;
  }

  .amenity-card {
    border-radius: 10px;
    padding: 15px;
  }

  .amenity-card p {
    font-size: 0.9rem;
  }
}


#Location h2 {
  color: #3c2813;
}

.list-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.list-item i {
  color: #7a2e2e;
}

.list-item ul {
  margin: 10px 0 0 0;
  padding-left: 20px;
}

.list-item ul li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.list-item ul li:last-child {
  border-bottom: none;
}

.list-item ul li span {
  color: #7a2e2e;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  #Location .row {
    text-align: center;
  }
  .list-item ul li {
    flex-direction: column;
    align-items: center;
  }
  .list-item ul li span {
    margin-top: 2px;
  }
  .col-lg-6.text-center img {
    margin-top: 20px;
    max-height: 300px;
  }
}
.list-group-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.list-group-item i {
  color: #7a2e2e;
}

.details ul li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}

.details ul li:last-child {
  border-bottom: none;
}

.details ul li span {
  color: #7a2e2e;
  font-weight: 500;
}

@media (max-width: 767px) {
  .col-lg-6.text-center img {
    margin-top: 20px;
    max-height: 300px;
  }
}



#about-buildcon {
  background-color: #f8f9fa;
  font-family: 'Poppins', sans-serif;
}

.info-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #7a4b2d;
  margin-bottom: 1rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

#about-buildcon p {
  color: #5b4636;
  font-size: 0.95rem;
  line-height: 1.6;
}

.highlight {
  font-size: 2rem;
  font-weight: 700;
  color: #7a4b2d;
  margin-bottom: 0.2rem;
  font-family: 'Cinzel', serif;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    justify-content: center;
    text-align: center;
  }

  #about-buildcon p {
    text-align: center;
  }

  .highlight {
    text-align: center;
  }
}
/* Footer Section */
.footer-section {
  background-color: #4a2e00;
  color: white;
  padding: 40px 0;
  font-size: 14px;
}

.footer-section a {
  color: #ffcc99;
  text-decoration: underline;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-section a:hover {
  color: #ffd9b3;
}

.footer-section p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-section strong {
  font-weight: 600;
}

.footer-section .small {
  font-size: 12px;
}

@media (max-width: 768px) {
  .footer-section {
    text-align: center;
    padding: 20px 10px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.4s ease;
  height: 300px; /* ✅ Fixed equal height for all cards */
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Keeps images uniform and fills the frame */
  border-radius: 15px;
  transition: all 0.4s ease;
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(60, 40, 19, 0.7);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item h5 {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* ✅ Artistic Impression text */
.artistic-text {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 8px;
  border-radius: 6px;
  font-style: italic;
  pointer-events: none;
}

/* rera-number */
/* 🔸 PROJECT DETAILS SECTION 🔸 */
.project-details-section {
  background: #fafafa;
  border-top: 2px solid #e0d6c7;
  border-bottom: 2px solid #e0d6c7;
}

/* Logo */
.logo-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* RERA Details */
.rera-details {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.rera-title {
  font-size: 1.4rem;
  color: #3c2813;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 🔸 QR Codes Section 🔸 */
.qr-codes-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
}

.qr-code-placeholder {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  font-size: 10px;
}
.qr-code-placeholder:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .rera-title {
    font-size: 1.2rem;
    text-align: center;
  }

  .rera-details {
    font-size: 0.9rem;
    text-align: center;
  }

  .logo-placeholder {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .rera-details {
    font-size: 0.8rem;
  }

  .logo-placeholder {
    width: 60px;
    height: 60px;
  }

  .qr-codes-row {
    flex-direction: column;
  }
}
/* 🔸 Logo Row Styling */
.rera-logos {
    height: 10px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 15px !important;
  margin-bottom: 10px !important;
  
}
.rera-logos img {
  height: 10px;
  width: auto;
  object-fit: contain;
}

.rera-logos .divider {
  font-size: 1.8rem;
  color: #bca67f;
  font-weight: 600;
  line-height: 1;
}

/* Logo 2 with text below */
.logo2-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.auth-text {
  font-size: 0.75rem;
  color: #6c584c;
  margin-top: 4px;
  font-style: italic;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .rera-logos img {
    height: 40px;
  }
  .rera-logos .divider {
    font-size: 1.4rem;
  }
  .auth-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .rera-logos {
    gap: 10px;
  }
  .rera-logos img {
    height: 35px;
  }
}

/* fixed icons */
/* 🔒 Fixed button container (visible only on mobile & tablet) */
.bottom-fixed-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-top: 1px solid #ddd;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}
/* fixed icons */
/* 🔒 Fixed button container (visible only on mobile & tablet) */
.bottom-fixed-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-top: 1px solid #ddd;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

/* 📞 Individual buttons */
.bottom-fixed-buttons a {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

/* 🎨 Button colors */
.call-btn {
  background-color: #007bff; /* Blue */
}

.whatsapp-btn {
  background-color: #25D366; /* WhatsApp green */
}

/* 💻 Hide on desktop (screens wider than 992px) */
@media (min-width: 992px) {
  .bottom-fixed-buttons {
    display: none !important;
  }
}
