/* =============================
    Bangalore Projects - style.css
    Premium Real Estate Aggregator
    Domain: bangalore-project.in
    ============================= */

/* =============================
    BANGALORE PROJECTS COLOR THEME
    - Primary: #1B2A4A (Deep Navy)
    - Accent: #C8A456 (Warm Gold)
    - Clean, premium, modern aesthetic
============================= */

:root {
  /* Primary Colors - Deep Navy */
  --whiteland-blue: #1B2A4A;
  --whiteland-blue-dark: #0F1C33;
  --whiteland-blue-light: #2A3F6A;
  --whiteland-navy: #0F1C33;

  /* Secondary/Accent Colors - Gold */
  --whiteland-accent: #C8A456;
  --whiteland-gold: #C8A456;

  /* Gradient combinations */
  --gradient-whiteland-blue: linear-gradient(135deg, #2A3F6A 0%, #1B2A4A 50%, #0F1C33 100%);
  --gradient-whiteland-dark: linear-gradient(135deg, #1B2A4A 0%, #0F1C33 100%);

  /* Text Colors */
  --whiteland-text-dark: #1B2A4A;
  --whiteland-text-light: #ffffff;

  /* Background Colors */
  --whiteland-bg-light: #f5f5f5;
  --whiteland-bg-cream: #f8f7f4;

  /* Legacy compatibility */
  --m3m-green: #1B2A4A;
  --m3m-green-dark: #0F1C33;
  --m3m-green-light: #2A3F6A;
  --m3m-blue: #1B2A4A;
  --m3m-blue-dark: #0F1C33;
  --m3m-blue-light: #2A3F6A;
  --gradient-m3m-green: linear-gradient(135deg, #1B2A4A 0%, #0F1C33 100%);
  --gradient-m3m-blue: linear-gradient(135deg, #1B2A4A 0%, #0F1C33 100%);
  --gradient-m3m-mix: linear-gradient(135deg, #2A3F6A 0%, #0F1C33 100%);
  --m3m-accent: #C8A456;
  --m3m-text-dark: #1B2A4A;
  --m3m-text-light: #ffffff;
  --m3m-bg-light: #f5f5f5;
  --m3m-bg-cream: #f8f7f4;
  --m3m-primary: #1B2A4A;
  --m3m-gold: #C8A456;
  --m3m-cream: #f8f7f4;
  --m3m-dark: #0F1C33;
  --gradient-gold: linear-gradient(135deg, #C8A456 0%, #A88B3C 50%, #8B7030 100%);
}

/* =============================
    GLOBAL RESETS & BASE STYLES
============================= */

* {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html,
body {
  overflow-x: hidden;
  /* background-color: black; */
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* =============================
    LENIS SMOOTH SCROLL STYLES
============================= */

/* Lenis smooth scroll base styles */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* Offset scroll position for fixed header */
html {
  scroll-padding-top: 80px;
}

/* Section scroll margin for anchor links */
section[id] {
  scroll-margin-top: 80px;
}

a {
  color: gray;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0.55vw 0;
  line-height: 140%;
  font-weight: 500;
}

p {
  margin: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  font-family: Montserrat, sans-serif;
  color: #fff;
}

.text-center {
  text-align: center;
  padding: 10px 15px;
  color: grey;
}

/* Utility */
.container {
  width: 100%;
  margin: 0 auto;
}

/* Responsive Visibility Classes */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  /* Mobile slider for sustainability section */
  .mobile-only.simple-slider .slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

/* =============================
    HEADER & NAVBAR
============================= */

header {
  display: flex;
  flex-direction: row;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  position: fixed;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(27, 42, 74, 0.08);
  border: none;
  transition: all 0.4s ease;
}

header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 12px 40px;
  gap: 100px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Text-based Logo */
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none !important;
  gap: 2px;
}

.logo-main {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1B2A4A;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.logo-sub {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #C8A456;
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* Footer text logo */
.footer-logo-text {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #C8A456;
  letter-spacing: 3px;
}

#mainNav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hamburger {
  justify-self: end;
}

header .navbar ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
}

.nav-links li {
  display: flex;
  align-items: center;
}

/* Add vertical divider after each nav item except the last */
.nav-links li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0 25px;
  opacity: 1;
}

.nav-links li a {
  color: #1B2A4A;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links li a:hover {
  color: #C8A456;
}

.logo img {
  filter: none;
  width: auto;
  height: 60px;
}

/* Hamburger button (hidden on desktop) */
.hamburger {
  font-size: 26px;
  cursor: pointer;
  display: none;
  background: transparent;
  border: none;
  padding: 8px 12px;
}

.hamburger-icon {
  display: inline-block;
  line-height: 1;
  color: #1a1a1a;
}

/* =============================
    MOBILE NAVIGATION RESPONSIVE
============================= */

@media (max-width: 992px) {

  /* Show hamburger button on mobile */
  .hamburger {
    display: block;
    z-index: 1001;
  }

  /* Hide nav by default on mobile */
  #mainNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
  }

  /* Show nav when active */
  #mainNav .nav-links.show {
    right: 0;
  }

  .nav-links.show {
    display: flex !important;
  }

  /* Make nav links show as parent */
  #mainNav:has(.nav-links.show) {
    right: 0;
  }

  /* Mobile nav links layout */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    padding: 20px 0;
  }

  .nav-links.show {
    display: flex;
    flex-direction: column;
  }

  /* Mobile nav list items */
  .nav-links li {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  /* Remove horizontal dividers on mobile */
  .nav-links li:not(:last-child)::after {
    display: none;
  }

  /* Mobile nav link styling */
  .nav-links li a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    display: block;
    width: 100%;
  }

  .nav-links li a:hover {
    color: var(--whiteland-blue);
  }

  /* Navbar adjustments for mobile */
  .navbar {
    justify-content: space-between;
    padding: 8px 15px;
  }

  .logo img {
    height: 50px;
  }

  /* Body overlay removed - was causing display issues */
}

@media (max-width: 768px) {
  .navbar {
    padding: 6px 12px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links li {
    padding: 12px 15px;
  }

  .nav-links li a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  #mainNav {
    width: 80%;
    max-width: 280px;
    padding-top: 70px;
  }

  .navbar {
    padding: 5px 10px;
  }

  .logo img {
    height: 40px;
  }

  .nav-links li {
    padding: 10px 15px;
  }

  .nav-links li a {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

/* =============================
    BANNER / SLIDER
============================= */

.banner {
  margin-top: 70px;
  position: relative;
}

.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-slide {
  display: none;
  width: 100%;
}

.banner-slide.active {
  display: block;
}

/* Banner images - use specific classes .desktop-banner and .mobile-banner */
/* Do NOT add generic .banner-slide img rules here */

/* Navigation Arrows */
.banner-prev,
.banner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff24;
  color: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.banner-prev {
  left: 10px;
  border-radius: 0 5px 5px 0;
}

.banner-next {
  right: 10px;
  border-radius: 5px 0 0 5px;
}

.banner-prev:hover,
.banner-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Fade Animation */
.banner-slide.fade-in {
  animation: bannerFade 0.5s ease-in-out;
}

@keyframes bannerFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .banner {
    margin-top: 60px;
  }

  .banner-prev,
  .banner-next {
    padding: 10px 15px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .banner {
    margin-top: 55px;
  }

  .banner-prev,
  .banner-next {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* =============================
    DESKTOP BANNER STYLES
============================= */
.desktop-banner {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: cover;
  object-position: center;
}

/* Desktop banner section styling */
.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-slide {
  display: none;
  width: 100%;
  position: relative;
}

.banner-slide.active {
  display: block;
}

/* =============================
    MOBILE BANNER STYLES
============================= */
/* Mobile Banner Image - hidden by default on desktop */
.mobile-banner {
  display: none !important;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Tablet View (768px and below) */
@media (max-width: 768px) {

  /* Hide desktop banner */
  .desktop-banner {
    display: none !important;
  }

  /* Show and style mobile banner */
  .mobile-banner {
    display: block !important;
    width: 100%;
    height: 80vh;
    object-fit: cover;
    object-position: center;
  }

  /* Mobile banner section styling */
  .banner {
    margin-top: 60px;
  }

  .banner-slider {
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
  }

  .banner-slide {
    background: transparent;
  }

  /* Smaller navigation arrows on mobile */
  .banner-prev,
  .banner-next {
    padding: 10px 15px;
    font-size: 16px;
    background: rgba(107, 45, 91, 0.7);
  }

  .banner-prev:hover,
  .banner-next:hover {
    background: rgba(107, 45, 91, 1);
  }
}

/* Mobile Phone View (480px and below) */
@media (max-width: 480px) {

  /* Enhanced mobile banner */
  .mobile-banner {
    display: block !important;
    width: 100%;
    height: 80vh;
    object-fit: cover;
    object-position: center;
  }

  /* Mobile specific section styling */
  .banner {
    margin-top: 55px;
  }

  .banner-slider {
    background: #000;
  }

  .banner-slide {
    background: #000;
  }

  /* Smaller navigation arrows */
  .banner-prev,
  .banner-next {
    padding: 8px 12px;
    font-size: 14px;
    background: rgba(107, 45, 91, 0.8);
    border-radius: 50%;
  }
}

/* =============================
    BANNER VIDEO RESPONSIVE
============================= */

/* Desktop Video - visible by default */
.desktop-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Mobile Video - hidden by default */
.mobile-video {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Mobile: Show mobile video, hide desktop video */
@media (max-width: 768px) {
  .desktop-video {
    display: none !important;
  }

  .mobile-video {
    display: block;
    height: 100vh;
    object-fit: cover;
    object-position: center;
  }

  .banner {
    margin-top: 60px;
  }
}

@media (max-width: 480px) {
  .mobile-video {
    height: 85vh;
  }

  .banner {
    margin-top: 55px;
  }
}

/* =============================
    PROJECTS GRID
============================= */

/* Simple Slider Styles */
.simple-slider {
  position: relative;
  width: 100%;
  padding: 10px 0 30px;
  /* Space at bottom for dots */
  overflow: visible !important;
  /* Extremely important: let dots be seen */
}

.slider-track-container {
  width: 100%;
  overflow: hidden;
  /* Only clip the track horizontally */
  padding: 10px 5px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 15px;
  margin-left: 0;
}

.slide {
  flex: 0 0 calc((100% - 30px) / 3);
  min-width: calc((100% - 30px) / 3);
  max-width: calc((100% - 30px) / 3);
}

@media (max-width: 992px) {
  .slide {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.slide .project {
  display: block;
  background: var(--whiteland-blue);
  border: 2px solid var(--whiteland-blue);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide .project:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Slider Dots */
.simple-slider .dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  padding: 10px 0;
  width: 100%;
  min-height: 20px;
  position: relative;
  z-index: 100;
}

.simple-slider .dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #999;
  /* Darker gray for better visibility */
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.simple-slider .dots span:hover {
  background: #666;
  transform: scale(1.2);
}

.simple-slider .dots span.active {
  background: var(--whiteland-blue);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(107, 45, 91, 0.3);
}

/* Slider Navigation Arrows */
.simple-slider {
  position: relative;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(107, 45, 91, 0.8);
  color: #fff;
  border: none;
  padding: 15px 18px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
  border-radius: 5px;
}

.slider-prev {
  left: -15px;
}

.slider-next {
  right: -15px;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(107, 45, 91, 1);
}

/* Tablet/Medium view - 2 cards (600px - 1024px) */
@media (max-width: 1024px) {
  .slide {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

/* Mobile view - 1 card full width (below 600px) */
@media (max-width: 600px) {
  .container-box {
    padding: 40px 15px;
  }

  .slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .slider-track {
    gap: 15px;
  }

  .img-section {
    height: 300px;
  }

  .inner-content-head {
    padding: 8px 10px;
  }

  .inner-content-head h3 {
    font-size: 15px;
  }

  .slide .project p {
    font-size: 12px;
    padding: 0 10px;
  }

  .slider-prev,
  .slider-next {
    padding: 10px 12px;
    font-size: 16px;
  }

  .slider-prev {
    left: 5px;
  }

  .slider-next {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .container-box {
    padding: 30px 10px;
  }

  .img-section {
    height: 250px;
  }

  .inner-content-head h3 {
    font-size: 14px;
  }
}

.container-box {
  padding: 60px 50px;
  background-color: var(--m3m-bg-cream);
}

/* =============================
    PROJECTS GRID LAYOUT
============================= */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 0;
}

.project-card {
  box-sizing: border-box;
}

.project-card .project {
  display: block;
  background: var(--m3m-blue);
  border: 2px solid var(--m3m-green);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.project-card .project:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Tablet view - 2 cards (768px - 1024px) */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* Mobile view - 1 card full width (below 768px) */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .container-box {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .container-box {
    padding: 30px 15px;
  }

  .projects-grid {
    gap: 12px;
  }
}

.container-box h2 {
  /* margin-bottom: 20px; */
  font-family: Montserrat;
  text-align: center;
  color: var(--m3m-blue);
  padding: 40px 0;
}

/* =============================
    LOCATION FILTER TABS
    Experience Homes In Section
============================= */

.experience-homes-header {
  text-align: center;
  margin-bottom: 30px;
}

.experience-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #333;
  letter-spacing: 3px;
  margin-bottom: 0;
}

.experience-title strong {
  font-weight: 700;
}

.location-filter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 20px 0;
  margin-bottom: 20px;
}

.location-filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 40px;
  background: #f0f0f0;
  color: #333;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  min-width: 140px;
  position: relative;
  overflow: hidden;
}

.location-filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.location-filter-btn:hover::before {
  left: 100%;
}

.location-filter-btn:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-filter-btn.active {
  background: #333;
  color: #fff;
  box-shadow: 0 4px 15px rgba(51, 51, 51, 0.3);
}

.location-filter-btn.active:hover {
  background: #444;
  transform: translateY(-2px);
}

/* Animation for filtered projects */
.project-slide {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* No projects message */
.no-projects-message {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

/* =============================
    LOCATION FILTER RESPONSIVE
============================= */

@media (max-width: 992px) {
  .experience-title {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .location-filter-btn {
    padding: 12px 30px;
    font-size: 13px;
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .experience-title {
    font-size: 20px;
    letter-spacing: 1.5px;
  }

  .location-filter-container {
    gap: 10px;
    padding: 15px 0;
  }

  .location-filter-btn {
    padding: 10px 20px;
    font-size: 12px;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .experience-title {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .location-filter-container {
    gap: 8px;
    padding: 10px 0;
  }

  .location-filter-btn {
    padding: 8px 16px;
    font-size: 11px;
    min-width: 70px;
  }
}

.title-border {
  text-transform: uppercase;
  color: var(--m3m-blue);
  font-family: "Montserrat", sans-serif;
  padding: 0;
  line-height: normal;
  margin: 0;
  padding-bottom: 15px;
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
}

.title-border::after {
  content: "";
  width: 30%;
  height: 3px;
  background: var(--m3m-green);
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
}

.project-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.project-container p {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--m3m-blue);
  text-align: left;
  padding: 0 10px;
}

.inner-content {
  border: 2px solid var(--m3m-green);
  text-align: center;
  background-color: var(--m3m-blue);
}

.inner-content a {
  text-decoration: none !important;
  color: #f0ece7 !important;
  padding: 10px 0px;
}

.inner-content-head {
  color: #f0ece7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  font: bold 1.1em Montserrat !important;
  padding: 10px;
  margin-right: 10px;
}

.inner-content-head h3 {
  border-bottom: 2px solid white;
  font-size: 17px;
  text-transform: uppercase;
  color: #f0ece7;
}

.img-section {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.img-section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.img-section:hover img {
  transform: scale(1.1);
}

/* About Section Icons */
.item1 {
  filter: brightness(0.5);
}

.item1 img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.item1 p {
  color: var(--m3m-blue);
  font-weight: 500;
  margin-top: 10px;
}

/* =============================
    STATS SECTION (Our Journey)
============================= */

/* Import EB Garamond for elegant thin serif numbers - matching Whiteland style */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&display=swap');

.stats-section {
  background: #ffffff;
  padding: 70px 20px;
  width: 100%;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px 35px;
  min-width: 275px;
}

.stat-number {
  font-family: 'EB Garamond', 'Times New Roman', Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
  line-height: 1;
  letter-spacing: 1px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #1a2b5a;
  margin: 10px 0 0 0;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

/* Vertical Divider */
.stat-divider {
  width: 1px;
  height: 80px;
  background: #d0d5dd;
  align-self: center;
  flex-shrink: 0;
}

/* =============================
    STATS SECTION RESPONSIVE
============================= */

@media (max-width: 992px) {
  .stats-container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 140px;
    padding: 15px 20px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-label {
    font-size: 11px;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 40px 15px;
  }

  .stats-container {
    flex-wrap: wrap;
    gap: 15px;
  }

  .stat-item {
    flex: 0 0 calc(50% - 15px);
    min-width: 120px;
    padding: 15px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 10px;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 30px 10px;
  }

  .stats-container {
    gap: 10px;
  }

  .stat-item {
    flex: 0 0 calc(50% - 10px);
    min-width: 100px;
    padding: 12px 8px;
  }

  .stat-number {
    font-size: 26px;
  }

  .stat-label {
    font-size: 9px;
  }
}

/* =============================
    (LEGACY) STATS SECTION
============================= */

.stats {
  padding: 50px 0;
  margin: 0 auto;
  background: #1a1a1a;
  max-width: 100%;
}

.stats-container-list {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(76, 175, 80, 0.3);
  padding: 20px 15px;
  min-width: 150px;
}

.stats-container-list:last-child {
  border-right: none;
}

.stats-container-list h4 {
  color: var(--m3m-green);
  font-size: 48px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

.stats-container-list p {
  margin-top: 10px;
  color: #f0ece7;
  font-size: 14px;
  font-weight: 400;
}

/* =============================
    OUR JOURNEY SECTION
============================= */

.ourjourney {
  background: #a37a3d;
  padding: 60px 20px;
}

.paddingTopBottom {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ourjourney-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.ourjourney-title {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.ourjourney-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #fff;
}

/* Slider Container */
.ojitemslist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
}

/* Arrow Navigation Buttons */
.oj-nav-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.oj-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.oj-nav-btn svg {
  width: 24px;
  height: 24px;
}

/* Slider Wrapper */
.oj-slider-wrapper {
  overflow: hidden;
  flex: 1;
  max-width: 1100px;
}

/* Slider Track */
.oj-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 15px;
}

/* Individual Stat Item */
.ojitem {
  flex: 0 0 calc(25% - 12px);
  min-width: calc(25% - 12px);
  text-align: center;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ojitem:last-child {
  border-right: none;
}

.ojitem img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.ojitem svg {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ojitem .ojinfo {
  color: #fff;
}

.ojitem .ojinfo h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  line-height: 1.1;
  display: inline;
}

.ojitem .ojinfo p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 5px 0;
}

.ojitem .ojinfo .rupee-symbol {
  font-size: 25px;
  display: inline;
  font-weight: 600;
}

.ojitem .ojinfo .stat-unit {
  display: inline;
  font-size: 16px;
  text-transform: uppercase;
}

.ojitem .ojinfo .stat-small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

/* GPTW Badge Item */
.ojitem.gptw-item {
  flex-direction: column-reverse;
  border-right: none;
}

.ojitem.gptw-item img {
  width: 100px;
  height: auto;
  filter: none;
  margin-bottom: 0;
  margin-top: 15px;
}

.ojitem.gptw-item .gptw-text {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* Responsive Our Journey Section */

@media (max-width: 1200px) {
  .ojitem {
    flex: 0 0 calc(33.333% - 10px);
    min-width: calc(33.333% - 10px);
  }
}

@media (max-width: 992px) {
  .ojitem {
    flex: 0 0 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }

  .ojitem .ojinfo h2 {
    font-size: 30px;
  }

  .oj-nav-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .ourjourney {
    padding: 40px 15px;
  }

  .ourjourney-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .ojitemslist {
    gap: 10px;
  }

  .ojitem {
    flex: 0 0 100%;
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 15px;
  }

  .ojitem:last-child {
    border-bottom: none;
  }

  .ojitem .ojinfo h2 {
    font-size: 36px;
  }

  .oj-nav-btn {
    width: 35px;
    height: 35px;
  }

  .oj-nav-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* =============================
    ABOUT US SECTION
============================= */

.about-us {
  padding-top: 20px;
  background-color: var(--m3m-bg-cream);
  color: #1b1b1b;
}

.about-container {
  display: flex;
  margin: 0 auto;
  padding: 20px;
  max-width: 1400px;
  align-items: flex-start;
  gap: 30px;
}

.about-container-headings {
  flex: 1;
  margin-top: 10px;
}

.about-container-headings h2 {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  color: var(--m3m-blue);
  margin-bottom: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.section-subtitle {
  padding: 0;
  color: #f0ece7;
  font-size: 13px;
  font-family: "Montserrat-Medium", sans-serif;
  text-align: center;
}

.about-container-headings p {
  color: #444;
  text-align: justify;
  font-weight: 500;
}

.about-container-headings a {
  color: #fff;
  background-color: var(--m3m-green);
  display: inline-block;
  margin-top: 25px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 15px;
  padding: 15px 20px;
  width: 230px;
  border-radius: 5px;
}

.about-container-headings a:hover {
  background-color: var(--m3m-blue);
  color: #fff;
  transition: 0.3s;
}

.about-container-image {
  flex: 1;
}

.about-container-image img {
  margin-bottom: 30px;
  width: 100%;
  height: 600px;
  object-fit: contain;
  border-radius: 6px;
}

.about-service-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  gap: 10px;
  justify-content: space-around;
}

/* Service icons styling - Whiteland Blue */
.about-service-item .item1 img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(98%) saturate(1000%) hue-rotate(190deg) brightness(95%) contrast(101%);
  width: 70px;
  height: 70px;
  transition: transform 0.3s ease;
}

.about-service-item .item1:hover img {
  transform: scale(1.1);
}

.border-item {
  border-right: 1px solid #8080806e;
  border-left: 1px solid #8080806e;
  padding: 0 33px;
}

@keyframes btnAnimate {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
}

/* =============================
    NEW ABOUT US SECTION
============================= */

.about-us-new {
  background-color: #d9d4cd;
  padding: 50px 150px;
}

.about-container-new {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  gap: 60px;
  align-items: flex-start;
}

.about-content-new {
  flex: 1.2;
  padding-right: 20px;
}

.about-title-new {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #1a1a1a;
  /* margin-bottom: 25px; */
  letter-spacing: 2px;
  line-height: 1.2;
}

.about-subtitle-new {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.about-text-new {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.65;
  margin-bottom: 12px;
  text-align: justify;
}

.about-btn-new {
  display: inline-block;
  background-color: #1a1a1a;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 26px;
  margin-top: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-btn-new:hover {
  background-color: #142d5c;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 31, 68, 0.3);
}

.about-image-new {
  flex: 0.85;
}

.about-image-new img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  object-position: center;
}

/* Responsive Styles for New About Us Section */
@media (max-width: 1024px) {
  .about-us-new {
    padding: 40px 40px;
  }

  .about-container-new {
    gap: 40px;
  }

  .about-title-new {
    font-size: 34px;
  }

  .about-content-new {
    padding-right: 10px;
  }
}

@media (max-width: 768px) {
  .about-us-new {
    padding: 40px 25px;
  }

  .about-container-new {
    flex-direction: column;
    gap: 30px;
  }

  .about-content-new {
    padding-right: 0;
    padding-left: 0;
    order: 2;
  }

  .about-image-new {
    order: 1;
    width: 100%;
  }

  .about-title-new {
    font-size: 32px;
    letter-spacing: 2px;
    text-align: center;
  }

  .about-subtitle-new {
    font-size: 14px;
    text-align: center;
  }

  .about-text-new {
    font-size: 13px;
    text-align: justify;
  }

  .about-btn-new {
    display: block;
    text-align: center;
    width: 100%;
  }


}

@media (max-width: 480px) {
  .about-us-new {
    padding: 30px 20px;
  }

  .about-title-new {
    font-size: 28px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  .about-subtitle-new {
    font-size: 13px;
  }

  .about-text-new {
    font-size: 12px;
  }

  .about-btn-new {
    font-size: 12px;
    padding: 14px 24px;
  }
}

/* =============================
    TESTIMONIALS
============================= */

.testimonial {
  padding: 60px;
  background: var(--gradient-m3m-mix);
}

/* Sustainability Section Headings - 50% border */
.sustainability-heading {
  color: white;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.sustainability-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 100px;
}

.testimonial-item {
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 5px;
  background-color: #e8f5e9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-item img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}

.testimonial-item a {
  text-decoration: none !important;
  color: #000 !important;
  font-weight: bold;
  font-size: 1.2rem;
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-item .video-wrapper {
  position: relative;
  padding-top: 65.5%;
}

.testimonial-item .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonial-item .play-overlay {
  cursor: pointer;
  display: block;
  width: 100%;
  height: auto;
  margin: 0px;
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.yt-play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 22px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
}

.thumb-link:hover .yt-play-btn {
  background: red;
  transform: translate(-50%, -50%) scale(1.1);
  transition: 0.2s ease;
}

/* =============================
    AWARDS SECTION - SIMPLE SLIDER
============================= */

.awards-section {
  background-color: #d9d4cd;
  padding: 60px 80px 80px;
}

.awards-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.awards-title {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.awards-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 50px;
}

.awards-slider-container {
  position: relative;
  /* min-height: 320px; */
  display: flex;
  justify-content: center;
  gap: 60px;
}

.award-slide-item {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.award-slide-item.active {
  display: block;
}

/* Desktop: Show pairs of awards */
@media (min-width: 769px) {
  .award-slide-item:nth-child(odd).active+.award-slide-item:nth-child(even) {
    display: block;
  }

  /* Hide dots for even indices on desktop */
  .awards-dots .award-dot:nth-child(even) {
    display: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.award-card {
  flex: 0 0 auto;
  max-width: 380px;
  text-align: center;
  padding: 20px;
}

.award-icon {
  width: 250px;
  height: auto;
  margin: auto;
}

.award-name {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.award-org {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

.awards-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.award-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #2a3f7a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.award-dot.active {
  background-color: #2a3f7a;
}

.award-dot:hover {
  background-color: rgba(42, 63, 122, 0.5);
}

/* Responsive Awards Section */
@media (max-width: 1024px) {
  .awards-section {
    padding: 50px 40px 60px;
  }

  .awards-title {
    font-size: 36px;
  }

  .awards-slide {
    gap: 40px;
  }

  .award-icon {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .awards-section {
    padding: 40px 25px 50px;
  }

  .awards-title {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .awards-desc {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .awards-slider-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Show all 8 dots on mobile */
  .awards-dots .award-dot {
    display: inline-block !important;
  }

  .award-card {
    max-width: 300px;
  }

  .award-icon {
    width: 130px;
  }

  .award-name {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .awards-section {
    padding: 30px 20px 40px;
  }

  .awards-title {
    font-size: 26px;
  }

  .awards-desc {
    font-size: 12px;
  }

  .award-icon {
    width: 110px;
  }

  .award-name {
    font-size: 13px;
  }

  .award-org {
    font-size: 12px;
  }
}

/* =============================
    FOOTER
============================= */

footer {
  background: #1a1a1a;
}

footer hr {
  border: none;
  border-top: 1px solid rgba(107, 45, 91, 0.3);
  margin: 0;
}

.footer-content {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding-left: 10px;
}

.footer-content span {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: left;
}

.footer-content span img {
  height: 20px;
  width: 20px;
  vertical-align: middle;
  filter: invert(42%) sepia(150%) brightness(1.5);
}

.footer-section {
  border-bottom: 1px solid rgba(107, 45, 91, 0.2);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
}

.footer-title::after {
  content: "+";
  position: absolute;
  right: 10px;
  font-size: 20px;
  color: #1a1a1a;
}

.footer-section.active .footer-title::after {
  content: "-";
}

.footer-section.active .footer-content {
  display: flex;
}

@media (min-width: 767px) {
  .footer-content {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
  }

  .footer-title::after {
    display: none;
  }

  .footer-links {
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
    margin: 0 auto;
    background-color: #f0ece7;
  }

  .footer-title {
    color: #1a1a1a;
    margin-bottom: 10px;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 10px;
  }

  .footer-content a {
    font-size: 13px;
    color: grey;
    transition: color 0.3s ease;
  }

  .footer-content a:hover {
    color: #1a1a1a;
  }

  .footer-section {
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    padding-bottom: 10px;
    margin-bottom: 10px;
    max-width: 260px;
    width: 200px;
  }
}

/* =============================
    SIMPLE SLIDER STYLES
============================= */

.simple-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px;
}

.slider-track {
  display: flex;
  transition: 0.4s ease;
  will-change: transform;
}

.slide {
  min-width: calc(100% / 3);
  padding: 10px;
}

.slide a {
  display: block;
  background: var(--m3m-blue);
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--m3m-green);
  height: auto;
  /* border-radius: 8px; */
  overflow: hidden;
}

.slide p {
  color: #f0ece7;
  padding: 0 10px;
  margin-top: 8px;
  font-size: 14px;
  /* margin-bottom: 20px; */
}

.slide img {
  margin-top: 20px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.slide video {
  margin-top: 20px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.dots {
  text-align: center;
  margin-top: 12px;
}

.dots span {
  height: 10px;
  width: 10px;
  background: var(--m3m-green);
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.dots .active {
  background: var(--m3m-blue);
  opacity: 1;
}

/* =============================
    RESPONSIVE STYLES
============================= */

/* Base mobile-first adjustments */
@media (max-width: 480px) {
  .hamburger {
    display: block;
  }

  header .navbar ul {
    display: none;
  }

  .logo img {
    height: 48px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -320px;
    height: 100vh;
    width: 280px;
    background: #fff;
    flex-direction: column;
    padding: 60px 20px 20px;
    gap: 20px;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.12);
    transition: right 0.28s ease;
    z-index: 1200;
  }

  .nav-links.show {
    right: 0;
    display: flex;
    flex-direction: column;
  }

  body.menu-open {
    overflow: hidden;
  }

  .container-box {
    padding: 0px 14px;
  }

  .title-border {
    font-size: 15px;
    padding-bottom: 12px;
  }

  .project-container {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 18px;
  }

  .img-section {
    height: 400px;
    margin-top: 12px;
  }

  .about-container {
    flex-direction: column;
    margin: 0;
    padding: 16px;
    gap: 20px;
    max-width: 100%;
  }

  .about-container-headings,
  .about-container-image {
    max-width: 100%;
    margin: auto;
  }

  .about-container-headings h2 {
    font-size: 18px;
    padding: 0;
    text-align: center;
  }

  .about-container-image img {
    height: auto;
    max-height: 420px;
    object-fit: cover;
  }

  .about-container-headings p {
    text-align: center;
    font-size: 13px;
  }

  .testimonial {
    padding: 30px 12px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    margin: 20px 0;
    gap: 16px;
  }

  .testimonial-item {
    padding: 8px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    margin: 20px 0;
    gap: 18px;
    padding: 12px;
  }

  .awards-item img {
    height: 260px;
    object-fit: cover;
  }

  .footer-inner-container {
    margin: 0 12px;
  }

  .footer-inner-box {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
    padding: 0 12px;
  }

  .disclaimer {
    padding: 18px;
    font-size: 12px;
  }

  .slide {
    min-width: 100%;
  }
}

/* Small phones & larger phones */
@media (min-width: 481px) and (max-width: 767px) {
  .hamburger {
    display: block;
  }

  header .navbar ul {
    display: none;
  }

  .logo img {
    height: 54px;
  }

  .container-box {
    padding: 35px 18px;
  }

  .project-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .img-section {
    height: 400px;
  }

  .about-container {
    flex-direction: column;
    align-items: stretch;
    max-width: 560px;
  }

  .about-container-image img {
    height: 480px;
    max-height: 480px;
    object-fit: cover;
  }

  .about-container-headings h2 {
    text-align: center;
    font-size: 25px;
  }

  .about-container-headings p {
    text-align: center;
    font-size: 14px;
    line-height: 2;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    margin: 18px 0;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    margin: 18px 0;
  }

  .slide {
    min-width: 50%;
  }
}

/* Tablet */
@media (min-width: 767px) and (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    align-items: stretch;
    max-width: 760px;
  }

  .about-container-image img {
    height: 600px;
    max-height: 600px;
    object-fit: cover;
  }

  .about-container-headings h2 {
    text-align: center;
  }

  .about-container-headings p {
    text-align: center;
  }

  .about-service-item {
    margin: 0 110px;
  }
}

/* Tablet + Mobile Luxury Glass Menu Fix */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: -320px;
    height: 100vh;
    width: 270px;
    padding: 90px 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
    background: white;
    backdrop-filter: blur(12px);
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.25);
    transition: right 0.35s ease;
    z-index: 9999;
  }

  .hamburger {
    display: block;
  }

  .nav-links.show {
    right: 0;
    display: flex;
    flex-direction: column;
  }

  .nav-links a {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* Small desktop / laptop */
@media (min-width: 1025px) and (max-width: 1199px) {
  .hamburger {
    display: none;
  }

  header .navbar ul {
    display: flex;
  }

  .logo img {
    height: 60px;
  }

  .container-box {
    padding: 0px 120px;
  }

  .project-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .img-section {
    height: 400px;
  }

  .about-container {
    display: flex;
    gap: 40px;
    padding: 40px;
    align-items: flex-start;
    margin: 0;
  }

  .about-container-image img {
    height: 600px;
    object-fit: contain;
  }

  .testimonial {
    padding: 80px 100px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 30px 50px;
  }

  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 40px 80px;
  }

  .footer-links {
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
    margin: 0 auto;
    background-color: #f0ece7;
  }

  .footer-inner-container {
    margin: 0 100px;
  }

  .slide {
    min-width: calc(100% / 3);
  }
}

/* Desktop and up */
@media (min-width: 1200px) {
  .container-box {
    padding: 0px 150px;
  }

  .project-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .testimonial-grid,
  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 30px 100px;
  }

  .footer-inner-container {
    margin: 0px;
  }

  .footer-links {
    padding: 60px;
    background-color: #f0ece7;
    display: flex;
    justify-content: space-evenly;
    gap: 60px;
  }

  .footer-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin-bottom: 10px;
    max-width: 260px;
  }

  .about-container {
    max-width: 1400px;
    padding: 40px 150px;
  }

  .logo img {
    height: 60px;
    /* filter:  invert(1) sepia(1) brightness(1.4); */
  }

  .slide {
    min-width: calc(100% / 3);
  }
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
  .container-box {
    padding-left: 220px;
    padding-right: 220px;
  }

  .about-container {
    padding-left: 150px;
    padding-right: 150px;
  }

  .testimonial-grid,
  .awards-grid {
    margin-left: 160px;
    margin-right: 160px;
  }
}

/* Accessibility and small refinements */
a:focus,
button:focus {
  outline: 2px dashed #aaa;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =============================
    POPUP MODAL DESIGN - BPTP Style
============================= */

/* CSS Variables for BPTP Theme */
:root {
  --m3m-primary: #1a1a1a;
  --m3m-gold: #1a1a1a;
  --m3m-cream: #f5f5f5;
  --m3m-dark: #000000;
  --gradient-m3m: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
  --gradient-gold: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
}

/* Modal Overlay - Centers the popup */
#popupFormgolfhills.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

.modal-box-new {
  width: 100%;
  max-width: 800px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  margin: auto;
  animation: popupSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Popup animation */
@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Close Button */
.close-btn-new {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  font-weight: 300;
  color: #555;
  cursor: pointer;
  z-index: 100;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-btn-new:hover {
  color: #111;
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

/* Popup Header Section (New Premium Theme) */
.popup-left-content {
  flex: 1;
  background: url('./images/projects/sobha-one-world.webp') center/cover no-repeat;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: #fff;
  z-index: 1;
}

.popup-left-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(27, 42, 74, 0.9) 0%, rgba(15, 28, 51, 0.95) 100%);
  z-index: -1;
}

.popup-right-form {
  flex: 1.1;
  padding: 50px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-header-subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  color: #C8A456;
  text-transform: uppercase;
}

.popup-header-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  padding: 0;
  line-height: 1.2;
  font-family: 'Outfit', sans-serif;
}

.popup-header-builder {
  font-size: 14px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Form Section */
.modal-form-section {
  padding: 15px 18px;
  background: #fff;
}

.popup-input-group {
  margin-bottom: 20px;
}

.popup-form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #333;
  background: #f9f9f9;
  outline: none;
  transition: all 0.3s ease;
}

.popup-form-input:focus {
  border-color: #C8A456;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 164, 86, 0.1);
}

.popup-form-input::placeholder {
  color: #999;
  font-weight: 400;
}

/* Phone Input Group */
.popup-phone-group {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 0;
  position: relative;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

.popup-phone-group:focus-within {
  border-color: #C8A456;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 164, 86, 0.1);
}

.popup-country-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  cursor: pointer;
  border-right: 1px solid #e5e5e5;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  min-width: 75px;
}

.popup-country-code {
  font-weight: 500;
}

.popup-dropdown-arrow {
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.popup-country-select:hover .popup-dropdown-arrow {
  opacity: 1;
}

.popup-phone-input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #333;
  background: transparent;
  outline: none;
}

.popup-phone-input::placeholder {
  color: #999;
}

/* Country Flag in selector */
.popup-country-flag {
  border-radius: 2px;
}

/* Country Dropdown */
.popup-country-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  max-height: 250px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  list-style: none;
  margin: 5px 0 0 0;
  padding: 5px 0;
}

.popup-country-dropdown.show {
  display: block;
}

.popup-country-dropdown li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background 0.2s ease;
}

.popup-country-dropdown li:hover {
  background: #f5f5f5;
}

.popup-country-dropdown li img {
  border-radius: 2px;
}

.popup-consent-group {
  margin-bottom: 12px;
  padding: 0 5px;
}

.popup-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  position: relative;
  padding-left: 26px;
}

.popup-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.popup-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #1a1a1a;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.popup-checkbox-container:hover .popup-checkmark {
  border-color: #45a049;
}

.popup-checkbox-container input:checked~.popup-checkmark {
  background-color: #1a1a1a;
}

.popup-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.popup-checkbox-container input:checked~.popup-checkmark:after {
  display: block;
}

.popup-checkbox-container .popup-checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.popup-consent-text {
  font-size: 11px;
  color: #666;
  line-height: 1.3;
}

/* Submit Button */
.popup-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 15px;
  background: var(--gradient-m3m-green);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popup-submit-btn:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.popup-submit-btn svg {
  stroke: #fff;
  transition: stroke 0.3s ease;
}

.popup-submit-btn:hover svg {
  stroke: #fff;
}

/* Feature Badges Section */
.popup-features-section {
  background: var(--m3m-cream);
  padding: 12px 15px;
  border-top: 1px solid #ccc;
}

.popup-feature-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
}

.popup-feature-badge:first-child {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.popup-feature-icon-badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-feature-icon-badge svg {
  width: 32px;
  height: 32px;
}

.popup-feature-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

.popup-feature-text p {
  font-size: 11px;
  color: #777;
  line-height: 1.3;
  margin: 0;
}

/* OTP Section */
.popup-otp-section {
  padding: 30px 20px;
  text-align: center;
  background: #fff;
}

.popup-otp-heading {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.popup-otp-input-container {
  margin-bottom: 20px;
}

.popup-otp-input {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 18px;
  text-align: center;
  letter-spacing: 5px;
  font-family: "Montserrat", sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}

.popup-otp-input:focus {
  border-color: var(--m3m-gold);
}

.popup-error-msg {
  color: #e74c3c;
  font-size: 13px;
  margin-top: 10px;
}

.popup-timer-display {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

/* Thank You Section */
.popup-thankyou-section {
  padding: 50px 20px;
  text-align: center;
  background: #fff;
}

.popup-thankyou-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.popup-thankyou-heading {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  font-family: "Montserrat", sans-serif;
}

.popup-thankyou-text {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* Toast Notification */
.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 14px;
}

.toast.show {
  visibility: visible;
  animation:
    fadein 0.5s,
    fadeout 0.5s 2.5s;
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

/* Modal Backdrop */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
}

.modal-backdrop.show {
  display: block;
}

/* Fix Footer for Mobile */
@media only screen and (max-width: 600px) {
  .fix-footer {
    display: flex !important;
  }
}

.fix-footer {
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0px;
  z-index: 9;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.fix-footer p {
  flex: 1;
  text-align: center;
  margin: 0px;
  padding: 0px;
}

.fix-footer p a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #1a1a1a !important;
  text-decoration: none;
}

.fix-footer p a span {
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
}

.fix-footer img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: invert(0) brightness(0);
}

/* Mobile Responsive for Popup */
@media (max-width: 768px) {
  #popupFormgolfhills.modal {
    padding: 15px;
  }

  .modal-box-new {
    flex-direction: column;
    max-width: 450px;
    border-radius: 12px;
  }

  .popup-left-content {
    padding: 35px 25px;
    min-height: 180px;
  }

  .popup-right-form {
    padding: 30px 25px;
  }

  .popup-header-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .popup-header-subtitle {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .close-btn-new {
    top: 12px;
    right: 12px;
    font-size: 24px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
  }
}

@media (max-width: 480px) {
  #popupFormgolfhills.modal {
    padding: 10px;
  }

  .popup-left-content {
    padding: 25px 20px;
    min-height: 150px;
  }

  .popup-right-form {
    padding: 25px 20px;
  }

  .popup-header-title {
    font-size: 20px;
  }

  .popup-form-input {
    padding: 10px 12px;
    font-size: 14px;
  }

  .popup-phone-group {
    margin-bottom: 15px;
  }

  .popup-country-select {
    padding: 10px;
    min-width: 70px;
    font-size: 13px;
  }

  .popup-phone-input {
    padding: 10px 12px;
    font-size: 14px;
  }

  .popup-submit-btn {
    padding: 12px;
    font-size: 14px;
  }
}

/* Footer Copyright Bar Centering */
.footer-copyright-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 20px;
  gap: 15px;
  background: #1a1a1a;
  width: 100%;
}

.footer-copyright-text {
  color: white;
  font-size: 13px;
  text-align: left;
}

.footer-logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-links-right {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links-right a {
  color: white;
  text-decoration: none;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-copyright-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
    background: #1a1a1a;
    width: 100%;
    /* Space for mobile fix-footer */
  }

  .footer-copyright-text,
  .footer-links-right {
    justify-content: center;
    text-align: center;
  }

  .footer-links-right {
    order: 3;
  }
}

/* =============================
   SUSTAINABILITY SECTION - BPTP Style
============================= */

.sustainability-section {
  padding: 80px 50px;
  background: #f4f5f7 !important; /* Update background to light gray */
}

.sustainability-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Content */
.sustainability-content {
  flex: 0 0 45%;
  max-width: 45%;
}

.sustainability-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.sustainability-description {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

.sustainability-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 14px 28px;
  background: #1a1a1a;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.sustainability-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.sustainability-btn:hover .btn-dot {
  transform: scale(1.2);
}

/* Right Certifications Grid */
.certifications-grid {
  flex: 0 0 50%;
  max-width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.certification-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 180px;
}

.certification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.certification-card img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
  .sustainability-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .sustainability-content,
  .certifications-grid {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .sustainability-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .sustainability-section {
    padding: 50px 20px;
  }

  .sustainability-heading {
    font-size: 28px;
  }

  .sustainability-description {
    font-size: 14px;
  }

  .certifications-grid {
    gap: 15px;
  }

  .certification-card {
    padding: 20px;
    min-height: 140px;
  }

  .certification-card img {
    max-height: 90px;
  }
}

@media (max-width: 480px) {
  .sustainability-heading {
    font-size: 24px;
  }

  .certification-card {
    padding: 15px;
    min-height: 120px;
  }

  .certification-card img {
    max-height: 80px;
  }

  .sustainability-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}

/* =============================
   STORIES SECTION - BPTP Style
============================= */

.stories-section {
  padding: 80px 50px;
  background: #f5f5f5;
}

.stories-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header with title and View All */
.stories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.stories-title {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.stories-view-all {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none !important;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.stories-view-all:hover {
  color: #333;
}

/* Stories Grid */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Story Card */
.story-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* News Source Logo */
.story-logo {
  height: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
}

.story-logo img {
  max-height: 50px;
  max-width: 180px;
  object-fit: contain;
}

/* Date */
.story-date {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}

/* Title */
.story-title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Arrow Button */
.story-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none !important;
}

.story-arrow-btn:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.story-arrow-btn svg {
  transition: transform 0.3s ease;
}

.story-arrow-btn:hover svg {
  transform: translate(2px, -2px);
}

/* Responsive */
@media (max-width: 992px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stories-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .stories-section {
    padding: 50px 20px;
  }

  .stories-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }

  .stories-title {
    font-size: 26px;
  }

  .stories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-card {
    padding: 20px;
  }

  .story-logo {
    height: 60px;
    padding: 10px;
  }

  .story-logo img {
    max-height: 40px;
  }

  .story-title {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .stories-title {
    font-size: 22px;
  }

  .story-card {
    padding: 15px;
  }
}

/* Footer Contact Info Icons - Black */
.footer-links .footer-content span img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0);
}

/* =============================
    BANGALORE PROJECTS - BANNER OVERLAY
============================= */

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 28, 51, 0.75) 0%, rgba(27, 42, 74, 0.55) 50%, rgba(200, 164, 86, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.banner-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.banner-headline {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 5px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.banner-subheadline {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #C8A456;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.banner-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  margin-bottom: 35px;
}

.banner-cta {
  display: inline-block;
  background: #C8A456;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.banner-cta:hover {
  background: #A88B3C;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200, 164, 86, 0.4);
}

/* Banner Overlay Responsive */
@media (max-width: 992px) {
  .banner-headline {
    font-size: 42px;
  }
  .banner-subheadline {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .banner-headline {
    font-size: 32px;
    letter-spacing: 2px;
  }
  .banner-subheadline {
    font-size: 22px;
    letter-spacing: 3px;
  }
  .banner-tagline {
    font-size: 13px;
    letter-spacing: 1px;
  }
  .banner-cta {
    padding: 14px 30px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .banner-headline {
    font-size: 26px;
    letter-spacing: 1px;
  }
  .banner-subheadline {
    font-size: 18px;
    letter-spacing: 2px;
  }
  .banner-tagline {
    font-size: 12px;
    margin-bottom: 25px;
  }
  .banner-cta {
    padding: 12px 25px;
    font-size: 11px;
  }
}

/* =============================
    WHY BANGALORE SECTION - CARDS GRID
============================= */

.why-blr-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
}

.sustainability-heading {
  color: #1a2538 !important;
  text-align: left;
}

.sustainability-heading::after {
  left: 0;
  width: 40px;
  background: #c8a456;
}

.sustainability-description {
  color: #555 !important;
  text-align: left;
}

.sustainability-btn {
  background: #c8a456 !important;
  color: #ffffff !important;
}

.sustainability-btn:hover {
  background: #b59247 !important;
}

.why-blr-card {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 30px 25px !important;
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  border: none !important;
  backdrop-filter: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-blr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.why-blr-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 164, 86, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A456;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-shrink: 0;
}

.why-blr-content {
  display: flex;
  flex-direction: column;
}

.why-blr-card h4 {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #C8A456 !important;
  margin-bottom: 5px !important;
  line-height: 1.2;
}

.why-blr-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #666 !important;
  line-height: 1.5;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .why-blr-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  .why-blr-card {
    padding: 25px 20px !important;
  }
}

/* =============================
    UPDATED ABOUT SECTION BUTTON
============================= */

.about-btn-new {
  display: inline-block;
  background-color: #1B2A4A;
  color: #fff !important;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 26px;
  margin-top: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.about-btn-new:hover {
  background-color: #C8A456;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 164, 86, 0.3);
}

/* =============================
    UPDATED FOOTER BRANDING
============================= */

footer {
  background: #1B2A4A;
}

footer hr {
  border: none;
  border-top: 1px solid rgba(200, 164, 86, 0.2);
  margin: 0;
}

.footer-copyright-bar {
  background: #0F1C33;
}

.footer-copyright-text {
  color: rgba(255, 255, 255, 0.7);
}

/* =============================
    STAT NUMBER - UPDATED COLOR
============================= */

.stat-number {
  font-family: 'EB Garamond', 'Times New Roman', Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  color: #1B2A4A;
  margin: 0;
  line-height: 1;
  letter-spacing: 1px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #C8A456;
  margin: 10px 0 0 0;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

/* =============================
    SUSTAINABILITY SECTION - UPDATED FOR BANGALORE
============================= */

.sustainability-heading {
  color: white;
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.sustainability-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #C8A456;
}

.sustainability-btn {
  background: #C8A456 !important;
  color: #fff !important;
  border: none;
}

.sustainability-btn:hover {
  background: #A88B3C !important;
}

/* Mobile footer bar updated colors */
.fix-footer {
  /* background: linear-gradient(135deg, #1B2A4A 0%, #0F1C33 100%); */
  background: whitesmoke;
}

/* =============================
    NEWS SECTION
============================= */
.news-section {
  padding: 60px 50px;
  background-color: var(--whiteland-bg-cream);
}

.news-section h2 {
  font-family: 'Outfit', sans-serif;
  text-align: center;
  color: var(--whiteland-blue);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-image {
  height: 200px;
  background-color: #ddd;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 20px;
}

.news-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--whiteland-accent);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--whiteland-blue);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-excerpt {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-section {
    padding: 40px 20px;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================
    TESTIMONIALS ELEGANT SECTION
============================= */
.testimonial-elegant {
  padding: 80px 0;
  background-color: #f6f5ef;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

.testimonial-elegant-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-elegant-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #1a2538;
  margin-bottom: 40px;
  text-align: left;
}

.testimonial-elegant-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-elegant-slide {
  display: none;
  animation: fadeEffect 1s;
}

.testimonial-elegant-slide.active {
  display: block;
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

.testimonial-elegant-content-wrapper {
  position: relative;
  padding: 20px 0;
  margin: 0 40px;
}

.testimonial-elegant-quote {
  position: absolute;
  width: 20px;
  height: 20px;
}

.testimonial-elegant-quote::before,
.testimonial-elegant-quote::after {
  content: '';
  position: absolute;
  top: 0;
  width: 6px;
  height: 18px;
  background-color: #c49d47;
  border-radius: 2px;
}

.testimonial-elegant-quote::after {
  left: 10px;
}

.top-quote {
  top: 0;
  left: -30px;
}

.bottom-quote {
  bottom: 0;
  right: -30px;
}

.testimonial-elegant-text-box {
  border-left: 2px solid #c49d47;
  padding-left: 25px;
  margin-bottom: 30px;
}

.testimonial-elegant-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
}

.testimonial-elegant-author {
  text-align: center;
  margin-top: 20px;
}

.testimonial-elegant-author h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a2538;
  margin-bottom: 5px;
}

.testimonial-elegant-author p {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #888;
  text-transform: uppercase;
}

.testimonial-elegant-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 15px;
}

.testimonial-elegant-nav button {
  background: transparent;
  border: none;
  color: #c49d47;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s;
}

.testimonial-elegant-nav button:hover {
  transform: scale(1.2);
}

.testi-counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #666;
}

/* End of stylesheet */
/* ===================================================================
   REDESIGNED ENQUIRY POPUP FORM STYLES
   =================================================================== */

.modal-content-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

/* Header */
.modal-header-new {
    text-align: left;
    padding: 28px 30px 10px;
    background: #ffffff;
}

.modal-header-new h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
}

.modal-header-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ab8648, #d4b26f);
    margin: 12px 0 0;
    border-radius: 2px;
}

/* Two-Column Body */
.modal-body-new {
    display: flex;
    flex-direction: row;
    padding: 10px 30px 15px;
    gap: 28px;
    align-items: stretch; /* keeps promise box and form box tall */
}

/* Left Promise Panel */
.modal-left-promise {
    flex: 0 0 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 14px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
}

.promise-badge {
    background: #1e293b;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 8px 22px;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.promise-items-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 6px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.promise-item:hover {
    background: transparent;
    border-color: transparent;
    transform: translateX(3px);
}

.promise-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: none;
}

.promise-icon svg {
    width: 18px;
    height: 18px;
}

.promise-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.promise-bold {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.promise-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 1px;
    margin-top: 1px;
}

/* Right Form Panel */
.modal-right-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 0 0;
}

.form-group-new {
    margin-bottom: 14px;
}

.form-group-new input {
    width: 100%;
    padding: 13px 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    background: #fafafa;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group-new input:focus {
    border-color: #ab8648;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(171, 134, 72, 0.12);
    outline: none;
}

.form-group-new input::placeholder {
    color: #a0aec0;
}

/* Unified Country Code & Phone Input Border Box style */
.phone-input-container-new {
    display: flex;
    align-items: center;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    background: #fafafa;
    padding: 0 16px;
    height: 50px;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.phone-input-container-new:focus-within {
    border-color: #ab8648;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(171, 134, 72, 0.12);
}

.phone-input-container-new .custom-dropdown {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
    height: 100%;
    width: 100%;
}

.phone-input-container-new .selected {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
    padding-right: 12px;
    border-right: 1px solid #cbd5e1;
    user-select: none;
    white-space: nowrap;
}

.phone-input-container-new .arrow-down {
    font-size: 9px;
    color: #64748b;
    margin-left: 2px;
}

.phone-input-container-new .phone-flex-iwrapper {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 12px;
}

.phone-input-container-new input.phone-input {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 14px !important;
    color: #1a1a1a !important;
    outline: none !important;
    box-shadow: none !important;
    font-family: 'Poppins', sans-serif !important;
}

.phone-input-container-new input.phone-input::placeholder {
    color: #a0aec0;
}

/* Consent Checkbox Styling */
.consent-container-new {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 14px 0;
}

.consent-container-new input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #ab8648;
}

.consent-container-new label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #64748b;
    line-height: 1.4;
    cursor: pointer;
    text-align: left;
}

.consent-container-new a {
    color: #3b82f6;
    text-decoration: underline;
    transition: color 0.2s;
}

.consent-container-new a:hover {
    color: #2563eb;
}

/* Premium Dark Pill Submit Button Styling */
#submitBtn {
    background: #1e293b !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 24px !important;
    padding: 12px 28px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: block !important;
    margin: 20px auto 0 !important;
    width: auto !important;
    height: auto !important;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.15);
    transition: all 0.3s ease !important;
    font-family: 'Poppins', sans-serif !important;
}

#submitBtn:hover {
    background: #0f172a !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30, 41, 59, 0.25);
}

#submitBtn:disabled {
    background: #94a3b8 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Bottom Bar */
.modal-bottom-bar {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    padding: 12px 24px;
    margin: 15px 30px 24px;
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 14px !important;
    box-shadow: none !important;
}

.modal-bottom-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.3px;
}

.modal-bottom-item svg {
    width: 16px;
    height: 16px;
    color: #ab8648;
    stroke: #ab8648;
    flex-shrink: 0;
}

/* ===================================================================
   REDESIGNED MODAL - MOBILE RESPONSIVE
   =================================================================== */
@media (max-width: 767px) {

    .modal-content-container {
        border-radius: 16px;
    }

    .modal-header-new {
        padding: 22px 20px 14px;
    }

    .modal-header-new h2 {
        font-size: 17px;
        letter-spacing: 2px;
    }

    .modal-header-line {
        width: 40px;
        margin-top: 10px;
    }

    .modal-body-new {
        flex-direction: column;
        padding: 8px 18px 18px;
        gap: 14px;
    }

    .modal-left-promise {
        flex: none;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }

    .promise-badge {
        width: auto;
        text-align: center;
        margin-bottom: 12px;
        font-size: 9px;
        padding: 6px 18px;
    }

    .promise-items-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }

    .promise-item {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        flex: 1;
        padding: 8px 6px;
        min-width: 0;
    }

    .promise-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .promise-icon svg {
        width: 18px;
        height: 18px;
    }

    .promise-text {
        align-items: center;
    }

    .promise-bold {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .promise-desc {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .modal-right-form {
        padding: 0;
    }

    .form-group-new input {
        padding: 12px 14px;
        font-size: 13px;
        border-radius: 8px;
    }

    .form-group-new {
        margin-bottom: 12px;
    }

    .phone-input-container-new {
        margin-bottom: 12px;
    }

    .phone-input-container-new .phone-flex-iwrapper input {
        padding: 12px 14px;
        font-size: 13px;
        border-radius: 8px;
    }

    .modal-bottom-bar {
        flex-wrap: wrap;
        gap: 10px 20px;
        padding: 12px 18px;
        justify-content: center;
    }

    .modal-bottom-item {
        font-size: 10px;
        gap: 5px;
    }

    .modal-bottom-item svg {
        width: 14px;
        height: 14px;
    }
}

/* Close button override for redesigned white-background modal */
.modal-box > .close {
    background: rgba(0, 0, 0, 0.06);
    color: #333;
    border-color: rgba(0, 0, 0, 0.1);
    top: 14px;
    right: 14px;
    z-index: 10001;
}

.modal-box > .close:hover {
    background: #ab8648;
    color: #fff;
    border-color: #ab8648;
}

/* ===================================================================
   OTP SECTION & THANK YOU POPUP IN-PLACE INLINE STYLES
   =================================================================== */
#otp-section,
#thankYouPopup1 {
    display: none;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
    margin: 10px auto !important;
}

#otp-section h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 0 16px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-align: center !important;
    width: 100% !important;
}

#otp-section .otp-input-wrapper {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto 16px !important;
}

#otp-section input#otp {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-family: 'Poppins', sans-serif !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 10px !important;
    background: #fafafa !important;
    color: #1a1a1a !important;
    text-align: center !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

#otp-section input#otp:focus {
    border-color: #ab8648 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(171, 134, 72, 0.12) !important;
}

#otp-section button {
    background: #1e293b !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 24px !important;
    padding: 10px 24px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: block !important;
    margin: 14px auto 0 !important;
    width: 100% !important;
    max-width: 160px !important;
    height: auto !important;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.15) !important;
    transition: all 0.3s ease !important;
    font-family: 'Poppins', sans-serif !important;
}

#otp-section button:hover {
    background: #0f172a !important;
    box-shadow: 0 6px 16px rgba(30, 41, 59, 0.25) !important;
}

#otp-section p#otp-error-msg {
    font-family: 'Poppins', sans-serif !important;
    font-size: 11px !important;
    margin: 10px 0 0 0 !important;
}

#timerDisplay {
    font-family: 'Poppins', sans-serif !important;
    font-size: 11px !important;
    margin-top: 6px !important;
    display: inline-block !important;
}

#thankYouPopup1 .thank-you-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 0 !important;
}

#thankYouPopup1 h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    color: #ab8648 !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    margin: 0 0 8px 0 !important;
    width: 100% !important;
}

#thankYouPopup1 p {
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    color: #64748b !important;
    margin: 0 !important;
}

/* Premium Keyframes for PRE-BOOKINGS OPEN Animation */
@keyframes goldGlowShimmer {
    0%, 100% {
        transform: translateX(0);
        color: #ffd700;
        text-shadow: 0 0 3px rgba(255, 215, 0, 0.4), 1px 1px 3px rgba(0, 0, 0, 0.8);
    }
    /* Shaking & Glowing Phase (Takes place in first 0.8s of a 4s loop) */
    2%, 6%, 10%, 14%, 18% {
        transform: translateX(-2px);
        color: #ffffff;
        text-shadow: 0 0 12px rgba(255, 215, 0, 0.9), 1px 1px 5px rgba(0, 0, 0, 0.9);
    }
    4%, 8%, 12%, 16% {
        transform: translateX(2px);
        color: #ffffff;
        text-shadow: 0 0 12px rgba(255, 215, 0, 0.9), 1px 1px 5px rgba(0, 0, 0, 0.9);
    }
    /* Resting & Soft Glowing Phase (Remaining 3.2s) */
    20% {
        transform: translateX(0);
        color: #ffd700;
        text-shadow: 0 0 3px rgba(255, 215, 0, 0.4), 1px 1px 3px rgba(0, 0, 0, 0.8);
    }
    50% {
        color: #ffffff;
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.7), 1px 1px 4px rgba(0, 0, 0, 0.8);
    }
}

@keyframes goldGlowShimmerMobile {
    0%, 100% {
        transform: translateX(0);
        color: #ab8648;
        text-shadow: 0 0 2px rgba(171, 134, 72, 0.3);
    }
    /* Shaking & Glowing Phase */
    2%, 6%, 10%, 14%, 18% {
        transform: translateX(-2px);
        color: #ffd700;
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    4%, 8%, 12%, 16% {
        transform: translateX(2px);
        color: #ffd700;
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    /* Resting Phase */
    20% {
        transform: translateX(0);
        color: #ab8648;
        text-shadow: 0 0 2px rgba(171, 134, 72, 0.3);
    }
    50% {
        color: #ffd700;
        text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
    }
}
/* Base styles — already defined */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-box {
    background: white;
    max-width: 650px;
    width: 92%;
    margin: 5% auto;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(171, 134, 72, 0.15);
    animation: modalFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-banner-mobile {
    display: none;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.modal-banner-mobile .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-banner-mobile .banner-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 80px;
    height: auto;
    opacity: 0.8;
}

.modal-left {
    width: 50%;
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.modal-left h2 {
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 24px;
    text-align: center;
}

.modal-left input,
.modal-left textarea {
    margin-bottom: 18px;
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'popins', sans-serif;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    background: #fafafa;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1a1a1a;
    width: 100%;
}

.modal-left input:focus,
.modal-left textarea:focus {
    border-color: #ab8648;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(171, 134, 72, 0.12);
    outline: none;
}

.modal-left input::placeholder,
.modal-left textarea::placeholder {
    color: #a0aec0;
}

.input-with-button {
    position: relative;
    width: 100%;
}

.input-with-button input {
    padding-right: 120px;
}

.input-with-button button {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    padding: 10px 18px;
    font-size: 14px;
    background: #0E1F24;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.2s ease;
}

.input-with-button button:hover {
    background: #1a343b;
}

textarea {
    resize: vertical;
    min-height: 90px;
}

.submit-btn {
    background: #ab8648;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(171, 134, 72, 0.3);
}

.submit-btn:hover {
    background: #8a652e;
    box-shadow: 0 6px 20px rgba(171, 134, 72, 0.45);
    transform: translateY(-2px);
}

#otp-section {
    margin-top: 50px;
}

#otp-section h2 {
    font-size: 26px !important;
    margin-top: 0 !important;
}

#otp-section .btn3 {
    width: 100% !important;
    margin: auto !important;
}

.modal-right {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.modal-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-family: Arial, sans-serif;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.close:hover {
    background: #ab8648;
    color: #ffffff;
    transform: rotate(90deg);
    border-color: #ab8648;
    box-shadow: 0 0 15px rgba(171, 134, 72, 0.4);
}

.btn {
    padding: 10px;
    background-color: Gray;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: -3px;
    margin-left: 20px;
}

.phone-wrapper {
    display: flex;
    gap: 10px;
}

.country-code-wrapper {
    display: flex;
    gap: 8px;
    /* Adds spacing between select and input */
    align-items: center;
    max-width: 100%;
}

.country-code-select {
    max-height: 150px;
    overflow-y: auto;
    width: 100px;
    height: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 6px 8px;
    box-sizing: border-box;
    -webkit-transition: none !important;
    transition: none !important;
}

.country-code-select option {
    white-space: nowrap;
    /* Prevent wrapping */
}


/* Responsive - Mobile View */
@media (max-width: 767px) {


    .modal-box {
        flex-direction: column;
        width: 95%;
        margin: 8% auto;
        border-radius: 16px;
    }

    .modal-left {
        width: 100% !important;
        padding: 30px 20px !important;
        text-align: center;
    }

    #otp-section {
        margin-top: 15px;
    }

    .modal-right {
        display: none;
    }

    .modal-banner-mobile {
        display: block;
    }

    .modal-left h2 {
        margin-top: 0;
        font-size: 22px;
    }

    .close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .custom-dropdown .selected {
        flex: 0.45;
        height: 48px;
        font-size: 13px;
        padding: 0 10px;
    }

    .phone-flex-iwrapper input {
        height: 48px !important;
        font-size: 14px !important;
    }

    .input-with-button {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .btn {
        margin-left: -2px;
    }

    .input-with-button input {
        width: 100%;
        padding-right: 120px;
        height: 44px;
        font-size: 14px;
        border-radius: 6px;
        box-sizing: border-box;
    }

    .input-with-button button {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        padding: 8px 14px;
        /* Adjusted padding */
        font-size: 13px;
        background: #333;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        line-height: 1;
        height: 30px;
        /* Match vertical size better */
    }
}
/* Toast CSS */
.toast {
      visibility: hidden;
      min-width: 250px;
      max-width: 90%;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 8px;
      padding: 16px;
      position: fixed;
      top: 30px;
      bottom: auto;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9999;
      font-size: 16px;
      opacity: 0;
      transition: opacity 0.4s ease-in-out;
}

.toast.show {
      visibility: visible;
      opacity: 1;
}

/* Added custom-dropdown styles */
.custom-dropdown {
    position: relative;
    width: 100%;
    margin-bottom: 18px;
}

.custom-dropdown .selected {
    flex: 0.45;
    background: #fafafa;
    border: 1.5px solid #e2e8f0;
    padding: 14px 15px;
    border-radius: 10px;
    height: 52px;
    font-size: 14px;
    font-family: 'popins', sans-serif;
    color: #1a1a1a;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    user-select: none;
}

.custom-dropdown .selected:hover {
    border-color: #ab8648;
    background: #ffffff;
}

.custom-dropdown .selected::after {
    content: '▾';
    font-size: 12px;
    color: #ab8648;
    margin-left: 8px;
}

.phone-flex-iwrapper {
    flex: 0.55;
    position: relative;
}

.phone-flex-iwrapper input {
    width: 100% !important;
    margin-bottom: 0 !important;
    height: 52px !important;
    padding: 14px 18px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
}

.custom-dropdown .dropdown-list {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 1000;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    display: none;
}

.custom-dropdown .dropdown-list li {
    padding: 10px 18px;
    font-size: 14px;
    font-family: 'popins', sans-serif;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-dropdown .dropdown-list li:hover {
    background: #f7f5f0;
    color: #ab8648;
}

.custom-dropdown .dropdown-list li img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


#name {
    width: 100%;
}

#email {
    width: 100%;
}

/* Fix for large gap between featured projects text and slider on mobile */
@media (max-width: 768px) {
  .experience-homes-header {
    margin-bottom: 10px !important;
  }
  .simple-slider {
    padding-top: 0px !important;
  }
  .experience-homes-header p {
    margin-bottom: 5px !important;
  }
  .slide {
    padding-top: 5px !important;
  }
}

/* Responsive Disclaimer */
@media (max-width: 768px) {
  .disclaimer-pipe {
    display: none !important;
  }
  .disclaimer-title {
    display: block !important;
    margin-bottom: 5px;
    font-size: 11px;
  }
  .disclaimer-text {
    display: block !important;
    font-size: 10px;
    line-height: 1.4;
  }
}
