/* Reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior:smooth;
}

.box {
  min-height: 100vh;
}
.logo {
  width: 90px;
  height: auto;
}
@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}


/* Popup Container */
/* .popup-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 350px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 9999;
} */
.popup-container {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 8px;
  width: 80%;
  max-width: 300px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 9999;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.logo {
  max-width: 200px;
  margin: 0 auto 15px;
  display: block;
}

.popup-heading {
  color: #75541e;
  font-weight: bold;
  margin-bottom: 15px;
}

.popup-container input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.input-with-flag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag {
  font-size: 18px;
  margin-left: 10px;
}

.input-with-flag input {
  flex: 1;
  margin: 0;
  padding-left: 10px;
}

.submit-btn {
  width: 100%;
  background-color: #75541e;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.thank-you-content {
  font-size: 18px;
  color: green;
  font-weight: bold;
  padding: 20px;
}

.popup-container {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Navigation links */

.header-section .nav-link {
  font-weight: 500;
  color: #603913; /* dark brown */
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-size: 14px;
  transition: color 0.3s ease;
}

.header-section .nav-link:hover,
.header-section .nav-link.active {
  color: #a76a1f; /* golden brown on hover */
}

/* Call button - Styled as per brand */
.call-btn {
  background-color: #603913; /* dark brown */
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background-color: #a76a1f; /* golden brown hover */
  color: #fff;
}

.call-btn i {
  font-size: 18px;
}
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff; /* ensure it's not transparent */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* optional shadow */
}
/* Navbar branding */
.header-section .navbar-brand span:first-child {
  font-size: 18px;
  color: #603913;
}

.header-section .navbar-brand .text-muted {
  font-size: 14px;
  color: #c89430;
}

/* Social Icons */
.header-section .social-icons a {
  font-size: 16px;
  transition: color 0.3s;
  color: #603913;
}

.header-section .social-icons a:hover {
  color: #a76a1f;
}

/* Top bar text */
.header-section .bg-dark {
  font-size: 13px;
  background-color: #603913 !important; /* override Bootstrap dark */
}
@keyframes pulseCall {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* Responsive tweaks */
@media (max-width: 991px) {
  .header-section .navbar-collapse {
    text-align: center;
  }

  .header-section .navbar-nav {
    gap: 0.5rem;
  }

  .header-section .d-flex {
    margin-top: 10px;
    justify-content: center;
  }
}
/* Slider Container */
.slider-section {
  margin-top: 20px;
  background: #000;
}

/* Core Image Styling */
.carousel-image {
  width: 100%;
  height: 80vh;              /* Large screen height */
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.4s ease-in-out;
}

/* Optional Hover Zoom */
.carousel-image:hover {
  transform: scale(1.02);
}

/* Controls styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* Responsive - Mobile Friendly */
@media (max-width: 768px) {
  .carousel-image {
    height: 45vh;   /* Shrink height on mobile */
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 30px;
    height: 30px;
  }
}


/* About */
.about-section {
  background-color: #f8f9fa;
}

.about-section h2 {
  font-weight: 700;
   text-align: center;
  color: #4a2e00;
}

.about-section p {
  color: #333;
  line-height: 1.7;
}

.about-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Highlights */
.highlights h2 {
  font-weight: 700;
  color: #4a2e00;
}
.highlight-section {
  background-color: #f7f4f2;
}

.highlight-icon {
  width: 36px;
  height: auto;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-item h6 {
  font-weight: 600;
  color: #3b2c1a;
}

.highlight-item p {
  font-size: 15px;
  color: #333;
}
 img.img-fluid.rounded.shadow {
    max-width: 100%;
    height: 70vh;
    border-radius: 8px;
  }

/* Configuration */
/* Configuration Section Table */
#Configuration h2 {
  font-weight: 700;
  color: #4a2e00;
}
.table-responsive {
  margin-top: 30px;
  overflow-x: auto;
}

/* Main table styling */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  background-color: #fff;
}

.table thead th {
  background-color: #f5f5f5;
  color:white;
  font-weight: bold;
  text-align: center;
  padding: 16px;
  border: 1px solid #ddd;
  text-transform: uppercase;
}

.table tbody td {
  padding: 16px;
  border: 1px solid #ddd;
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
}

/* Zebra striping */
.table tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}

/* Button styles */
.btn-enquire {
  padding: 6px 14px;
  font-size: 14px;
  border: 2px solid #75541e;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.btn-enquire:hover {
  background-color: #75541e;
  color: #fff;
  text-decoration: none;
}

/* Table Head in Dark Theme (if using Bootstrap .table-dark) */
.table-dark th {
  background-color: #3e2a1a !important;
  color: #fff;
  font-weight: bold;
}

/* Responsive tweak for smaller devices */
@media (max-width: 768px) {
  .table thead {
    display: none;
  }

  .table, .table tbody, .table tr, .table td {
    display: block;
    width: 100%;
  }

  .table tr {
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
  }

  .table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 45%;
    padding-left: 15px;
    font-weight: bold;
    text-align: left;
  }
}


.enquiry-popup {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 350px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 9999;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

.enquiry-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.enquiry-logo {
  max-width: 200px;
  margin: 0 auto 15px;
  display: block;
}

.enquiry-title {
  color: #75541e;
  font-weight: bold;
  margin-bottom: 15px;
}

.enquiry-popup input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.enquiry-submit {
  width: 100%;
  background-color: #75541e;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.thank-you-msg {
  font-size: 18px;
  color: green;
  font-weight: bold;
  padding: 20px;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Amenites */
.amenity {
      max-width: 1200px;
      margin: auto;
      padding: 2rem;
      min-height: 100vh;
      /* background: #000; */
    }
 h2.animate__animated.animate__fadeInDown {
  font-weight: 700;
  color: #4a2e00;
  text-align: center;
  margin-bottom: 20px;
}


    .amenity-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .amenity-card {
      background: white;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    .amenity-card:hover {
      transform: scale(1.03);
    }
    .amenity-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .amenity-content {
      padding: 1rem;
    }
    .amenity-content h3 {
      margin: 0.5rem 0;
      color:black;
    }
    .amenity-content p {
      color: #555;
    }


    /* floor plan */
    
    .site-floor-plan h2 {
  font-weight: 700;
  color: #4a2e00;
  text-align: center;
  margin-bottom: 20px;
}

.plan-image {
  border-radius: 12px;
  filter: blur(2px);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  width: 100%;
}

.plan-image:hover {
  filter: blur(2px) brightness(1.05);
  transform: scale(1.03);
}

.image-box {
  overflow: hidden;
}

/* MAP */
/* Section Styling */
.location-section h2{
font-weight: 700;
  color: #4a2e00;
  text-align: center;
  /* margin-bottom: 20px; */
  font-size: 2rem; /* optional: adjusts size */
}

.location-section {
  padding: 10px 20px;
  text-align: center;
  background-color: #f7f4f2;
  
}
.location-section img{
  width: 45%;
  height: 45%;
}

.section-title {
  font-size: 36px;
  color: #4a3c1a;
  margin-bottom: 10px;
  font-weight: bold;
}

.section-subtitle {
  font-size: 20px;
  color: #c3a641;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Responsive Image Container */
.map-responsive {
  max-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-responsive img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Optional: rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Optional: shadow */
}

/* Responsive Typography */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}
/* Get in touch */
  /* CONTACT SECTION CUSTOM STYLES */

#contact {
  background-color: #f9f9f9;
  padding: 60px 0;
}

#contact h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #75541e;
}

#contact p {
  font-size: 18px;
  color: #666;
}

/* Form Box */
#contact form {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

#contact input[type="text"],
#contact input[type="tel"],
#contact input[type="email"] {
  border: 1px solid #ddd;
  padding: 12px 15px;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  transition: 0.3s ease;
}

#contact input:focus {
  border-color: #75541e;
  box-shadow: none;
  outline: none;
}

#contact .submit-btn {
  background-color: #75541e;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  transition: 0.3s ease;
  cursor: pointer;
}

#contact .submit-btn:hover {
  background-color: #5e4317;
}

/* Contact Info Box */
#contact .contact-info-box {
  text-align: center;
  padding: 25px 15px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

#contact .contact-info-box:hover {
  transform: translateY(-5px);
}

/* Icons */
#contact i,
#contact img {
  font-size: 30px;
  margin-bottom: 10px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  #contact h2 {
    font-size: 26px;
  }

  #contact p {
    font-size: 16px;
  }

  #contact .contact-info-box {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  #contact form {
    padding: 20px;
  }

  #contact input[type="text"],
  #contact input[type="tel"],
  #contact input[type="email"] {
    font-size: 14px;
  }

  #contact .submit-btn {
    width: 100%;
    padding: 12px;
  }
}
/* QR CODE */
.rera-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9; /* Optional: light background */
  }

  .rera-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
  }

  .rera-link {
    color: #4a2e00;
    text-decoration: underline;
  }

  .rera-qr {
    width: 300px;
    max-width: 100%;
    height: auto;
    display: inline-block;
  }

  @media (max-width: 600px) {
    .rera-qr {
      width: 160px;
    }

    .rera-text {
      font-size: 13px;
      padding: 0 10px;
    }
  }


/* Footer Section */
.footer-section {
  background-color: #4a2e00;
  color: #ffffff;
  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;
  }
}


