/* Minimal Custom CSS */
.rounded-8{border-radius: 8px;}    
/* Transparent navbar positioned over the background image */
.custom-navbar {
  background-color: transparent;
  padding: 0rem 0;
  position: absolute; /* Allows it to float over your background image */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030; /* Keeps navbar on top */
}



/* Logo Image Styling */
.navbar-logo-img {
  width: 220px;
  height: auto; /* Maintain aspect ratio */
}

/* Navigation Links */
.navbar-nav .nav-link {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.2rem;
  margin: 0 0.8rem;
  transition: color 0.3s ease-in-out;
}

/* Hover and Active states for links */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0faa92;
}

.navbar-nav .nav-link.active {
  border-bottom: 2px solid #0faa92;
}

/* Contact Number */
.contact-info {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-info i {
  color: #0faa92; /* Preserving the original icon color */
  font-size: 1.1rem;
}

/* Get In Touch Button */
.btn-get-in-touch {
  background: linear-gradient(90deg, #0faa92, #0c8a74);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1.5rem;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.btn-get-in-touch:hover {
  color: #ffffff;
  opacity: 0.9;
}

/* Hamburger to Cross Animation styling */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none; /* Removing default bootstrap SVG */
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 24px;
  width: 30px;
}

.navbar-toggler-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s linear;
}

/* Turns lines into a Cross (X) when menu is open */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}

/* Adds a slight dark background to the mobile menu so links remain readable over your Figma image */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    background-color: rgba(1, 27, 52, 0.95); 
    padding: 1rem;
    border-radius: 8px;
    margin-top: 15px;
  }
}

/* Variables & Typography */
:root {
  --brand-teal: #0faa92;
  --brand-dark: #011b34;

}
.text-teal { color: var(--brand-teal) !important; }
.font-serif { font-family: 'Playfair Display', serif; }

/* Hero Section Base */
.hero-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 120px; /* Leaves space for your transparent navbar */
  padding-bottom: 80px; 
}

/* Gradient Overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #011b34 35%, transparent 100%),
    linear-gradient(to top, #011b34 0%, transparent 20%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* WhatsApp Floating Card */
.whatsapp-float {
  position: absolute;
  bottom: 60px;
  right: 5%;
  background-color: rgba(1, 27, 52, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  z-index: 5;
  text-decoration: none;
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
}
.wa-icon-btn {
  background-color: var(--brand-teal);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: white;
}

/* Custom hero icon image */
.hero-icon-img {
  width: 2.5rem; /* Approx fs-1 size */
  height: 3rem;
  object-fit: contain;
}

/* =========================================
SEARCH BAR SPECIFIC STYLES
========================================= */

.search-bar-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -55px; /* Pulls the bar up to overlap the hero section */
}

/* Outer card matching the shadow and padding in the image */
.search-outer-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Inner bordered container */
.search-inner-border {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  background-color: #ffffff;
  /* Aligns items to stretch so the button fills the height */
  align-items: stretch; 
}

/* Custom Hover Dropdown Trigger */
.hover-dropdown {
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hover-dropdown:hover {
  background-color: #fdfdfd;
}

/* Typography inside the dropdown trigger */
.dropdown-label {
  font-size: 0.75rem;
  color: #888888;
  margin-bottom: 2px;
  display: block;
}

.dropdown-value {
  font-size: 0.9rem;
  color: #333333;
  font-weight: 500;
  display: block;
}

/* Dropdown Menu (Hidden by default, shown on hover) */
.hover-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1050;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

/* Trigger the menu on hover */
.hover-dropdown:hover .hover-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Items styling */
.hover-dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.2rem;
  color: #444;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background-color 0.2s;
}

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

/* Custom Select Option Padding & Spacing */
.search-select-input {
  cursor: pointer;
  font-size: 0.95rem;
  color: #061121;
  padding: 5px !important;
}

.search-bar-wrapper select option,
.search-outer-card select option,
.search-select-input option,
.form-select option {
  padding: 10px 14px;
  margin: 4px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #061121;
  background-color: #ffffff;
}

.search-select-input option:checked,
.search-select-input option:hover {
  background-color: #f0f4f8;
  color: #011b34;
}

/* Dark Navy Button */
.btn-search-custom {
  background-color: #011b34;
  color: #ffffff;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  transition: opacity 0.3s ease;
}

.btn-search-custom:hover {
  background-color: #000000; /* Darken background on hover */
  color: #ffffff;
}

/* Responsive borders */
@media (min-width: 992px) {
  .border-end-custom {
    border-right: 1px solid #e8e8e8;
  }
  .search-btn-wrapper {
    max-width: 260px; /* Controls the width of the button column */
  }
}

@media (max-width: 991.98px) {
  .border-bottom-custom {
    border-bottom: 1px solid #e8e8e8;
  }
}


/* =========================================
FEATURED PROJECTS SPECIFIC STYLES
========================================= */

.title-line {
  height: 1px;
  width: 40px;
  background-color: #e0d0b0; /* Light gold/tan line */
}

.section-subtitle {
  color: #cba365; /* Brand Gold */
  font-size: 0.75rem;
  letter-spacing: 2px;
}

/* Slider Buttons */
.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #555;
}
.slider-btn:hover {
  background-color: #f8f9fa;
  color: var(--brand-dark);
}

/* Property Carousel Track Styles */
.property-track-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.property-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.property-card-container {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 8px;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .property-card-container {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .property-card-container {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (min-width: 1200px) {
  .property-card-container {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* =========================================
UPDATED PROPERTY CARD STYLES
========================================= */

.property-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 380px; /* Ensures the card is tall enough to show the image */
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

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

/* Background image covers the whole card */
.card-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease; /* Smooth zoom effect on hover */
}

.property-card:hover .card-bg-img {
  transform: scale(1.05);
}

/* Dark gradient overlay anchored to bottom */
.card-gradient-overlay {
  position: absolute;
  inset: 0;
  /* Fades from dark navy at the bottom to transparent at the top */
  background: linear-gradient(to top, rgba(6, 17, 33, 1) 0%, rgba(6, 17, 33, 0.8) 35%, rgba(6, 17, 33, 0) 70%);
  z-index: 2;
}

/* Keep badge above the image and gradient */
.property-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #0faa92, #0c8a74);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 5px 12px;
  border-bottom-right-radius: 8px;
  z-index: 4;
  letter-spacing: 0.5px;
}

/* Content wrapper pushed to the bottom */
.card-content-overlay {
  margin-top: 200px;
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

/* Updated Card Typography - Pure White for better contrast */
.card-location { 
  font-size: 0.75rem; 
  color: #ffffff; 
}

.card-price-sub { 
  font-size: 0.7rem; 
  color: #ffffff; 
}

.card-config { 
  font-size: 0.75rem; 
  color: #ffffff; 
  font-weight: 500;
}

/* Arrow button inside the card */
.card-arrow-btn {
  background-color: var(--brand-teal); /* Use the brand's green/teal color */
  width: 32px;
  height: 32px;
  border-radius: 50%; /* Makes it a circle */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* Sets the icon color to white */
  transition: background-color 0.3s ease;
}
.property-card:hover .card-arrow-btn {
  background-color: #0c8a74; /* Darker green on hover */
}

/* View All Projects Button */
.btn-view-all {
  background-color: var(--brand-dark); /* Match search button background */
  color: #ffffff;
  letter-spacing: 0.5px;
  padding-left: 5rem;  /* Increased horizontal padding for more width */
  padding-right: 5rem; /* Increased horizontal padding for more width */
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.btn-view-all:hover {
  background-color: #000000; /* Darken on hover */
  color: #ffffff;
}
.btn-view-all i {
  color: var(--brand-teal); /* Green icon color */
  font-size: 0.9rem;
}

/* =========================================
WHY CHOOSE US SECTION STYLES
========================================= */

.why-choose-section {
  background-color: #011b34; /* Slightly darker navy to match the image */
  padding: 80px 0;
}

.why-card {
  border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle transparent border */
  border-radius: 8px;
  background-color: transparent;
  transition: all 0.3s ease;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(15, 170, 146, 0.4);
    transform: translateY(-5px);
}

.why-card:hover {
  background-color: rgba(255, 255, 255, 0.03); /* Slight highlight on hover */
  border-color: rgba(15, 170, 146, 0.4); /* Teal border on hover */
  transform: translateY(-5px);
}

.why-icon-wrapper {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon {
  font-size: 2.2rem;
  color: #0faa92; /* Brand Teal */
}

.why-title {
  font-size: 0.95rem;
  color: #ffffff;
}

.why-desc {
  font-size: 0.75rem;
  color: #a0aabf; /* Light grayish blue */
  line-height: 1.5;
}


/* =========================================
CITIES WE SERVE SECTION STYLES
========================================= */

.city-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  /* 16/9 aspect ratio forces perfect landscape boxes like in the image */
  aspect-ratio: 16 / 9; 
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.city-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
}

/* Smooth zoom effect on hover */
.city-card:hover .city-bg-img {
  transform: scale(1.05);
}

/* Dark gradient from bottom to transparent at top */
.city-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 17, 33, 0.8) 0%, rgba(6, 17, 33, 0.3) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

/* Content wrapper pushed to the bottom left */
.city-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.city-icon {
  color: #0faa92; /* Brand Teal */
  font-size: 1.2rem;
}

/* Dark Navy Explore Button */
.btn-explore {
  background-color: #011b34;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.7rem 2.5rem;
  border-radius: 6px;
  border: none;
  transition: opacity 0.3s ease;
}

.btn-explore:hover {
  background-color: #011b34;
  color: #ffffff;
  opacity: 0.9;
}

/* =========================================
STATISTICS & CTA SECTION STYLES
========================================= */

.stats-section {
  background-color: #011b34;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

/* Master Flexbox Container */
.stats-row-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.5rem;
}

/* Stats Grid Wrapper (Holds the 4 stats) */
.stats-grid-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 1.25rem;
}

/* Individual Stat Item */
.stats-item-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Stat Icon Image */
.stat-icon-img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  flex-shrink: 0;
}

/* Stat Number & Text */
.stat-number {
  color: #0faa92;
  font-size: 1.8rem;
  font-family: 'Poppins', serif;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.stat-line {
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 6px 0;
}

.stat-label {
  color: #e0e0e0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Vertical Divider (Desktop Only) */
.stats-divider {
  display: none; /* Hidden on mobile/tablet */
  width: 1px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* CTA Block */
.stats-cta-wrapper {
  flex-shrink: 0;
  text-align: start;
}

.cta-text {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

/* Gradient CTA Button */
.btn-consultation {
  background: linear-gradient(90deg, #0faa92, #0c8a74);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 0.85rem 1.4rem;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  display: inline-block;
  text-decoration: none;
}

.btn-consultation:hover {
  color: #ffffff;
  opacity: 0.9;
}

/* =========================================
RESPONSIVE BREAKPOINTS
========================================= */

/* Desktop Screens (>= 1200px): Everything in 1 Single Line */
@media (min-width: 1200px) {
  .stats-divider {
    display: block; /* Show divider only on desktop */
  }
}

/* Tablet Screens (768px - 1199px): 4 Stats in 1 row, CTA centered below */
@media (max-width: 1199.98px) {
  .stats-row-container {
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }

  .stats-grid-wrapper {
    width: 100%;
    justify-content: space-around;
  }

  .stats-cta-wrapper {
    text-align: center;
  }
}

/* Mobile Screens (< 768px): 2x2 Grid for Stats, CTA below */
@media (max-width: 767.98px) {
  .stats-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    width: 100%;
  }

  .stats-item-wrapper {
    justify-content: flex-start;
  }

  .stat-icon-img {
    width: 2.8rem;
    height: 2.8rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .cta-text {
    white-space: normal; /* Allows text to wrap comfortably on small screens */
  }

  .btn-consultation {
    width: 100%;
    text-align: center;
  }
}

/* Default desktop styles */
.my-container {
  display: flex;
  justify-content: flex-start; /* Aligned left */
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .my-container {
    justify-content: center; /* Aligned center ONLY on mobile */
    flex-direction: column; 
    align-items: center;
  }
}

.testimonials-section {
  background-color: #f8f9fa; /* Light gray background */
  padding: 60px 0;
  overflow: hidden;
}

/* Header styling */
.testimonial-header-container {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1b2738;
  letter-spacing: 1px;
  margin: 0 15px;
}

/* Responsive adjustment for the title on mobile */
@media (max-width: 576px) {
  .testimonial-title {
    font-size: 1rem; /* Slightly smaller font size */
    letter-spacing: 0.5px; /* Reduced letter spacing */
    margin: 0 10px; /* Reduced side margin */
  }
}

.title-line {
  height: 1px;
  width: 30px;
  background-color: #0faa92; /* Teal color from image */
}

/* Navigation Buttons */
.testimonial-controls {
  display: flex;
  gap: 10px;
}

@media (min-width: 768px) {
  .testimonial-controls {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.nav-arrow {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: transparent;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: #e5e7eb;
  color: #1b2738;
}

/* Slider Track */
.testimonial-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card-container {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 10px;
}

/* Responsive breakpoints for the cards */
@media (min-width: 768px) {
  .testimonial-card-container {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .testimonial-card-container {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* Card Styling */
.testi-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  border: 1px solid #f3f4f6;
}

.quote-icon {
  color: #0faa92; /* Exact teal quote color */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.testi-text {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}

.client-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1b2738;
  margin-bottom: 2px;
}

.client-location {
  font-size: 0.8rem;
  color: #9ca3af;
}


.partners-section {
  background-color: #ffffff;
  padding: 50px 0;
  overflow: hidden;
}

/* Header Styling */
.partners-header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.partners-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1b2738;
  letter-spacing: 2px;
  margin: 0 20px;
  text-transform: uppercase;
}

.partners-title-line {
  height: 1.5px;
  width: 40px;
  background-color: #0faa92;
}

/* Faint horizontal divider */
.partners-divider {
  border: 0;
  border-top: 1px solid #f3f4f6;
  margin-bottom: 30px;
}

/* Logos Infinite Marquee Carousel */
.partners-logo-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.partners-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 50px;
  animation: partnerMarquee 40s linear infinite;
  will-change: transform;
}

.partners-logo-wrapper:hover .partners-logo-track {
  animation-play-state: paused;
}

.partner-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.partner-logo {
  height: 52px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(10%) opacity(0.9);
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-logo-item:hover .partner-logo,
.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

@keyframes partnerMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}



.footer-section {
  background-color: #011b34;
  color: #ffffff; /* Changed text color to white */
  padding-top: 40px; /* Reduced from 60px */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-logo {
  max-width: 160px; /* Slightly reduced logo size */
}

.footer-text {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 15px; /* Reduced gap */
}

.teal-text {
  color: #0faa92;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 15px; /* Reduced gap */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-heading-small {
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 10px; /* Reduced gap */
  font-weight: 600;
}

/* Social Links - Icons unchanged */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #0faa92;
  border-radius: 50%;
  color: #0faa92; 
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #0faa92;
  color: #041222;
}

/* Quick Links */
.footer-links li {
  margin-bottom: 8px; /* Reduced gap */
}

.footer-links a {
  color: #ffffff; /* Changed link color to white */
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0faa92;
}

/* Contact Info */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px; /* Reduced gap */
  font-size: 0.85rem;
}

.footer-contact i {
  color: #0faa92;
  margin-top: 4px;
  margin-right: 10px;
  width: 16px;
  text-align: center;
}

.btn-submit-footer {
  background-color: #0faa92;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  border-radius: 4px;
  padding: 8px; /* Reduced padding on button */
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.btn-submit-footer:hover {
  background-color: #0c8a74;
  color: #ffffff;
}

/* New styles for the footer map image */
.footer-map-img {
  border-radius: 8px;
  border: 2px solid rgba(15, 170, 146, 0.3);
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  max-height: 220px; /* Reduces the height of the map image */
  object-fit: center;
  cursor: pointer;
}

.footer-map-img:hover {
  transform: scale(1.03);
  border-color: #0faa92;
  box-shadow: 0 5px 20px rgba(15, 170, 146, 0.25);
}

/* Vertical Borders for Desktop */
@media (min-width: 992px) {
  .border-lg-end {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .pad-lg-left {
    padding-left: 2rem !important; /* Reduced padding between columns */
  }
}

/* Bottom Copyright Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 30px; /* Reduced gap */
  padding: 15px 0; /* Reduced height */
  font-size: 0.8rem;
}

.footer-bottom a {
  color: #ffffff; /* Changed bottom link color to white */
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #0faa92;
}




/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Apply Poppins globally to these sections */
.project-showcase,
.project-nav-wrapper,
.project-header-section,
.project-content-section,
.custom-card,
.sticky-sidebar,
.faq-item {
  font-family: 'Poppins', sans-serif;
}

.project-showcase {
  /* Removes the empty space before the content and navigation. */
  padding: 50px 0 30px 0; /* Added bottom padding to create space */
  background-color: #ffffff;
  position: relative; 
}

/* --- Image Slider Styles --- */
.custom-carousel {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 8;
}

.custom-carousel .carousel-inner, 
.custom-carousel .carousel-item {
  height: 100%;
}

.custom-carousel img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Hide controls by default */
.custom-carousel .carousel-control-prev,
.custom-carousel .carousel-control-next {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  width: 10%;
}

/* Show controls ONLY on hover */
.custom-carousel:hover .carousel-control-prev,
.custom-carousel:hover .carousel-control-next {
  opacity: 1;
}

/* Style the control buttons like the dark circles in the image */
.custom-carousel-btn {
  background-color: rgba(1, 27, 52, 0.7); /* RGB for #011b34 */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.custom-carousel-btn i {
  font-size: 1rem;
}

/* --- Form Card Styles --- */
.expert-form-card {
  background-color: #f4f6f9;
  border-radius: 12px;
  padding: 20px;

}

@media (min-width: 992px) {
  .expert-form-card {
  
  }
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #011b34; /* Updated to Dark Background */
  margin-bottom: 15px;
}

.expert-form .form-control, 
.expert-form .form-select {
  border-radius: 8px;
  border: 1px solid #ced4da;
  padding: 10px 15px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  background-color: #ffffff;
  color: #333;
}

.expert-form .form-control:focus, 
.expert-form .form-select:focus {
  border-color: #0faa92; /* Updated to Light Green */
  box-shadow: 0 0 0 0.2rem rgba(15, 170, 146, 0.15); /* RGB for #0faa92 */
}

.expert-form .form-control::placeholder {
  color: #9ca3af;
}

/* Phone Input Group Layout */
.phone-group {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.phone-group .form-select {
  width: 35%;
  margin-bottom: 0;
}

.phone-group .form-control {
  width: 65%;
  margin-bottom: 0;
}

/* Small text beneath text area */
.trust-badges {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 15px;
  padding: 0 5px;
}

.trust-badges i {
  color: #0faa92; /* Updated to Light Green */
  margin-right: 5px;
}

/* Submit Button */
.btn-theme-submit {
  background-color: #0faa92; /* Updated to Light Green */
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  transition: background-color 0.3s;
  margin-bottom: 12px;
}

.btn-theme-submit:hover {
  background-color: #0c8d79; /* Slightly darker shade for hover */
  color: white;
}

/* Download Brochure Button */
.btn-brochure {
  background-color: transparent;
  color: #011b34; /* Updated to Dark Background */
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #ced4da;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-brochure:hover {
  border-color: #0faa92; /* Updated to Light Green */
  color: #0faa92;
  background-color: white;
}

.btn-brochure i {
  color: #0faa92; /* Updated to Light Green */
}

/* Desktop-specific height reduction */
@media (min-width: 992px) {
  .expert-form-card {
    padding: 20px;
  }
  .form-title {
    margin-bottom: 15px;
  }
  .expert-form .form-control,
  .expert-form .form-select,
  .phone-group,
  .btn-theme-submit {
    margin-bottom: 12px;
  }
}

/* --- Sticky Navigation Bar --- */
.project-nav-wrapper {
  background-color: #011b34; /* Updated to Dark Background */
  position: sticky;
  top: 0;
  z-index: 1020; 
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);

  margin-bottom: 10px;
}

@media (max-width: 767.98px) {
  .project-nav-wrapper .container-fluid {
    padding-left: 0;
    padding-right: 0;

  }
}
.project-nav {
  display: flex;
  gap: 1rem; 
  padding: 0; 
  margin: 0;
  list-style: none;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}

.project-nav::-webkit-scrollbar {
  display: none; 
}

.project-nav a {
  display: block; 
  color: #e0e7ff; 
  text-decoration: none;
  font-size: 0.95rem;
  padding: 12px 20px; 
  transition: color 0.3s;
}

.project-nav a:hover {
  color: #ffffff;
}

.project-nav a.active {
  color: #ffffff;
  font-weight: 700; 
}

/* --- Project Header Section --- */
.project-header-section {
  padding: 25px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.project-logo-box {
  width: 90px;
  height: 90px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.project-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.project-title {
  font-size: 1.4rem;
  font-weight: 600; /* Increased weight for Poppins */
  color: #111827;
  margin-bottom: 2px;
}

.project-location, .project-developer {
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 2px;
}

/* Tags */
.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag-rera {
  background-color: #011b34; /* Updated to Dark Background */
  color: #ffffff;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 500;
}

.tag-gray {
  background-color: #f3f4f6; 
  color: #374151;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 4px;
}

/* Price Area */
.price-label {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2px;
}

.price-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0faa92; /* Updated to Light Green */
  margin-bottom: 2px;
}

.price-note {
  font-size: 0.85rem;
  color: #000000;
}

.project-content-section {
  padding: 40px 0;
  background-color: #f8f9fa;
}

/* --- Card Standard Styling --- */
.custom-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #e5e7eb;
  margin-bottom: 30px;
  overflow: hidden;
}

.custom-card-header {
  background-color: #011b34; /* Updated to Dark Background */
  color: #ffffff;
  padding: 12px 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.custom-card-body {
  padding: 25px;
}

/* --- Left Column: Stats Grid --- */
.stat-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.stat-icon {
  color: #011b34; /* Updated to Dark Background */
  font-size: 1.2rem;
  margin-top: 3px;
  width: 24px;
  text-align: center;
}
.stat-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}
.stat-value {
  font-size: 0.85rem;
  color: #4b5563;
}

/* --- Left Column: Text Section & Read More --- */
.about-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #374151;
}

.read-more-btn {
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  text-align: center;
  margin-top: 15px;
  cursor: pointer;
}
.read-more-btn:hover {
  text-decoration: underline;
}

/* --- Left Column: Floor Plan Section --- */
.filter-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.fp-pill {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  color: #111827;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.fp-pill.active {
  background-color: #011b34; /* Updated to Dark Background */
  color: #ffffff;
  border-color: #011b34;
}

/* Floor Plan Slider */
.fp-slider-wrapper {
  position: relative;
}

.fp-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}
.fp-slider-track::-webkit-scrollbar {
  display: none;
}

.fp-card {
  flex: 0 0 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
}

@media (min-width: 768px) {
  .fp-card {
    flex: 0 0 calc(50% - 10px); 
  }
}

.fp-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  min-height: 45px;
  margin-bottom: 15px;
}

/* Blurred Image Area */
.fp-image-box {
  position: relative;
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
  border-radius: 4px;
  overflow: hidden;
}

.fp-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: blur(5px);
  opacity: 0.7;
}

.fp-coming-soon {
  position: absolute;
  font-weight: 700;
  color: #000000;
  text-align: center;
  z-index: 2;
  font-size: 1rem;
  line-height: 1.3;
}

/* Floor Plan Details & Buttons */
.fp-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.fp-detail-label {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.fp-detail-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.fp-btn {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-fp-blue {
  background-color: #011b34; /* Updated to Dark Background */
  color: #ffffff;
  border: none;
}
.btn-fp-blue:hover {
  background-color: #011222; /* Slightly darker shade for hover */
}

.btn-fp-outline {
  background-color: #ffffff;
  color: #011b34; /* Updated to Dark Background */
  border: 1px solid #d1d5db;
}
.btn-fp-outline:hover {
  border-color: #0faa92; /* Updated to Light Green */
}

/* Slider Arrows */
.fp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 10;
}
.fp-arrow.left { left: -15px; }
.fp-arrow.right { right: -15px; }


/* --- Right Column: Sticky Sidebar --- */
.sticky-sidebar {
  position: sticky;
  top: 80px;
  align-self: start; 
}

.sidebar-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.gallery-main-img {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  object-fit: cover;
}
.gallery-sub-imgs {
  display: flex;
  gap: 10px;
}
.gallery-sub-imgs img {
  width: calc(50% - 5px);
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
}

.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-choose-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.85rem;
  color: #374151;
  margin-bottom: 15px;
  line-height: 1.5;
}
.why-choose-list li::before {
  content: '\f058'; 
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #0faa92; /* Updated to Light Green */
  font-size: 1.1rem;
}

/* --- Sidebar Buttons --- */
.sidebar-btn-group {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-btn {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.sidebar-btn-blue {
  background-color: #011b34; /* Updated to Dark Background */
  color: #ffffff;
  border: 1px solid #011b34;
}
.sidebar-btn-blue:hover {
  background-color: #011222; /* Slightly darker shade for hover */
}

.sidebar-btn-outline {
  background-color: #ffffff;
  color: #011b34; /* Updated to Dark Background */
  border: 1px solid #d1d5db;
}

/* --- Table Customization --- */
.custom-table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
}

.custom-table th {
  background-color: #ffffff;
  font-weight: 700;
  color: #111827;
  padding: 12px 20px;
  border-bottom: 1px solid #e5e7eb;
  border-top: none;
  font-size: 0.95rem;
}

.custom-table td {
  padding: 12px 20px;
  color: #374151;
  font-size: 0.9rem;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
}

.custom-table tr:last-child td {
  border-bottom: none;
}

.price-note-text {
  font-size: 0.85rem;
  color: #111827;
  margin-top: 10px;
  padding: 0 20px;
}

/* --- Dark CTA Button --- */
.btn-dark-cta {
  background-color: #404040; 
  color: #ffffff;
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.btn-dark-cta:hover {
  background-color: #262626;
  color: #ffffff;
}

.btn-dark-cta a, .btn-dark-cta span {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

/* --- Amenities Section Styles --- */
.amenity-category-title {
  color: #011b34; /* Updated to Dark Background */
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 35px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.custom-card-body > .amenity-category-title:first-child {
  margin-top: 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.amenity-icon-box {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center; 
  font-size: 1.4rem;
  color: #0faa92; /* Updated to Light Green */
  flex-shrink: 0;
}

.amenity-text {
  font-size: 0.85rem;
  color: #4b5563;
  font-weight: 500;
  line-height: 1.3;
}

/* Location Map & Site Plan Styles */
.map-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.siteplan-wrapper {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.siteplan-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.zoom-controls {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.zoom-btn {
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.zoom-btn:hover {
  background-color: #d1d5db;
}

.zoom-btn + .zoom-btn {
  border-left: 1px solid #cbd5e1;
}

/* --- About Developer Styles --- */
.dev-header-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.dev-logo-box {
  width: 100px;
  height: 100px;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  background-color: #ffffff;
}

.dev-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.dev-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.dev-stats {
  font-size: 0.85rem;
  color: #374151;
  text-transform: uppercase;
  line-height: 1.6;
}

.dev-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 15px;
}

.dev-read-more {
  color: #011b34; /* Updated to Dark Background */
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
}

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

/* --- FAQ Hover Accordion Styles --- */
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  margin-bottom: 10px;
  background-color: #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #374151;
  cursor: default;
}

.faq-icon {
  color: #011b34; /* Updated to Dark Background */
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0; 
  padding: 0 20px;
  opacity: 0;
  color: #4b5563;
  font-size: 0.85rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* Hover Effects for FAQ */
.faq-item:hover {
  border-color: #011b34; /* Updated to Dark Background */
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.faq-item:hover .faq-question {
  color: #111827;
  font-weight: 600;
}

.faq-item:hover .faq-answer {
  max-height: 200px; 
  padding: 0 20px 16px 20px; 
  opacity: 1;
}

.faq-item:hover .faq-icon {
  transform: rotate(90deg); 
}

/* --- Similar Projects Styles --- */
.similar-projects-wrapper {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}

.similar-projects-wrapper::-webkit-scrollbar {
  display: none; 
}

.sp-card {
  flex: 0 0 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

@media (min-width: 576px) {
  .sp-card { flex: 0 0 calc(50% - 10px); } 
}

@media (min-width: 992px) {
  .sp-card { flex: 0 0 calc(33.333% - 10px); } 
}

.sp-img-box {
  width: 100%;
  height: 150px;
}

.sp-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-body {
  padding: 15px;
  flex-grow: 1;
}

.sp-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

.sp-location {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 15px;
}

.sp-specs {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
}

.sp-footer {
  border-top: 1px solid #e5e7eb;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sp-price-box {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sp-price-label {
  font-size: 0.75rem;
  color: #111827;
  font-weight: 600;
}

.sp-price-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: #111827;
}

.btn-more-details {
  background-color: #011b34; /* Updated to Dark Background */
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-more-details:hover {
  background-color: #011222; /* Slightly darker shade for hover */
  color: #ffffff;
}


/* =========================================
FAQ SECTION STYLES
========================================= */
.faq-section {
  padding: 80px 0;
  background-color: #f8fafc; /* Soft background to make white FAQ boxes pop */
  counter-reset: faq-counter; /* Initialize a counter for numbering */
}

/* --- Section Header Styling --- */
.testimonial-header-container {
  display: flex;
  /* Removed justify-content: center; to allow the HTML class justify-content-start to take effect */
  width: 100%;
}

.title-line {
  width: 50px;
  height: 2px;
  background-color: #5ccbaf; /* Teal accent */
  margin: 0 15px;
}

.testimonial-title {
  font-size: 2rem;
  font-weight: 700;
  color: #040d1a; /* Navy */
  letter-spacing: 1px;
}

/* --- FAQ Hover Accordion Styles --- */
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 12px;
  background-color: #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.faq-question {
  padding: 18px 25px;
  display: flex;
  align-items: flex-start; /* Align to top for multi-line questions */
  gap: 10px; /* Space between number and question text */
  font-size: 1rem; /* Slightly adjusted font size */
  font-weight: 600;
  color: #040d1a;
  cursor: default;
}

/* Add numbering to questions */
.faq-question::before {
  counter-increment: faq-counter;
  content: counter(faq-counter) "."; /* Displays 1., 2., etc. */
  color: #5ccbaf; /* Teal color for the number */
  font-weight: 700;
  flex-shrink: 0; /* Prevent number from shrinking */
  margin-top: 2px; /* Slight adjustment for vertical alignment */
  font-size: 0.95rem; /* Slightly smaller than question text */
}

/* Forces the question text to align left strictly */
.faq-question span {
  text-align: left; 
  flex: 1; /* Takes up available space */
  padding-right: 20px; /* Prevents text from overlapping the arrow */
}

.faq-icon {
  color: #5ccbaf;
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0; /* Prevents the arrow from squishing */
  margin-top: 2px; /* Align with the number and question text */
}

/* Forces the answer text to align left strictly */
.faq-answer {
  max-height: 0; /* Hidden by default */
  padding: 0 25px 0 45px; /* Adjust left padding to align with question text after number */
  opacity: 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: left; 
  transition: all 0.3s ease;
}

/* --- Hover Effects --- */
.faq-item:hover {
  border-color: #5ccbaf;
  box-shadow: 0 8px 15px rgba(92, 203, 175, 0.1);
}

.faq-item:hover .faq-question {
  color: #5ccbaf;
}

.faq-item:hover .faq-answer {
  max-height: 250px; /* Expands to reveal text */
  padding: 0 25px 20px 45px; /* Adds bottom padding, maintains left padding */
  opacity: 1;
}

.faq-item:hover .faq-icon {
  transform: rotate(90deg); /* Points arrow down */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .testimonial-title {
    font-size: 1.4rem;
    text-align: center;
  }
  .title-line {
    width: 30px;
    margin: 0 10px;
  }
  .faq-question {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
  .faq-question::before {
    font-size: 0.85rem; /* Smaller number on mobile */
  }
  .faq-answer {
    font-size: 0.9rem;
    padding: 0 20px 0 40px; /* Adjust padding for mobile */
  }
  .faq-item:hover .faq-answer {
    padding: 0 20px 20px 40px; /* Adjust padding for mobile */
  }
}



/* =========================================
PREMIUM CONTACT SECTION STYLES
========================================= */
:root {
  --brand-navy: #011b34; /* Dizicode Dark */
  --brand-teal: #0faa92; /* Dizicode Light Green */
  --brand-teal-glow: rgba(15, 170, 146, 0.4); /* #0faa92 with 40% opacity */
}

.premium-contact-section {
  position: relative;
  overflow: hidden;
  background-color: #f0f4f8; /* Soft page background */
}

/* Abstract Background Decor */
.bg-shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--brand-teal-glow) 0%, transparent 70%);
  z-index: 0;
}

/* --- Unified Card Wrapper --- */
.contact-wrapper {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(1, 27, 52, 0.08); /* Adjusted shadow to match dark color */
  overflow: hidden;
  position: relative;
  z-index: 1;
  transform: translateY(30px);
  opacity: 0;
  animation: floatUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes floatUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --- Left Side: Dark Info Panel --- */
.info-panel {
  background-color: var(--brand-navy);
  color: #ffffff;
  padding: 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Glowing orb inside the dark panel */
.info-panel::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--brand-teal);
  filter: blur(100px);
  opacity: 0.35;
  border-radius: 50%;
  pointer-events: none;
}

.info-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.info-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--brand-teal);
  margin-top: 15px;
  border-radius: 2px;
}

.info-desc {
  color: #a0aec0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Updated: Hover styles made permanent */
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08); /* Brighter default background */
  border: 1px solid rgba(15, 170, 146, 0.3); /* Teal border permanently applied */
}

/* Updated: Hover styles made permanent */
.detail-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-teal); /* Solid teal background */
  color: var(--brand-navy); /* Dark navy icon color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.detail-text h6 {
  margin: 0 0 5px 0;
  font-size: 0.9rem;
  color: var(--brand-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-text {
  min-width: 0;
  flex: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.detail-text p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-word;
}
/* --- Right Side: Modern Form Panel --- */
.form-panel {
  padding: 32px;
  background-color: #ffffff;
}

.form-header-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 35px;
}

/* =========================================
Floating Border-Label Input Styling
========================================= */
.material-input-group {
  position: relative;
  margin-bottom: 25px;
}

.material-input {
  width: 100%;
  background-color: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 1rem;
  color: var(--brand-navy);
  transition: all 0.3s ease;
  outline: none;
}

/* The label that acts as the placeholder */
.material-label {
  position: absolute;
  left: 15px;
  top: 18px;
  color: #9ca3af;
  pointer-events: none;
  transition: all 0.3s ease;
  background-color: transparent;
  padding: 0 5px;
  font-size: 1rem;
  margin: 0;
}

textarea.material-input {
  resize: none;
}

/* When input is focused */
.material-input:focus {
  background-color: #ffffff;
  border-color: var(--brand-teal);
  box-shadow: 0 10px 20px rgba(15, 170, 146, 0.15); /* Transparent #0faa92 */
}

/* Trigger float on focus OR when there is text typed inside */
.material-input:focus ~ .material-label,
.material-input:not(:placeholder-shown) ~ .material-label {
  top: -10px; 
  font-size: 0.8rem;
  color: var(--brand-teal);
  background-color: #ffffff; 
  font-weight: 600;
}

.material-input:not(:placeholder-shown) {
  background-color: #ffffff;
}

/* Premium Button Styling */
.btn-premium {
  background: linear-gradient(135deg, var(--brand-teal) 0%, #0c8d79 100%); /* Adjusted gradient using Dizicode green */
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 30px;
  border: none;
  border-radius: 12px;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--brand-navy);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-premium:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-premium:hover {
  color: var(--brand-teal);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(1, 27, 52, 0.2);
}

.btn-premium i {
  transition: transform 0.3s ease;
}

.btn-premium:hover i {
  transform: translateX(6px) scale(1.1);
}

/* =========================================
Integrated Edge-to-Edge Map Styling
========================================= */
.contact-map-wrapper {
  width: 100%;
  height: 350px;
  display: block;
  border-top: 1px solid #e2e8f0;
  position: relative;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Responsive padding for smaller screens */
@media (max-width: 991.98px) {
  .info-panel, .form-panel {
    padding: 40px 30px;
  }
  .contact-map-wrapper {
    height: 300px; /* Slightly shorter on mobile screens */
  }
  .whatsapp-float {
    position: fixed;
    background-color: rgb(1 27 52);
    z-index: 999;
    bottom: 0px;
    right: 0;
    left: 0;
    padding: 12px 16px;
    border-radius: 0px;
    justify-content: center;
  }
}


/* =========================================
ENQUIRY CTA SECTION V2 STYLES
========================================= */
.enquiry-cta-section {
  position: relative;
  padding: 100px 0;
  background-color: #011b34; /* Dark background color */
  overflow: hidden; /* Hide any overflow from pseudo-elements */
}

/* Subtle radial gradient for background texture */
.enquiry-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(15, 170, 146, 0.05) 0%, transparent 70%); /* Subtle teal glow */
  z-index: 0; /* Behind content */
}

.enquiry-overlay {
  position: absolute;
  inset: 0;
  /* Removed: This overlay is no longer needed without a background image */
  display: none;
}

.enquiry-content-wrapper {
  position: relative;
  z-index: 2;
}

.enquiry-card {
  background-color: #ffffff; /* White background for the card */
  border: 1px solid #0faa92;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15); /* Lighter shadow for a white card */
}

.enquiry-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #061121; /* Dark navy for readability on white card */
  margin-bottom: 25px;
}

/* Floating Label Inputs - Adapted for dark background */
.material-input-group {
  position: relative;
  margin-bottom: 20px;
}

.material-input {
  width: 100%;
  background-color: #f8f9fa; /* Very light gray for input background */
  border: 1px solid #e2e8f0; /* Light gray border */
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #061121; /* Dark navy for input text */
  transition: all 0.3s ease;
  outline: none;
}

.material-label {
  position: absolute;
  left: 12px;
  top: 15px;
  color: #6c757d; /* Darker gray for readability on light background */
  pointer-events: none;
  transition: all 0.3s ease;
  background-color: transparent;
  padding: 0 5px;
  font-size: 0.9rem;
  margin: 0;
}

textarea.material-input {
  resize: none;
  min-height: 90px;
}

.material-input:focus {
  background-color: #ffffff; /* White background on focus */
  border-color: var(--brand-teal);
}

/* When label floats up */
.material-input:focus ~ .material-label,
.material-input:not(:placeholder-shown) ~ .material-label {
  top: -9px;
  font-size: 0.75rem;
  color: var(--brand-teal);
  background: #ffffff; /* Match card background */
  font-weight: 600;
}

.material-input:not(:placeholder-shown) {
  background-color: #ffffff; /* White background when filled */
}




.btn-more-details:hover {
  background-color: #040a14;
  color: #ffffff;
}

/* --- Brochure download modal --- */
.brochure-modal .modal-content {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(4, 18, 34, 0.28);
}

.brochure-modal .modal-header {
  border-bottom: 0;
  padding: 24px 24px 8px;
}

.brochure-modal .modal-body {
  padding: 8px 24px 26px;
}

.brochure-modal .form-control {
  min-height: 48px;
  border-radius: 8px;
}

.brochure-modal .form-control:focus {
  border-color: #5ccbaf;
  box-shadow: 0 0 0 0.2rem rgba(92, 203, 175, 0.18);
}

/* Blur the page while leaving the modal crisp and readable. */
.modal-backdrop.show {
  opacity: 0.5;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@media (max-width: 575.98px) {
  .brochure-modal .modal-dialog {
    margin: 16px;
  }

  .brochure-modal .modal-header {
    padding: 20px 20px 6px;
  }

  .brochure-modal .modal-body {
    padding: 6px 20px 22px;
  }
}

.bg-dark{background-color: #011b34 !important;}
