/* =====================================================
   GLOBAL RESET & BASE
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2937;
  /*background: #f9f9f9;*/
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =====================================================
   TOP CONTACT BAR
===================================================== */

.header-top {
  background: linear-gradient(90deg, #1c1c1c, #2a2a2a);
  color: #f5c77a;
  font-size: 12px;
  letter-spacing: 0.6px;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  padding: 0 8%;
}

.top-left span {
  margin-right: 20px;
}

.top-right a {
  margin-left: 16px;
  color: #f5c77a;
  font-weight: 700;
}

.top-right a:hover {
  color: #ffffff;
}

/* =====================================================
   MAIN HEADER
===================================================== */
/* =====================================================
   SITE HEADER
===================================================== */
.site-header {
  position: sticky;
  top: 0; /* changed to 0 for a smooth sticky effect */
  z-index: 1000;
  background: #ffffff;
  box-shadow: none; /* no border */
  transition: all 0.3s ease;
}

/* Add shadow when scrolled */
.site-header.scrolled {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Flex container for logo and nav */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 6%;
}

/* Logo */
.logo {
  height: 100px;
  object-fit: contain;
}

/* =====================================================
   NAVIGATION (DESKTOP)
===================================================== */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #f59541;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* Underline hover effect */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f5c77a, #fc4a1a);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border-radius: 999px; /* pill shape */
  background: linear-gradient(90deg, #f5c77a, #fc4a1a);
  color: #111 !important;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(252, 74, 26, 0.3);
  border: none;
  transition: all 0.3s ease;
}

.nav-cta .cta-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(252, 74, 26, 0.45);
}

.nav-cta:hover .cta-icon {
  transform: translateX(6px);
}


.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(252, 74, 26, 0.35);
}

.nav-cta::after {
  display: none;
}

/* Optional: Smooth color transition for links */
.nav a:hover {
  color: #fc4a1a;
}


/* =====================================================
   HAMBURGER
===================================================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #1f2933;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =====================================================
   MOBILE NAV (SINGLE SYSTEM)
===================================================== */
@media (max-width: 900px) {

  .menu-toggle {
    display: flex;
  }

  .logo {
    height: 86px;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1100;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav a {
    font-size: 1.4rem;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* =====================================================
   HERO – MODERN SLIDER
===================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  padding-top: 140px;
  overflow: hidden;
  display: flex;
  align-items: center;
  /*background: #000;*/
   background: linear-gradient(
    120deg,
    rgba(0,0,0,0.45),
    rgba(255,140,0,0.25)
  );
}

.hero-slider .slides {
  position: absolute;
  inset: 0;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  animation: heroFade 18s infinite ease-in-out;
}

.hero-slider .slide:nth-child(1) { animation-delay: 0s; }
.hero-slider .slide:nth-child(2) { animation-delay: 6s; }
.hero-slider .slide:nth-child(3) { animation-delay: 12s; }

@keyframes heroFade {
  0% { opacity: 0; transform: scale(1.08); }
  10% { opacity: 1; transform: scale(1); }
  30% { opacity: 1; }
  40% { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.25)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 50px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  color: #fff;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 span {
  background: linear-gradient(90deg, #ffd86f, #f7b733);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 28px;
}

.hero .btn-primary {
  padding: 14px 34px;
  border-radius: 40px;
  background: linear-gradient(90deg, #f7b733, #fc4a1a);
  box-shadow: 0 12px 30px rgba(252,74,26,0.45);
  border: none;
}



/* =====================================================
   PROJECT CARDS
===================================================== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.project-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* =====================================================
   SITE VISIT FORM
===================================================== */
.site-visit {
  background: #f9fafb;
  padding: 80px 20px;
}

.visit-card {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.visit-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.visit-form input,
.visit-form select {
  flex: 1;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}
/* ==============================
   HOME PAGE - SITE VISIT SECTION
   Namespaced as .site-visit-home
================================= */

.site-visit-home {
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  padding: 80px 20px;
}

.site-visit-home .visit-card-home {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 35px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  text-align: center;
}

.site-visit-home h2 {
  font-size: 32px;
  color: #ff4b2b;
  margin-bottom: 20px;
}

.site-visit-home .visit-intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Form Styling */
.site-visit-home .visit-form-home .form-row-home {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.site-visit-home .visit-form-home label {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #333;
}

.site-visit-home .visit-form-home input,
.site-visit-home .visit-form-home select {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  margin-top: 6px;
  font-size: 14px;
}

.site-visit-home .btn-submit-home {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-visit-home .btn-submit-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Tablet */
@media (max-width: 1024px) {
  .site-visit-home .visit-card-home {
    padding: 40px 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .site-visit-home .visit-card-home {
    padding: 30px 20px;
  }

  .site-visit-home h2 {
    font-size: 26px;
  }

  .site-visit-home .visit-intro {
    font-size: 15px;
  }

  .site-visit-home .visit-form-home .form-row-home {
    flex-direction: column;
  }
}

/* ==============================
   HOME PAGE - MEDIA SECTION
   Namespaced as .section-media-home
================================= */

.section-media-home {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
  font-family: Arial, sans-serif;
}

.section-media-home h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ff7a00;
  font-weight: 600;
}

.section-media-home .media-intro {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Media Grid */
.section-media-home .media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.section-media-home .media-card {
  background: #ffffff;
  padding: 30px 15px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-media-home .media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.section-media-home .media-placeholder {
  font-size: 40px;
  margin-bottom: 12px;
}

.section-media-home .media-card p {
  font-size: 14px;
  color: #555;
}

/* Subscribe Section */
.section-media-home .media-subscribe {
  max-width: 480px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.section-media-home .media-subscribe h3 {
  color: #ff4b2b;
  margin-bottom: 12px;
}

.section-media-home .media-subscribe p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.section-media-home .subscribe-form-home {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.section-media-home .subscribe-form-home input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
}

.section-media-home .subscribe-form-home .btn-submit-home {
  padding: 12px 20px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-media-home .subscribe-form-home .btn-submit-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Tablet – 2 columns */
@media (max-width: 1024px) {
  .section-media-home .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile – single column */
@media (max-width: 600px) {
  .section-media-home .media-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-media-home h2 {
    font-size: 26px;
  }

  .section-media-home .media-intro {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .section-media-home .subscribe-form-home {
    flex-direction: column;
  }
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 20px 25px;
}

.site-footer h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
}

.site-footer h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #f59e0b;
  margin-top: 6px;
}


.site-footer a {
  color: #cbd5e1;
  transition: all 0.25s ease;
}

.site-footer a:hover {
  color: #f59e0b;
  padding-left: 4px;
}
.site-footer p,
.site-footer li {
  line-height: 1.7;
  font-size: 0.95rem;
}


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 18px;
}


/* =====================================================
   GOOGLE TRANSLATE (CLEAN BUTTON)
===================================================== */
.translate-navbar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 4px 8px;
  border-radius: 6px;
}

.translate-icon {
   font-size: 14px;
  color: #f59e0b; 
}
.translate-navbar:hover .translate-icon {
  color: #fb923c;
}
#google_translate_select {
  background: transparent;
  border: none;
  /*color: #ffffff;*/
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

#google_translate_select option {
  color: #ff9800;
}

/* Google Translate container (navbar friendly) */
#google_translate_element {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
}

/* Remove default Google styling */
.goog-te-gadget-simple {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-size: 13px !important;
  line-height: 1;
}

/* Text inside dropdown */
.goog-te-gadget-simple .goog-te-menu-value span {
  color: #ffffff !important; /* change if navbar is light */
  font-weight: 600;
}

/* Hide Google branding (clean look) */
.goog-logo-link,
.goog-te-gadget-icon {
  display: none !important;
}

/* Prevent page jump */
body {
  top: 0 !important;
}

/* Dropdown select styling */
.goog-te-combo {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

/* Dropdown options */
.goog-te-combo option {
  color: #000;
}

/* Hover effect */
.goog-te-combo:hover {
  border-color: #f59e0b;
}

/* Mobile navbar adjustment */
@media (max-width: 768px) {
  #google_translate_element {
    margin-left: 8px;
  }
}

/* =====================================================
   GLOBAL SECTION SPACING
===================================================== */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 2.1rem;
  margin-bottom: 20px;
  color: #1f2933;
}

.section p {
  color: #4b5563;
  max-width: 720px;
}

/* =====================================================
   HERO (Already video-based)
===================================================== */
.hero {
  position: relative;
  height: 100vh;
  color: #ffffff;
}

.hero-overlay {
  background: linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.35)
  );
}

/* =====================================================
   TRUST COUNTERS – Clean White Cards
===================================================== */
.section-trust {
  background: #ffffff;
}

.section-trust .project-card {
  background: #f9fafb;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

/* =====================================================
   ABOUT – Soft Neutral Background
===================================================== */
.section-about {
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 100%
  );
}

/* =====================================================
   WHY CHOOSE US – Light Corporate Contrast
===================================================== */
.section-why {
  background: #f1f5f9;
}

.section-why .project-card {
  background: #ffffff;
  border-left: 4px solid #f59e0b;
}

/* =====================================================
   PROCESS – Subtle Grid Feel
===================================================== */
.section-process {
  background: #ffffff;
}

.section-process .project-card {
  border: 1px solid #e5e7eb;
  box-shadow: none;
}

/* =====================================================
   PROJECTS – Premium Dark + Orange Accent
===================================================== */

.section-projects {
  background: linear-gradient(
    180deg,
    #0f172a 0%,
    #111827 100%
  );
  padding: 70px 20px;
}

/* Heading */
.section-projects h2 {
  color: #ff7a00; /* ORANGE LOGO COLOR */
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

/* Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.section-projects .project-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 122, 0, 0.25); /* ORANGE BORDER */
  border-radius: 14px;
  padding: 25px;
  transition: all 0.3s ease;
}

/* Hover */
.section-projects .project-card:hover {
  transform: translateY(-6px);
  border-color: #ff7a00;
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.25);
}

/* Text */
.section-projects .project-card h3 {
  color: #ff7a00;
  font-size: 20px;
  margin-bottom: 6px;
}

.section-projects .project-card small {
  color: #fbbf24; /* Soft orange-gold */
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
}

.section-projects .project-card p {
  color: #e5e7eb;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Button */
.section-projects .btn-outline {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 25px;
  border: 1px solid #ff7a00;
  color: #ff7a00;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-projects .btn-outline:hover {
  background: #ff7a00;
  color: #111827;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .section-projects h2 {
    font-size: 26px;
  }

  .project-card {
    padding: 20px;
  }
}
.project-type-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  margin-left: 10px;
  vertical-align: middle;
  color: #fff;
  text-transform: uppercase;
}

/* Residential badge */
.project-type-badge.residential {
  background: #34d399; /* green */
}

/* Commercial badge */
.project-type-badge.commercial {
  background: #fbbf24; /* yellow-orange */
}

/* Optional: small shadow */
.project-type-badge {
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* =====================================================
   NRI CORNER – International Premium Section
===================================================== */

.section-nri {
  background: linear-gradient(135deg, #0f172a, #111827);
  padding: 80px 20px;
  overflow: hidden;
}

.nri-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* CONTENT */
.nri-content h2 {
  color: #ff7a00;
  font-size: 34px;
  margin-bottom: 15px;
}

.nri-content p {
  color: #000;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 480px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  background: #ff7a00;
  color: #111827;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ffa24d;
  transform: translateY(-2px);
}

/* VISUAL */
.nri-visual {
  position: relative;
}

.nri-visual img {
  width: 100%;
  height: auto;
  border-radius: 0 0 0 120px; /* CURVED MASK */
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,122,0,0.25);
}

/* ORANGE GLOW ACCENT */
.nri-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0 0 0 120px;
  box-shadow: inset 0 0 80px rgba(255,122,0,0.15);
  pointer-events: none;
}

/* TABLET */
@media (max-width: 1024px) {
  .nri-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nri-content p {
    margin: 0 auto 25px;
  }

  .nri-visual img {
    border-radius: 30px;
  }
}

/* MOBILE – ALL HANDSETS */
@media (max-width: 600px) {
  .section-nri {
    padding: 60px 20px;
  }

  .nri-content h2 {
    font-size: 26px;
  }

  .nri-content p {
    font-size: 14px;
  }
}
/* =================================
   NRI HOME PAGE
   Namespaced: .nri-home
================================= */

.nri-home .contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.nri-home .contact-form label {
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
  display: block;
}

.nri-home .contact-form input,
.nri-home .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 18px;
  background: #fafafa;
}

.nri-home .contact-form input:focus,
.nri-home .contact-form textarea:focus {
  outline: none;
  border-color: #c28b00;
  box-shadow: 0 0 0 3px rgba(194,139,0,.15);
  background: #fff;
}

.nri-home .contact-form button {
  width: 100%;
  padding: 14px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.nri-home .contact-form button:hover {
  background: #c28b00;
}

.nri-home #formMsg {
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: .9rem;
}

.nri-home #formMsg.success {
  background: #e8f8ef;
  color: #0f5132;
  border-left: 4px solid #198754;
}

.nri-home #formMsg.error {
  background: #fdecea;
  color: #842029;
  border-left: 4px solid #dc3545;
}
/* NRI PROJECT GRID */
.nri-home .project-grid-nri {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.nri-home .project-card-nri {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nri-home .project-card-nri img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.nri-home .project-card-nri h3 {
  font-size: 18px;
  margin: 10px;
  color: #ff7a00;
}

.nri-home .project-card-nri p {
  font-size: 14px;
  margin: 0 10px 10px 10px;
  color: #555;
}

.nri-home .project-card-nri:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nri-home .project-grid-nri {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .nri-home .project-grid-nri {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   NRI – Calm International Feel
===================================================== */
.section-nri {
  background: linear-gradient(
    180deg,
    #fefce8 0%,
    #ffffff 100%
  );
}

/* =====================================================
   CTA – Warm Orange Corporate Accent
===================================================== */
.section-cta {
  background: linear-gradient(
    135deg,
    rgba(245,158,11,0.12),
    rgba(245,158,11,0.05)
  );
}

.section-cta h2 {
  color: #92400e;
}

/* =====================================================
   SITE VISIT – Card Focused Section
===================================================== */
.site-visit {
  background: #f8fafc;
}

.visit-card {
  background: #ffffff;
  padding: 48px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* =====================================================
   MOBILE REFINEMENTS
===================================================== */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .visit-card {
    padding: 32px 22px;
  }
}
@media (max-width: 900px) {

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1000;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav a {
    font-size: 1.4rem;
  }
}
.trust-strip {
  background: #020617;
  color: #fff;
  padding: 40px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}

.trust-grid strong {
  font-size: 2rem;
  display: block;
  color: #f59e0b;
}

.trust-grid span {
  font-size: 0.9rem;
  opacity: 0.85;
}
.rera-note {
  margin-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
}
/* ================================
   INNER PAGE HERO (IMAGE + TEXT)
================================ */
/* ================================
   INNER PAGE HERO (IMAGE + TEXT)
================================ */

.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align content to right */
  padding: 140px 20px 60px;

  background-image: url("../images/hero-inner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.45),
    rgba(255,140,0,0.25)
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;

  max-width: 450px; /* narrower for right-side placement */
  padding: 50px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);

  color: #fff;
  text-align: right; /* align text inside the div to the right */
  margin-right: 20px; /* optional spacing from the edge */
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
  .page-hero { justify-content: flex-end; padding: 120px 20px 50px; }
  .page-hero-content { max-width: 280px; padding: 40px; }
}

@media (max-width: 768px) {
  .page-hero { justify-content: center; padding: 100px 15px 40px; }
  .page-hero-content { max-width: 90%; text-align: center; }
}

@media (max-width: 480px) {
  .page-hero { justify-content: center; padding: 80px 10px 30px; }
  .page-hero-content { max-width: 90%; text-align: center; padding: 20px; }
}


.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.page-hero h1 span {
  background: linear-gradient(90deg, #ffd86f, #f7b733);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 15px;
}

.page-hero .rera-note {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 10px;
}

/* ================================
   CONTACT GRID
================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.contact-info h2 { margin-bottom: 15px; }

.contact-info ul.contact-list {
  list-style: none;
  padding: 0;
}

.contact-info ul.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-info ul.contact-list li .icon {
  font-size: 1.3rem;
  margin-right: 10px;
}

/* ================================
   CONTACT FORM
================================ */
/* FORM */
.visit-form {
  margin-top: 30px;
}

/* ROW LAYOUT */
.visit-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.visit-form .form-row input,
.visit-form .form-row textarea,
.visit-form .form-row select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  background: #f9fafb;
  color: #111827;
}

/* TEXTAREA */
.visit-form textarea {
  resize: none;
}

/* FOCUS STATE */
.visit-form input:focus,
.visit-form textarea:focus,
.visit-form select:focus {
  outline: none;
  border-color: #f7b733;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(247, 183, 51, 0.25);
}

/* SUBMIT BUTTON */
.btn-submit {
  background: linear-gradient(90deg, #f7b733, #ffd86f);
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(247, 183, 51, 0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .visit-form .form-row {
    flex-direction: column;
  }
}

/* ================================
   MAP
================================ */
iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 15px;
}

/* ================================
   CTA
================================ */
.cta {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(120deg, #ffd86f, #f7b733, #ff9f00);
  color: #fff;
  border-radius: 20px;
}

.cta .btn-primary { margin-top: 20px; }

/* ================================
   RESPONSIVE HERO
================================ */
@media (max-width: 1024px) { .page-hero { min-height: 60vh; padding: 120px 20px 50px; } }
@media (max-width: 768px)  { .page-hero { min-height: 50vh; padding: 100px 15px 40px; } }
@media (max-width: 480px)  { .page-hero { min-height: 45vh; padding: 80px 10px 30px; } }

/*BG VARIANT*/
.bg-light {
  background: #f9fafb;
}

.bg-soft {
  background: linear-gradient(
    to bottom,
    #ffffff,
    #f3f4f6
  );
}

.center-text {
  text-align: center;
}

.lead {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  color: #374151;
}
/*WHO WE ARE*/

.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.stat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

.stat-card h3 {
  font-size: 2.1rem;
  color: #f97316;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 22px;
}

/*========================/* PHILOSOPHY SECTION */

/* ==============================
   PHILOSOPHY SECTION
================================ */

.philosophy {
  background: #0f172a;
  color: #e5e7eb;
  padding: 80px 0;
}

/* SPLIT LAYOUT */

.philosophy .split-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.philosophy .split-content,
.philosophy .split-image {
  width: 50%;
}

/* TEXT */

.philosophy h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 2.4rem;
}

.philosophy .lead {
  color: #cbd5f5;
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 620px;
}

/* ICON GRID */

.philosophy .icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.philosophy .icon-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 30px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy .icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.philosophy .icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.philosophy .icon-card h3 {
  color: #fbbf24;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.philosophy .icon-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* IMAGE */

.philosophy .split-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* ==============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {

  .philosophy {
    padding: 60px 0;
  }

  .philosophy .split-row {
    flex-direction: column;
    gap: 40px;
  }

  .philosophy .split-content,
  .philosophy .split-image {
    width: 100%;
  }

  .philosophy h2 {
    font-size: 1.9rem;
  }

  .philosophy .lead {
    font-size: 1rem;
  }

  /* ONE CARD PER ROW */
  .philosophy .icon-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .philosophy .icon-card {
    padding: 24px;
  }
}
/*CONTACT US */
/* ================================
   MODERN CONTACT SECTION
================================ */

.contact-modern {
  background: #fff7ed;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT INFO */

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-sub {
  color: #6b7280;
  margin-bottom: 30px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.contact-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-list .icon {
  color: #f97316;
  font-size: 1.2rem;
}

.contact-list a {
  color: #111827;
  text-decoration: none;
}

.contact-list a:hover {
  color: #f97316;
}

.office-hours h4 {
  margin-bottom: 8px;
  color: #111827;
}

/* RIGHT FORM */

.contact-form-modern {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.contact-form-modern h3 {
  margin-bottom: 25px;
}

.form-group {
  position: relative;
  margin-bottom: 22px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  outline: none;
  font-size: 0.95rem;
  background: transparent;
}

.form-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: #9ca3af;
  background: #fff;
  padding: 0 6px;
  pointer-events: none;
  transition: 0.3s ease;
}

.form-group textarea + label {
  top: 18px;
  transform: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f97316;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 0.7rem;
  color: #f97316;
}

/* BUTTON */

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-icon span {
  transition: transform 0.3s ease;
}

.btn-icon:hover span {
  transform: translateX(6px);
}

/* MOBILE */

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   ALERTS (AJAX RESPONSE)
================================ */

.alert {
  padding: 12px 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.alert.success {
  background: #e8f8ef;
  color: #0f5132;
  border-left: 4px solid #198754;
}

.alert.error {
  background: #fdecea;
  color: #842029;
  border-left: 4px solid #dc3545;
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {
  .contact-form {
    padding: 25px;
  }

  .contact-form button {
    padding: 13px;
  }
}

.alert {
  max-width: 900px;
  margin: 20px auto;
  padding: 15px 20px;
  border-radius: 6px;
  font-weight: 500;
}

.alert.success {
  background: #e8f8ef;
  color: #0f5132;
  border-left: 5px solid #198754;
}

.alert.error {
  background: #fdecea;
  color: #842029;
  border-left: 5px solid #dc3545;
}
/*===============================
PROJECTS
==========================================*/

/* =======================home pge projects */
/* ==========================
   HOME PAGE PROJECTS ONLY
========================== */

.home-projects {
  background: #020617;
  color: #e5e7eb;
}

/* Grid */
.home-projects .project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.home-projects .project-card {
  background: rgba(255,255,255,0.05);
  padding: 40px 30px 30px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-projects .project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

/* Circular Image */
/*.home-projects .project-image {*/
/*  width: 120px;*/
/*  height: 120px;*/
/*  margin: -90px auto 20px;*/
/*  border-radius: 50%;*/
/*  overflow: hidden;*/
/*  background: #020617;*/
/*  border: 4px solid #020617;*/
/*}*/

/* Curved project image (homepage only) */
/*.home-projects .project-image {*/
/*  width: 100%;*/
/*  height: 190px;*/
/*  margin: -60px auto 25px;*/
/*  overflow: hidden;*/
/*  border-radius: 140px 140px 24px 24px;*/
/*  background: #020617;*/
/*}*/

/*.home-projects .project-image img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*}*/
/*@media (max-width: 768px) {*/
/*  .home-projects .project-image {*/
/*    height: 160px;*/
/*    margin: -40px auto 20px;*/
/*    border-radius: 120px 120px 20px 20px;*/
/*  }*/
/*}*/
/* Rounded rectangular project image */
.home-projects .project-image {
  width: 100%;
  height: auto;       /* keeps image ratio, no cropping */
  margin-bottom: 20px;
  border-radius: 16px; /* soft rounded corners */
  overflow: hidden;
  background: #020617;
}

.home-projects .project-image img {
  width: 100%;
  height: auto;        /* preserves original image aspect ratio */
  display: block;
  object-fit: cover;   /* optional: crop minimally if needed */
  border-radius: 16px; /* match container */
}
@media (max-width: 768px) {
  .home-projects .project-image {
    border-radius: 12px;
  }
}
/* HOME PROJECTS GRID */
.home-projects .project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* two equal columns */
  gap: 30px;
}

/* Responsive: 1 column on mobile */
@media (max-width: 768px) {
  .home-projects .project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Project Card */
.home-projects .project-card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-projects .project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Image inside Card */
.home-projects .project-image {
  width: 100%;
  height: auto;         /* keeps original aspect ratio */
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  background: #020617;
}

.home-projects .project-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Text */
.home-projects .project-card h3 {
  color: #fbbf24;
  margin-bottom: 6px;
}

.home-projects .project-card small {
  display: block;
  opacity: 0.75;
  margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .home-projects .project-grid {
    grid-template-columns: 1fr;
  }

  .home-projects .project-image {
    margin: 0 auto 20px;
  }
}


/* ==============================home pge projects */
.project-location {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
}

.project-status {
  font-weight: 600;
  margin-top: 10px;
}

.project-status.ongoing {
  color: #c28b00;
}

.project-status.completed {
  color: #198754;
}
/* INTRO PARAGRAPH */
.project-about .project-about-intro {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.7;
  color: #374151;
}

/* TWO COLUMN LAYOUT */
.project-about .project-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  margin-top: 20px;
  text-align: left;
}

/* VERTICAL SEPARATOR */
.project-about .project-about-split::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #e5e7eb;
  transform: translateX(-50%);
}

/* PARAGRAPH STYLE */
.project-about .project-about-split p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .project-about .project-about-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-about .project-about-split::before {
    display: none;
  }

  .project-about .project-about-split p {
    text-align: center;
  }
}

/*============================
gallery 
==============================*/
/* ALTERNATE BACKGROUNDS */
.project-section .project-item.bg-lightgray {
  background: #f3f4f6; /* soft light gray */
  padding: 30px;
  border-radius: 20px;
}

.project-section .project-item.bg-lightorange {
  background: #fff7ed; /* light orange */
  padding: 30px;
  border-radius: 20px;
}

/* PROJECT ITEM GRID */
.project-section .project-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

/* REVERSE LAYOUT */
.project-section .project-item.reverse {
  direction: rtl;
}

.project-section .project-item.reverse > * {
  direction: ltr;
}

/* IMAGES */
.project-section .project-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-height: 360px;
  overflow-y: auto;
}

.project-section .project-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0 60px 0 60px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

/* EVERY 3RD IMAGE FULL WIDTH */
.project-section .project-images img:nth-child(3n) {
  grid-column: span 2;
  height: 220px;
  border-radius: 60px 0 60px 0;
}

/* REVERSE CURVES */
.project-section .project-item.reverse .project-images img {
  border-radius: 60px 0 60px 0;
}
.project-section .project-item.reverse .project-images img:nth-child(3n) {
  border-radius: 0 60px 0 60px;
}

/* MOBILE */
@media (max-width: 768px) {
  .project-section .project-item {
    grid-template-columns: 1fr;
  }

  .project-section .project-images {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .project-section .project-images img,
  .project-section .project-images img:nth-child(3n) {
    grid-column: auto;
    height: 200px;
    border-radius: 24px !important;
  }
}

/*===============================
PROJECTS ends
==========================================*/

/*====================================
forece white back ground 
/* ================================

/* FORCE WHITE HEADER + LOGO AREA */
.site-header {
  background: #ffffff !important;
}

.site-header.scrolled {
  background: #ffffff !important;
}

/* Logo container safety */
.logo-wrap {
  background: #ffffff;
}

/* Ensure nav area stays white */
.header-flex {
  background: #ffffff;
}

/* Fix any inherited dark background */
.site-header *,
.header-flex * {
  background-color: transparent;
}

/* Optional: keep nav text dark */
.nav a {
  color: #111;
}

/*==========================================
menu fix on mobile 
/*========================================
/* ===============================
   UNIVERSAL MOBILE MENU TOGGLE
================================ */

/* Reset any inherited styles */
.menu-toggle {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 6px;
  margin: 0;
  width: auto !important;
  min-width: unset !important;
  max-width: unset !important;
  height: auto;
  line-height: 1;
  cursor: pointer;
  display: none; /* desktop hidden */
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hamburger lines */
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #111;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Mobile + tablets */
@media (max-width: 1024px) {
  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 1024px) {

  .nav {
    position: fixed;
    top: 90px; /* below header */
    right: 0;
    width: 100%;
    height: auto;              /* 🔴 IMPORTANT */
    max-height: calc(100vh - 90px);
    background: #ffffff;
    padding: 12px 0;           /* 🔴 REDUCED */
    overflow-y: auto;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .nav.active {
    display: flex;
  }
}
/* ===========================
   SPLIT IMAGE + CONTENT
=========================== */

.split-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-image {
  flex: 1;
}

.split-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.split-image {
  flex: 1;
  min-height: 320px;   /* 🔴 KEY FIX */
  display: flex;
  align-items: center;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills area properly */
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}


.split-content {
  flex: 1;
}

/* MOBILE STACK */
@media (max-width: 992px) {
  .split-row,
  .split-row.reverse {
    flex-direction: column;
  }

  .split-image {
    order: -1; /* image on top */
  }
}
.split-image {
  flex: 1;
  min-height: 320px;   /* 🔴 KEY FIX */
  display: flex;
  align-items: center;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills area properly */
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
/*======================================================
WHY CHOOSE US
/*======================================================
/* ===========================
   WHY CHOOSE US – MODERN
=========================== */

/* ===========================
   WHY CHOOSE US – LUXURY
=========================== */

.section-why {
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 90px;
  position: relative;
}

/* Vertical divider (desktop only) */
.why-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #eee;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  padding-left: 40px;
}

/* Number */
.why-num {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  letter-spacing: 1px;
  color: #aaa;
}

/* Icon */
.why-item i {
  font-size: 26px;
  color: #ff6a00;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Text */
.why-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-width: 90%;
}

/* Subtle hover (luxury feel) */
.why-item:hover i {
  transform: translateY(-2px);
}

.why-item i {
  transition: transform 0.3s ease;
}

/* MOBILE */
@media (max-width: 992px) {
  .why-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-list::before {
    display: none;
  }

  .why-item p {
    max-width: 100%;
  }
}
/*=================================================
Processs
/*=================================================
/* ===========================
   REDEVELOPMENT PROCESS FLOW
=========================== */
/* ==============================
   PROCESS SECTION - ORANGE THEME
================================ */

.section-process {
  background: #fff8f0; /* light warm background */
  padding: 80px 20px;
  color: #1f1f1f;
  text-align: center;
}

.section-process .section-title {
  font-size: 2.5rem;
  color: #ff6a00; /* bright orange */
  margin-bottom: 60px;
}

/* PROCESS FLOW GRID */
.section-process .process-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
}

/* EACH STEP */
.section-process .process-step {
  background: #fff2e6;  /* light orange card */
  border: 2px solid #ff6a00;
  border-radius: 16px;
  padding: 30px 20px;
  flex: 1 1 200px;
  min-width: 220px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-process .process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 106, 0, 0.3);
}

/* STEP NUMBER */
.section-process .step-num {
  display: inline-block;
  background: #ff6a00;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* STEP TITLE */
.section-process .process-step h3 {
  color: #ff6a00;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* STEP DESCRIPTION */
.section-process .process-step p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* ARROWS BETWEEN STEPS */
.section-process .process-arrow {
  width: 60px;
  height: 4px;
  background: #ff6a00;
  flex-shrink: 0;
  align-self: center;
  margin: 0 10px;
  border-radius: 2px;
  position: relative;
}

.section-process .process-arrow::after {
  content: '';
  position: absolute;
  right: -10px;
  top: -6px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ff6a00; /* arrowhead */
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .section-process .process-flow {
    flex-direction: column;
    gap: 30px;
  }

  .section-process .process-arrow {
    width: 4px;
    height: 40px;
    margin: 10px auto;
  }

  .section-process .process-arrow::after {
    top: auto;
    bottom: -10px;
    left: -6px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ff6a00;
  }
}
/*=============================================
Assurance 
/*=============================================

/* ==============================
   HOME PAGE - ASSURANCE SECTION
   Namespaced as .section-assurance-home
================================= */

/* Section Styling */
.section-assurance-home {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: Arial, sans-serif;
}

.section-assurance-home h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ff7a00; /* Orange */
  font-weight: 600;
}

.section-assurance-home .assurance-intro {
  font-size: 16px;
  color: #333;
  max-width: 780px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Trust Grid */
.section-assurance-home .trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

/* Each Trust Item */
.section-assurance-home .trust-item {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Icon Styling */
.section-assurance-home .trust-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

/* Text Styling */
.section-assurance-home .trust-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: #ff7a00; /* Orange emphasis */
}

.section-assurance-home .trust-item span {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Hover Effect */
.section-assurance-home .trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Note below grid */
.section-assurance-home .rera-note {
  font-size: 15px;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  margin-top: 20px;
}

/* Tablet – 2 columns */
@media (max-width: 1024px) {
  .section-assurance-home .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Mobile – single column */
@media (max-width: 600px) {
  .section-assurance-home .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-assurance-home h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .section-assurance-home .assurance-intro {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .section-assurance-home .trust-item {
    padding: 20px 15px;
  }

  .section-assurance-home .trust-icon {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .section-assurance-home .trust-item strong {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .section-assurance-home .trust-item span {
    font-size: 13px;
  }

  .section-assurance-home .rera-note {
    font-size: 14px;
    margin-top: 15px;
  }
}
/* =====================================================
   SOCIETY REDEVELOPMENT – Unified Premium Section
===================================================== */

.section-redevelopment {
  background: linear-gradient(135deg, #0f172a, #111827);
  padding: 90px 20px;
  overflow: hidden;
}

.redevelopment-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* CONTENT */
.redevelopment-content h2 {
  color: #ff7a00;
  font-size: 34px;
  margin-bottom: 15px;
}

.redevelopment-content p {
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 520px;
}

/* POINTS */
.society-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.society-points li {
  color: #e5e7eb;
  font-size: 14px;
  padding-left: 28px;
  margin-bottom: 14px;
  position: relative;
}

.society-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff7a00;
  font-size: 14px;
}

/* BUTTON */
.btn-primary {
  background: #ff7a00;
  color: #111827;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ffa24d;
  transform: translateY(-2px);
}

/* VISUAL */
.redevelopment-visual img {
  width: 100%;
  border-radius: 0 0 0 120px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,122,0,0.25);
}

/* ICON GRID OPTION */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  font-size: 42px;
  text-align: center;
}

/* TABLET */
@media (max-width: 1024px) {
  .redevelopment-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .redevelopment-content p {
    margin: 0 auto 25px;
  }

  .society-points li {
    text-align: left;
  }

  .redevelopment-visual img {
    border-radius: 30px;
  }
}

/* MOBILE – ALL HANDSETS */
@media (max-width: 600px) {
  .section-redevelopment {
    padding: 70px 20px;
  }

  .redevelopment-content h2 {
    font-size: 26px;
  }

  .redevelopment-content p {
    font-size: 14px;
  }
}

