/* Color Palette Variables derived from the Image */
:root {
  --primary-purple: #2e104d;
  --main-magenta: #b61c74;
  --accent-pink: #d82b88;
  --gradient-bg: linear-gradient(135deg, #2b0b3e 0%, #a21262 50%, #c42377 100%);
}
body {
   font-family: "Open Sans", sans-serif;
}
/* Custom Navbar Styling */
.navbar .nav-link {
  color: #555555;
  font-weight: 500;
  font-size: 0.95rem;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
  position: relative;
  transition: color 0.2s ease-in-out;
}

.navbar .nav-link:hover {
  color: #a32228;
}

/* Red Indicator Line Below Active Link */
.navbar .nav-link.active {
  color: #333333;
  font-weight: 600;
}

.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background-color: #a32228;
  border-radius: 2px;
}

/* Contact Us Button */
.btn-contact {
  background-color: #a32228;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  transition: background-color 0.2s ease-in-out;
}

.btn-contact:hover {
  background-color: #821a1f;
  color: #ffffff;
}

/* Carousel Image Responsive Sizing */
.hero-banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .navbar .nav-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .navbar .nav-link.active::after {
    bottom: 2px;
  }
}
/* Background Gradient */
.expo-section {
  background: url('images/bg.png') center/cover no-repeat;
  padding: 5rem 0;
}

/* Border Box */
.expo-border-box {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2px;
}

/* Overlapping Badge Title */
.title-badge {
  top: -38px;
  left: 30px;
  color: #8c1e63;
  font-size: 42px;
  letter-spacing: 0.5px;
  border-radius: 2px;
  font-weight: 800; /* Extra Bold for Manrope title */
}

/* Vertical Divider Lines */
.vr-line {
  width: 1px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.4);
}

.icon-wrap {
  width: 60px;
  text-align: center;
}

/* Info Pill Badge */
.info-pill {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: #ffffff;
  font-weight: 500;
}

/* Tag Icon Styling */
.offer-icon {
  font-size: 2.2rem;
  transform: rotate(-10deg);
  color: #ffffff;
}

/* Offer Divider Line */
.offer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: 120px;
  opacity: 1;
}

.tracking-wide {
  letter-spacing: 0.5px;
}

/* Register Button Styling */
.btn-register {
  border: 1.5px solid #ffffff;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-register:hover {
  background-color: #ffffff;
  color: #8c1e63;
}

/* Responsive Fixes */
@media (max-width: 576px) {
  .title-badge {
    top: -14px;
    left: 15px;
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem !important;
  }
  .expo-border-box {
    padding-top: 2rem !important;
  }
}

/* Apply Manrope Font to Section */
.overview-section {
   font-family: "Open Sans", sans-serif;
  color: #555555;
}

/* Left Heading Styling */
.overview-section .section-title {
  color: #1a3263; /* Dark navy blue */
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

/* Register Button Styling */
.overview-section .btn-register {
  background-color: #e34c53; /* Red/Coral CTA Color */
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  border: none;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.overview-section .btn-register:hover {
  background-color: #c93a41;
  color: #ffffff;
}

/* Sub-heading Styling */
.overview-section .sub-heading {
  color: #4a4a4a;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

/* Body Text Styling */
.overview-section .description-text {
  color: #fff;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
}

/* Responsive Font Sizing */
@media (max-width: 991.98px) {
  .overview-section .section-title {
    font-size: 1.75rem;
  }
}
/* Section Background & Typography */
.amenities-section {
   font-family: "Open Sans", sans-serif;
  /* Faded background image mimicking the design */
  background:  url('./images/amenities-bg.png') center/cover no-repeat;
  color: #1a3263; /* Dark navy color */
}

/* Headings */
.amenities-section .section-title {
  color: #1a3263;
  letter-spacing: 1px;
  font-weight: 500;
}

.amenities-section .section-subtitle {
  color: #1a3263;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Custom 5-Column Grid Setup */
.col-lg-2-4 {
  flex: 0 0 auto;
  width: 20%; /* 100% / 5 items = 20% */
}

.amenities-grid {
  max-width: 1400px;
}

/* Amenity Item & Internal Borders */
.amenity-item {
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Remove borders on outer edges to create the internal grid look */
/* Every 5th item (Right edge) */
.amenity-item:nth-child(5n) {
  border-right: none;
}
/* Last 5 items (Bottom edge) */
.amenity-item:nth-child(n+11) {
  border-bottom: none;
}

/* Icon Wrap styling (Grey Circle) */
.amenity-icon-wrap {
  width: 75px;
  height: 75px;
  background-color: #e4e4e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

/* Text */
.amenity-text {
  color: #2b3a67;
  font-size: 0.95rem;
  line-height: 1.3;
}

/* Gradient Know More Button */
.btn-gradient-cta {
  /*background: linear-gradient(90deg, #d34c5a 0%, #583c74 100%);*/
  background-color: #9EC900;
  color: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 6px;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991.98px) {
  /* Reset to Bootstrap 3-column behavior */
  .col-lg-2-4 {
    width: 33.333333%;
  }
  
  /* Reset Desktop Borders */
  .amenity-item:nth-child(5n) { border-right: 1px solid #d4d4d4; }
  .amenity-item:nth-child(n+11) { border-bottom: 1px solid #d4d4d4; }
  
  /* Apply Tablet Borders */
  .amenity-item:nth-child(3n) { border-right: none; }
  .amenity-item:nth-child(n+13) { border-bottom: none; }
}

@media (max-width: 767.98px) {
  /* Reset to Bootstrap 2-column behavior */
  .col-lg-2-4 {
    width: 50%;
  }
  
  /* Reset Tablet Borders */
  .amenity-item:nth-child(3n) { border-right: 1px solid #d4d4d4; }
  .amenity-item:nth-child(n+13) { border-bottom: 1px solid #d4d4d4; }
  
  /* Apply Mobile Borders */
  .amenity-item:nth-child(2n) { border-right: none; }
  /* .amenity-item:nth-last-child(-n+2) { border-bottom: none; } */
  .amenity-item:last-child { border-bottom: none; }
  
  .amenity-item {
    padding: 1.5rem 1rem;
  }
}
/* Layout Section Base */
.layout-section {
   font-family: "Open Sans", sans-serif;
  overflow: hidden; /* Prevents background line from causing horizontal scroll */
}

/* Heading Styling */
.layout-section .section-title {
  color: #1a3263; /* Dark navy color matching previous sections */
  letter-spacing: 1.5px;
  font-weight: 800;
}

/* Background Horizontal Line */
.layout-bg-line {
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e5e5e5;
  z-index: 0;
}

/* Ensure content sits above the background line */
.layout-section .z-1 {
  z-index: 1;
}

/* Image Wrapper */
.layout-image-wrapper {
  display: inline-block;
  background-color: #ffffff; /* Ensures the background line doesn't bleed through if the image has transparency */
}

/* Gradient Know More Button */
.layout-section .btn-gradient-cta {
  background: linear-gradient(90deg, #d34c5a 0%, #583c74 100%);
  color: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 6px;
  padding: 0.6rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Soft drop shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.layout-section .btn-gradient-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
}
/* Floor Plan Section Base */
.floor-plan-section {
   font-family: "Open Sans", sans-serif;
  background: radial-gradient(circle at center, #ffffff 0%, #f4f5f7 100%);
}

/* Custom Toggle Switch Styling */
.plan-toggle-wrapper {
  display: inline-flex;
  background-color: #e2e4e8;
  border-radius: 50px;
  padding: 4px;
  border: 3px solid #ffffff;
}

.plan-toggle-wrapper .toggle-btn {
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 2rem;
  color: #555555;
  border: none;
  transition: all 0.3s ease;
}

.plan-toggle-wrapper .toggle-btn:focus,
.plan-toggle-wrapper .toggle-btn:active {
  box-shadow: none;
}

.plan-toggle-wrapper .toggle-btn.active {
  background-color: #1a3263; /* Dark navy */
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Main Layout Image Styling */
.main-layout-img {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
}

/* Thumbnail Sidebar Styling */
.thumbnail-item {
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 1rem;
}

/* Remove bottom border from the last thumbnail */
.thumbnail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0 !important;
}

.thumbnail-item img {
  max-width: 160px; /* Restrict width so it matches design */
  border-radius: 4px;
}

.thumbnail-label {
  color: #555555;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

/* Gradient Know More Button */
.floor-plan-section .btn-gradient-cta {
  background: linear-gradient(90deg, #d34c5a 0%, #583c74 100%);
  color: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 6px;
  padding: 0.6rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floor-plan-section .btn-gradient-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
}
/* Swiper Container Adjustments */
/* Swiper Container Adjustments */
.gallery-carousel-section {
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

.gallerySwiper {
  width: 100%;
  /* Padding top and bottom prevents the enlarged active slide from being cropped */
  padding: 40px 0 60px 0; 
}

/* Base Slide Styling - All images are the same size */
.gallerySwiper .swiper-slide {
  width: 65%; /* Base width for all slides */
  height: 450px; /* Base height for all slides */
  position: relative;
  transition: transform 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallerySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dimming Overlay for Inactive Slides */
.gallerySwiper .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* ENLARGE ACTIVE SLIDE */
.gallerySwiper .swiper-slide-active {
  z-index: 2;
  transform: scale(1.12); /* Scales the active slide up */
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); /* Optional: adds depth */
}

/* Remove dim overlay on active slide */
.gallerySwiper .swiper-slide-active::after {
  opacity: 0; 
}

/* Shrink Inactive Slides slightly to create the gap */
.gallerySwiper .swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.9);
}

/* Navigation Arrows */
.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
  color: #ffffff;
  top: 45%; 
  z-index: 10;
}

/* Position arrows at the edges of the active center slide */
.gallerySwiper .swiper-button-next {
  right: 14%;
}

.gallerySwiper .swiper-button-prev {
  left: 14%;
}

.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after {
  font-size: 2.5rem;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6); 
}

/* Pagination Dots Styling */
.gallerySwiper .swiper-pagination {
  bottom: 10px !important;
}

.gallerySwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #d4d4d4;
  opacity: 1;
  margin: 0 5px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Active Pill-shaped Dot */
.gallerySwiper .swiper-pagination-bullet-active {
  width: 20px; 
  background-color: #1a3263; 
  border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .gallerySwiper .swiper-slide {
    width: 75%;
    height: 350px;
  }
  .gallerySwiper .swiper-button-next { right: 8%; }
  .gallerySwiper .swiper-button-prev { left: 8%; }
}

@media (max-width: 575.98px) {
  .gallerySwiper .swiper-slide {
    width: 85%;
    height: 250px;
  }
  /* Bring arrows inwards on mobile */
  .gallerySwiper .swiper-button-next { right: 2%; }
  .gallerySwiper .swiper-button-prev { left: 2%; }
}
/* Location Section Base */
.location-section {
  font-family: "Open Sans", sans-serif;
}

/* Heading Styling */
.location-section .section-title {
  color: #1a3263; /* Dark navy blue */
  letter-spacing: 1px;
  font-weight: 800;
}

/* Restrict the width of the list for better readability on large screens */
.location-list {
  max-width: 1000px;
}

/* Individual List Item */
.location-item {
  cursor: pointer;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
  border-bottom-color: #e5e5e5 !important;
}

.location-item:hover {
  background-color: #fcfcfc;
  padding-left: 5px;
}

/* Labels and Text */
.location-item .item-label {
  color: #4a4a4a; /* Dark charcoal */
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Font Awesome Icons */
.location-icon {
  font-size: 1.15rem;
  color: #555555;
  width: 30px; /* Fixed width to align text evenly */
  text-align: center;
}

/* Dropdown Caret Icon */
.caret-icon {
  color: #1a3263; /* Navy blue caret matching the title */
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Optional: Rotate caret on hover to mimic interaction */
.location-item:hover .caret-icon {
  transform: rotate(180deg);
}

/* Map Wrapper Adjustments */
.map-wrapper img {
  object-fit: cover;
  min-height: 350px;
}
/* Section Background & Typography */
.specifications-section {
   font-family: "Open Sans", sans-serif;
  /* Faded background image mimicking the design */
  background: linear-gradient(rgba(248, 249, 250, 0.85), rgba(248, 249, 250, 0.85)), 
              url('images/Specifications/img/bg-img.png') center/cover no-repeat;
  color: #1a3263;
}

/* Heading Styling */
.specifications-section .section-title {
  color: #1a3263; /* Dark navy blue */
  letter-spacing: 1px;
  font-weight: 800;
}

/* Accordion Group Base - Dividers */
.specs-accordion-group {
  border-bottom: 2px solid #d4d4d4;
  margin-bottom: 0.5rem;
}

/* Individual Trigger Item */
.specs-item {
  cursor: pointer;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
  user-select: none;
}


/* Labels and Text */
.specs-item .item-label {
  color: #4a4a4a;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Font Awesome Icons on the left */
.specs-icon {
  font-size: 1.25rem;
  color: #333333;
  width: 60px; 
  text-align: center;
}

/* Dropdown Angle/Caret Icon */
.caret-icon {
  color: #4a4a4a; 
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

/* ROTATE CARET WHEN ACCORDION IS OPEN */
.specs-item:not(.collapsed) .caret-icon {
  transform: rotate(180deg);
  color: #d34c5a; /* Optional: Highlights the caret when open */
}

/* Gradient Know More Button (re-used to match design) */
.specifications-section .btn-gradient-cta {
  background: linear-gradient(90deg, #d34c5a 0%, #583c74 100%);
  color: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 6px;
  padding: 0.6rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.specifications-section .btn-gradient-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Fix image height consistency on tablet/desktop */
@media (min-width: 992px) {
  .specifications-section img {
    max-height: 450px;
    object-fit: cover;
  }
}
/* Typography & Base styling */
.footer-contact-section, 
.footer-disclaimer {
   font-family: "Open Sans", sans-serif;
}

.fw-extrabold {
  font-weight: 800;
}

/* Company Description Paragraph */
.company-desc {
  /* max-width: 900px; */
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Statistics Section */
.stats-row {
  max-width: 1000px;
}

.stat-icon {
  font-size: 1.5rem;
  color: #333;
}

.stat-number {
  color: #c0392b; /* Brick red */
  letter-spacing: -0.5px;
  font-size: 2.2rem;
}

.stat-label {
  font-size: 0.95rem;
}

/* Desktop Borders for Stats */
@media (min-width: 768px) {
  .stat-col {
    border-right: 1px solid #333333;
  }
  .border-end-0 {
    border-right: none !important;
  }
}

/* Mobile Borders for Stats */
@media (max-width: 767.98px) {
  .stat-col:nth-child(odd) {
    border-right: 1px solid #333333;
  }
}

/* Form Styles */
.form-wrapper {
  background-color: #f7f7f7 !important;
  border-radius: 4px;
}

.custom-input {
  background: transparent !important;
  border: none;
  border-bottom: 1.5px solid #333333;
  border-radius: 0;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333333;
}

.custom-input:focus {
  box-shadow: none;
  border-color: #c0392b;
}

.custom-input::placeholder {
  color: #333333;
  font-weight: 600;
}

/* Gradient Know More Button */
/*.btn-gradient-cta {
  background: linear-gradient(90deg, #d34c5a 0%, #583c74 100%);
  color: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 6px;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
}*/

/* Contact Info Section */
.contact-icon {
  color: #333333;
  font-size: 1.1rem;
}

/* Footer Disclaimer Text */
.disclaimer-text {
  font-size: 0.75rem;
  line-height: 1.6;
  max-width: 1100px;
}

.copyright-text {
  font-size: 0.8rem;
}

/* Section Base */
.how-it-works-section {
  font-family: "Open Sans", sans-serif;
  background-color: #f4f6f9 !important; /* Very soft grey/blue tint */
}

/* Headings */
.how-it-works-section .section-title {
  color: #1a3263; /* Navy Blue */
  letter-spacing: 1px;
}

/* Step Cards */
.step-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid transparent;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  border-top-color: #d34c5a;
}

/* Circular Step Numbers */
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a3263 0%, #3e3888 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #f4f6f9; /* Creates a cutout effect against the background */
  z-index: 2;
}

/* Connecting Dashed Line (Desktop Only) */
.connecting-line {
  position: absolute;
  top: 13%; /* Aligns with the middle of the step numbers */
  left: 10%;
  width: 80%;
  height: 2px;
  border-top: 2px dashed #b5b5b5;
  z-index: 1;
}

/* CTA Highlight Box */
.cta-highlight-box {
  position: relative;
  z-index: 3;
}

/* Reusing the Gradient CTA Button Styling */
.how-it-works-section .btn-gradient-cta {
  background: linear-gradient(90deg, #d34c5a 0%, #583c74 100%);
  color: #ffffff;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-it-works-section .btn-gradient-cta:hover {
  color: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(211, 76, 90, 0.4) !important;
}

/* Spacing fix for cards so the floating numbers don't get cut off */
.step-journey-row {
  margin-top: 2rem;
}
.step-card-wrap {
  padding-top: 30px; 
}
/* --- Mobile Footer Adjustments --- */

/* Add padding to the bottom of the body on mobile so content isn't hidden behind the fixed footer */
@media (max-width: 991.98px) {
  body {
    padding-bottom: 70px; /* Adjust based on the height of your mobile footer */
    font-size:14px;
    overflow-x:hidden;
  }
  /* html{
    overflow-x: hidden;
  } */
}

.mobile-bottom-bar {
  z-index: 1040; /* Sit just below Bootstrap modals */
}

/* Ensure the gradient button styling applies in the footer/modal if not already global */
.btn-gradient-cta {
  /*background: linear-gradient(90deg, #d34c5a 0%, #583c74 100%);*/
  background-color: #B3302A;
  color: #ffffff;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient-cta:hover {
  color: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(211, 76, 90, 0.4) !important;
  background-color: #B3302A;
}

/* --- Modal Styling --- */

/* Input styling specifically for the modal */
.custom-modal-input {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #333333;
  transition: all 0.2s ease;
}

.custom-modal-input:focus {
  background-color: #ffffff;
  border-color: #d34c5a;
  box-shadow: 0 0 0 0.25rem rgba(211, 76, 90, 0.25);
}

.custom-modal-input::placeholder {
  color: #adb5bd;
}

/* Close button positioning fix */
.modal-header .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (max-width:1366px){
    .title-badge {
    top: -29px;
    left: 33px;
    font-size: 28px;
}
}



/* Contact Section Base */
.contact-section {
  background-color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  color: #333333;
}

/* Form Container Styling */
.contact-form-card {
  background-color: #f4f3ee; /* Warm light beige background */
  border-radius: 4px;
}

/* Line-style Inputs */
.custom-input {
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1.5px solid #4a4a4a !important;
  border-radius: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  color: #333333 !important;
  box-shadow: none !important;
}

.custom-input::placeholder {
  color: #8c8c8c;
  font-size: 0.95rem;
}

.custom-input:focus {
  border-bottom-color: #a4ce00 !important; /* Highlights green on focus */
}

/* Submit Button */
.btn-submit {
  background-color: #b0e000; /* Lime green color matching image */
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #9ec900;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #9ec900;
  color: #000000;
}

/* Right Side Divider Line */
.divider {
  width: 50px;
  border-top: 1px solid #ccc;
  opacity: 1;
}

/* QR Code & Logo Images */
.qr-code {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 0;
  padding: 4px;
}

.rera-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.rera-link {
  color: #6c757d;
  text-decoration: none;
}

.rera-link:hover {
  text-decoration: underline;
  color: #333333;
}


/* Base Section Styling with Background Image */
.amenities-section {
  /* Replace with your background forest path image */
  background: url('images/forest-road-bg.png') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
}

/* Semi-transparent Dark Overlay */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); /* Adjust opacity as needed */
  z-index: 0;
}

/* Typography */


/* Know More Button (Lime Green Pill Style) */
.btn-know-more {
  background-color: #b0e000;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #9ec900;
  transition: all 0.3s ease;
}

.btn-know-more:hover {
  background-color: #9ec900;
  color: #000000;
}

/* Horizontal Divider Line */
.section-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 1;
}

/* Left Image Box */
.amenities-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Bullet Point & List Styling */
.amenities-list ul {
  padding-left: 0;
}

.amenities-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 22px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

/* Custom Bullet Point (Dot) */
.amenities-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}

/* Sub-text under Multipurpose Hall */
.amenities-list li.sub-text {
  margin-top: -14px;
  padding-left: 18px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.amenities-list li.sub-text::before {
  display: none; /* Hide dot for sub-text line */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .amenities-img-wrapper img {
    height: 300px;
  }
  
  .amenities-list li {
    margin-bottom: 14px;
  }
}


/* Base Section Styling */
.specs-section {
  background-color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  color: #333333;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  /*color: #2b2b2b;*/
  letter-spacing: -0.5px;
}

/* Image Card Styling */
.specs-img-card {
  overflow: hidden;
  max-height: 580px;
}

.specs-img-card img {
  border-radius: 2px;
}

/* Accordion Container resets */
.custom-specs-accordion .accordion-item {
  border: none;
  background-color: #f6f6f2; /* Light beige/cream background matching the image */
  border-radius: 0 !important;
}

/* Accordion Button Styling */
.custom-specs-accordion .accordion-button {
  background-color: #f6f6f2;
  color: #4a4a4a;
  font-size: 1rem;
  font-weight: 500;
  padding: 1.1rem 1.5rem;
  border: none;
  box-shadow: none !important;
  position: relative;
}

/* Override Bootstrap Accordion Focus / Active states */
.custom-specs-accordion .accordion-button:not(.collapsed) {
  background-color: #f6f6f2;
  color: #333333;
  box-shadow: none;
}

/* Custom Red Bullet Dot before Title */
.red-dot {
  width: 6px;
  height: 6px;
  background-color: #a83232; /* Deep red color */
  border-radius: 50%;
  display: inline-block;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Plus / Minus Custom Toggle Icons */
.custom-specs-accordion .accordion-button::after {
  content: '+';
  background-image: none !important; /* Removes Bootstrap arrow icon */
  font-size: 1.4rem;
  font-weight: 300;
  color: #a83232;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none !important;
}

/* Change icon to minus when expanded */
.custom-specs-accordion .accordion-button:not(.collapsed)::after {
  content: '—';
  font-size: 1.1rem;
}

/* Accordion Body Styling */
.custom-specs-accordion .accordion-body {
  background-color: #f6f6f2;
  padding: 0 1.5rem 1.2rem 2.8rem;
}

/* Sub-list Dash Bullet Points */
.specs-bullet-list li {
  position: relative;
  font-size: 0.88rem;
  color: #666666;
  margin-bottom: 8px;
  padding-left: 14px;
  line-height: 1.5;
}

.specs-bullet-list li:last-child {
  margin-bottom: 0;
}

.specs-bullet-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: #666666;
}

/* Responsive Fixes */
@media (max-width: 991.98px) {
  .specs-img-card {
    height: 380px !important;
  }
}


/* Base Section Styling */
.assurance-section {
  background-color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  color: #333333;
}

/* Header Branding */
.brand-subtitle {
  font-size: 1.1rem;
  color: #555555;
  letter-spacing: 0.5px;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-title {
  font-size: 1.6rem;
  font-weight: 400;
  color: #2b2b2b;
  letter-spacing: 0.5px;
}

/* Feature Icons */
.feature-icon {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Feature Description Text */
.feature-desc {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #666666 !important;
  min-height: 48px; /* Keeps top text equal across cards */
}

/* Outlined Box Titles */
.feature-box {
  border: 1px solid #d9d9d9;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.box-title {
  font-size: 1.05rem;
  font-weight: 400;
  color: #4a4a4a;
}

.box-title strong {
  font-weight: 700;
  color: #333333;
}

/* Optional hover polish for boxes */
.feature-card:hover .feature-box {
  border-color: #b0e000;
}

/* Lime Green Call to Action Button */
.btn-know-more {
  background-color: #c0e800; /* Vibrant lime green matching image */
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #a8cd00;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.btn-know-more:hover {
  background-color: #ad300;
  color: #000000;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .feature-desc {
    min-height: auto;
  }
}



/* Base Section with Nature/Grass Background Image */
.performance-section {
  /* Replace with your background image path */
  background: url('images/performance-bg.png') no-repeat center center/cover;
  min-height: 80vh;
  color: #ffffff;
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
}

/* Semi-transparent Dark Overlay */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); /* Adjust brightness if needed */
  z-index: 0;
}

/* Main Heading */

/* Lime Green Call to Action Button */
.btn-know-more {
  background-color: #b0e000; /* Matching vibrant lime green */
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #9ec900;
  transition: all 0.3s ease;
}

.btn-know-more:hover {
  background-color: #9ec900;
  color: #000000;
}

/* Description Text */
.description-text {
  font-size: 1rem;
  line-height: 1.65;
  /*color: rgba(255, 255, 255, 0.9);*/
 /* font-weight: 300;*/
}

/* Custom Bullet List */
.bullet-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 400;
  color: #ffffff;
}

.bullet-list li:last-child {
  margin-bottom: 0;
}

/* Custom White Bullet Dot */
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .description-text {
    font-size: 1rem;
  }
}


/* Section Base */
.pro-homes-section {
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  color: #333333;
}

/* Header Styles */


.section-title strong {
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555555 !important;
}

/* Large Initial Letter & Title Styling */
.letter-heading {
  align-items: flex-end;
}

.letter-wrapper {
  display: inline-block;
  line-height: 0.8;
}

.big-letter {
  font-size: 5rem;
  font-weight: 700;
  color: #333333;
  line-height: 0.8;
}

/* Green Circular Badge above Large Letter */
.badge-icon-circle {
  position: absolute;
  top: -24px;
  right: -48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #b0e000; /* Vibrant lime green border */
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* Remaining Text of Title */
.rest-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.5px;
}

/* Column Body Text */
.pro-description {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #666666;
  font-weight: 400;
  text-align: left;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .big-letter {
    font-size: 4rem;
  }
  
  .badge-icon-circle {
    width: 40px;
    height: 40px;
    top: -20px;
    right: -40px;
  }
  
  .badge-icon {
    width: 22px;
    height: 22px;
  }
}

/* Base Section with Light Gray Map Background Image */
.periphery-section {
  /* Replace with your styled light background map image */
  background: #f2f3f1 url('images/location-map.png') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  color: #333333;
  overflow: hidden;
}

/* Tablet Screens (991.98px and below) */
@media (max-width: 991.98px) {
    .periphery-section {
        background-image: url('images/location-map-mobile.png');
        background-position: center top;
        background-size: contain; /* Prevents image cutting */
        min-height: auto;
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .periphery-section .min-vh-75 {
        min-height: auto !important;
    }
}

/* Mobile Screens (575.98px and below) */
@media (max-width: 575.98px) {
    .periphery-section {
        background-image: url('images/location-map-mobile.png');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100% auto; /* Fits full width without cutting top/bottom */
        min-height: 60vh; /* Lets container adapt cleanly */
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .periphery-section .content-wrapper {
        padding-right: 0 !important;
        text-align: center;
    }

    .periphery-section .main-title {
        font-size: 2rem;
    }

    .periphery-section .subtitle {
        font-size: 1rem;
    }

    .periphery-section .map-graphic-wrapper {
        margin-top: 1.5rem;
    }
}

/* Typography Styles */
.subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #555555 !important;
  letter-spacing: -0.2px;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 500;
  color: #2b2b2b;
  letter-spacing: -0.5px;
  line-height: 1;
}

/* Lime Green "Get Directions" Button */
.btn-directions {
  background-color: #c0e800; /* Matching vibrant lime green */
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #ad300;
  transition: all 0.3s ease;
}

.btn-directions:hover {
  background-color: #a8cd00;
  color: #000000;
  transform: translateY(-2px);
}

/* Map Graphic Image Adjustments */
.map-graphic-wrapper {
  display: inline-block;
  max-width: 100%;
}

.map-graphic {
  max-height: 650px;
  width: auto;
  object-fit: contain;
}

/* Responsive Scaling */
@media (max-width: 991.98px) {
  .main-title {
    font-size: 2.8rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .map-graphic {
    max-height: 450px;
  }
}

@media (max-width: 575.98px) {
  .main-title {
    font-size: 2.2rem;
  }
}


/* Base Section Styling */
.township-section {
  background-color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  color: #333333;
}

/* Building Image Wrapper */
.building-img {
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
}

/* Typography Styles */


.section-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  color: #4a4a4a;
}

.township-section .description-text {
  font-size: 1rem;
  line-height: 1.65rem;
  color: #555555;
  font-weight: 400;
  text-align: justify;
}

/* Lime Green Call-to-Action Button */
.btn-know-more {
  background-color: #c0e800; /* Matching vibrant lime green */
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #a8cd00;
  transition: all 0.3s ease;
}

.btn-know-more:hover {
  background-color:#9ec900;
  color: #000000;
}

/* Top-Right Decorative Leaves Overlay */
.leaf-overlay {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 180px;
  z-index: 2;
  pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .description-text {
    font-size: 1rem;
    text-align: left;
  }

  .building-img {
    max-height: 400px;
  }
}


/* Section Base & Background Styling */
.floor-plans-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  color: #333333;
  overflow: hidden;
}

.bg-interior-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-interior-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

/* Title */
#aboutus .section-title {
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
}

/* Floor Plan White Floating Card */
.floor-card {
  background-color: #ffffff;
  border-radius: 4px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.plan-title {
  font-size: 1.15rem;
  font-weight: 400;
  color: #4a4a4a;
}

.plan-img-wrapper {
  max-width: 520px;
  width: 100%;
}

.plan-img {
  max-height: 340px;
  object-fit: contain;
}

/* Minimalist Line Arrows outside Card */
.custom-control-prev,
.custom-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #ffffff;
  z-index: 10;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  padding: 0;
}

.custom-control-prev {
  left: -60px;
}

.custom-control-next {
  right: -60px;
}

.custom-control-prev:hover,
.custom-control-next:hover {
  opacity: 1;
  color: #ffffff;
}

/* Custom Dots Styling */
.custom-dots {
  position: absolute;
  bottom: 20px;
  margin-bottom: 0;
}

.custom-dots button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #bbbbbb !important;
  border: none !important;
  opacity: 1 !important;
  margin: 0 4px !important;
}

.custom-dots button.active {
  background-color: #c02626 !important; /* Red indicator matching screenshot */
}

/* Bottom Oval Pill Button */
.btn-know-more {
  /*background-color: #ffffff;*/
  color: #333333;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid #d0d0d0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.btn-know-more:hover {
  background-color: #9ec900;
  color: #000000;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .custom-control-prev {
    left: 10px;
    color: #333333;
  }
  
  .custom-control-next {
    right: 10px;
    color: #333333;
  }

  .floor-card {
    min-height: 380px;
    padding: 2rem 1rem !important;
  }

  .plan-img {
    max-height: 250px;
  }
}