* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: #fff !important;
}

body {
  background: #fff !important;
  color: #222;
  overflow-x: hidden;
  margin: 0;
  padding-top: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   GLOBAL FIXED BACKGROUND VIDEO SYSTEM
   ─────────────────────────────────────────────────────────────────
   WHY: Having 6 separate <video> elements each play the same file
   at different timestamps meant each section hit dark frames at
   unpredictable moments → black strips appeared between sections.

   FIX: ONE video fixed to the viewport behind ALL content.
   Every section sees the same video frame → no dark gaps possible.
   ═══════════════════════════════════════════════════════════════ */

#global-bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  /* behind everything */
  overflow: hidden;
}

#global-bg-video video, 
#global-bg-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* White tint over the global video — visible but not overwhelming.
   Adjust opacity: lower = more video visible, higher = lighter sections. */
#global-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
  z-index: -1;
}

/* ── Section overlay (now just a subtle per-section tint, no video behind it) ── */
/* All sections must be transparent so the fixed global video shows through */
html {
  background: transparent !important;
}

body {
  background: transparent !important;
  color: #222;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Every section is transparent — global fixed video shows through */
.strip,
.section,
.video-bg-section,
.stats,
.map-section,
footer {
  background: transparent;
  margin: 0;
  position: relative;
}

/* Section overlay is now a no-op — global video handles everything */
.section-video-overlay {
  display: none;
}

/* The old individual section videos are gone — this class is now unused */
.section-bg-video {
  display: none;
}

/* Footer needs its own solid background so it doesn't show video behind it */
.footer {
  background: #2f373b !important;
}

/* Strip stays green */
.strip {
  background: #7BAF42 !important;
}

#intro-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: #000;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1s;
}

#intro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mobile-video {
  display: none;
}

/* Intro Video Mobile Styles */
@media (max-width: 768px) {
  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures video fills screen without distortion */
  }
}

/* ================= NAVBAR ================= */

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  background: rgba(0, 0, 0, 0.2);
  /* Semi-transparent for blur visibility */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  z-index: 1000;
  font-family: "Prosto One";
  transition: .4s ease;
}

/* NAV LINKS WHITE */
.nav-menu a {
  color: #fff;
  /* white text */
  text-decoration: none;
  margin: 0 14px;
  font-size: 16px !important;
  letter-spacing: 2px;
  transition: .3s;
  font-family: "Prosto One";
}

.nav-menu a:hover {
  color: #7BAF42;
}

/* CONTACT BUTTON */
.contact-btn {
  background: #7BAF42;
  border: none;
  color: #fff;
  padding: 10px 22px;
  font-weight: 400;
  font-family: "Prosto One";
  cursor: pointer;
  border-radius: 0px;
  transition: .3s;
  text-decoration: none;
}

.contact-btn:hover {
  background: #233e07;
}

/* VIDEO BACKGROUND SECTION */
.video-bg-section {
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* video */
.section-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

/* overlay for dark effect */
.section-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

/* Ensure all content in video sections is ON TOP */
.video-content,
.experience-wrap,
.map-text,
.map-section iframe,
.enquire,
.stat,
.strip-track {
  position: relative;
  z-index: 10;
  pointer-events: auto !important;
}

/* content above video */
.video-content {
  position: relative;
  z-index: 2;
}

/* make text white on video */
.video-bg-section .title,
.video-bg-section .subtitle,
.video-bg-section h4 {
  color: #0e0d0d;
}


/* ================= HERO ================= */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* index.html slider hero needs full viewport height on desktop */
#home {
  height: 100vh;
  height: 100dvh;
  min-height: 500px;
}

/* Single hero banner image (about, blog, faq pages) */
.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-banner {
  display: none !important;
}

/* Background video behind hero slider */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Slides for index.html hero slider */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.10);
  pointer-events: none;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Prosto One";
  font-size: 90px;
  letter-spacing: 8px;
}

/* ================= STRIP ================= */
.strip {
  background: #7BAF42;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;

}

.strip-track {
  display: inline-flex;
  animation: scroll 18s linear infinite;
}

.strip-track span {
  color: #fff;
  font-size: 16px;
  letter-spacing: 3px;
  padding-right: 60px;
  font-family: "Prosto One";
}

@keyframes scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ================= SECTION ================= */
.section {
  padding: 70px 80px;
  text-align: center;
  margin: 0;
}

.section.light {
  background: #070707;
}

.title {
  font-family: "Prosto One";
  font-size: 40px;
  letter-spacing: 4px;
  margin-bottom: 15px;
  font-weight: 500 !important;
  /* normal premium weight */
}

.subtitle {
  /* max-width:750px; */
  max-width: 1100px;
  margin: auto;
  color: #5b5959;
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 16px;
  font-family: "Jost";
  /* text-transform: uppercase; */
}

/* GREEN LINE */
.green-line {
  width: 80%;
  height: 2px;
  background: #7BAF42;
  margin: 40px auto;

}

.green-line.small {

  margin-bottom: 25px;
}

/* ================= PRODUCTS ================= */
.products {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 30px;
  flex-wrap: wrap;
}



.product {
  flex: 0 0 170px;
  /* fixed clean width */
  text-align: center;
  transition: .4s;
}

.product img {
  height: 100px;
  margin-bottom: 18px;

}

.product h4 {
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 500;
  /* lighter */
  font-family: "Jost";
  /* softer font */
  color: #222;
}

.product:hover {
  transform: translateY(-8px);
}


/* Before image container that we resize */
/* BEFORE AFTER VIDEO STYLE */
.ba-wrapper {
  position: relative;
  width: 85%;
  max-width: 950px;
  margin: 60px auto;
  overflow: hidden;
  border-radius: 8px;
}

.ba-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* The window that reveals the After image */
.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  /* Initial state */
  height: 100%;
  overflow: hidden;
  /* This acts as the 'slider' */
  transition: width 0.4s ease;
  /* Smooth sliding transition */
}

/* IMPORTANT: This prevents the zoom/resize effect */
.after-img {
  width: 950px;
  /* Match the max-width of .ba-wrapper */
  max-width: none;
}

/* Responsive fix for the fixed-width image */
@media (max-width: 1117px) {
  .after-img {
    width: 85vw;
    /* Match the 85% width of the wrapper on smaller screens */
  }
}

.ba-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  user-select: none;
}

.ba-arrow:hover {
  background: #7BAF42;
  color: white;
}

.ba-arrow.left {
  left: 20px;
}

.ba-arrow.right {
  right: 20px;
}

/* ================= EXPERIENCE ================= */
/* EXPERIENCE SECTION */
.experience-section {
  background: #f6f6f4;
}

.experience-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.exp-left {
  width: 40%;
  text-align: left;
  padding-left: 0;
  /* remove extra space */
  margin-left: 0;
}

.exp-para {
  margin-top: 20px;
  color: #8a8a8a;
  line-height: 1.9;
  max-width: 420px;
  margin-left: 0;
  /* align with title & green line */
  font-family: "Jost";
}


.exp-left .title {
  font-size: 46px;
  letter-spacing: 4px;
}



.exp-right {
  width: 55%;
  display: flex;
  gap: 25px;
}

.exp-left .green-line {
  margin-left: 0;
}


/* VIDEO BOX */
/* VIDEO SECTION FIX */
.exp-right {
  width: 55%;
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* vertical reel style */
.video-box {
  flex: 1;
  height: 600px;
  /* bigger height */
  max-width: 340px;
  /* reel width */
  background: #000;
  overflow: hidden;
  border-radius: 6px;
}

/* iframe full fit */
.video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}



/* MOBILE */
@media(max-width:900px) {

  .experience-wrap {
    flex-direction: column;
  }

  .exp-left,
  .exp-right {
    width: 100%;
  }

  .video-box {
    height: 300px;
  }
}


/* ================= STATS ================= */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 80px 40px;
}

.stat h3 {
  font-family: "Prosto One";
  font-size: 48px;
  color: #7BAF42;
}

.counter::after {
  content: "+";
  margin-left: 4px;
  font-weight: 600;
}

.stat p {
  color: #555 !important;
  /* Forces a visible color */
  font-size: 16px;
  margin: 0;
  display: block;
  font-family: "Prosto One";
  /* Ensures it isn't hidden by a 'display: none' elsewhere */
}

/* ================= MAP ================= */
.map-section {
  display: flex;
  gap: 60px;
  padding: 100px 80px;
  align-items: center;
}

.map-section iframe {
  width: 55%;
  height: 350px;
  border: none;
}

.map-text {
  width: 40%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* keeps everything aligned left */
}

.map-text .green-line {
  width: 90%;
  margin-top: 25px;
  margin-left: 0;
}

/* MAP SECTION TEXT FIX */
.map-section p {
  color: #111 !important;
  /* black text */
  font-family: "Jost";
}

/* heading also black */
.map-section .title {
  color: #111 !important;
}

/* ================= ENQUIRE ================= */


form {
  width: 50%;
}

form input,
textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  background: #eee;
}

form button {
  background: #7BAF42;
  color: #fff;
  padding: 14px;
  border: none;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
}

/* ENQUIRE SECTION */
.enquire {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: flex-start;
}

.enquire-text {
  width: 45%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* forces same left alignment */
}

.enquire-text .title {
  font-size: 48px;
  letter-spacing: 4px;
  margin-bottom: 25px;
  margin-left: 0;
}

.enquire-para {
  color: #8a8a8a;
  line-height: 1.9;
  font-size: 16px;
  max-width: 520px;
  margin-left: 0;
  /* align with title */
  font-family: "Jost";
}

.enquire-text .green-line {
  margin-left: 0;

  /* green line same start */
}


form {
  width: 45%;
}

form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  background: #eaeaea;
  font-size: 14px;
}

form button {
  background: #9ea3a6;
  /* grey default */
  color: #fff;
  padding: 14px;
  border: none;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  /* smooth hover */
}

/* hover color */
form button:hover {
  background: #2f373b;
  /* dark on hover */
}


/* MOBILE */
@media(max-width:900px) {
  .enquire {
    flex-direction: column;
  }

  .enquire-text,
  form {
    width: 100%;
  }
}




/* ================= RESPONSIVE: HERO MOBILE ================= */
@media (max-width: 768px) {

  .desktop-banner {
    display: none !important;
  }

  #home.hero,
  .hero {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding-top: 0 !important;
    display: block !important;
    overflow: hidden !important;
    background: transparent !important;
  }

  .slide {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    display: none !important;
    opacity: 0;
    transition: opacity 1s ease;
  }

  .slide.active {
    display: block !important;
    opacity: 1;
    z-index: 2;
  }

  .slide img.mobile-banner,
  .hero-banner.mobile-banner {
    width: 100vw !important;
    height: 125vw !important;
    /* FORCE EXACT 4:5 Aspect Ratio (1080 x 1350) */
    object-fit: fill !important;
    /* User preferred exact compacted changes */
    display: block !important;
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px) {



  .products {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px 10px;
    justify-items: center;
  }

  .product {
    grid-column: span 2;
    width: 100%;
  }

  .product:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .product:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .experience {
    flex-direction: column
  }

  .exp-text,
  .exp-video {
    width: 100%
  }

  .map-section {
    flex-direction: column
  }

  .map-section iframe,
  .map-text {
    width: 100%
  }

  .map-text .green-line {
    display: none;
  }

  .enquire {
    flex-direction: column
  }

  form {
    width: 100%
  }

  .footer {
    padding: 60px 40px;
    gap: 60px;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }

  .footer-left,
  .footer-right {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-logo img {
    margin: 0 auto 15px !important;
    height: 41px;
  }

  .footer-left p {
    margin-left: 0 !important;
    text-align: center;
    font-size: 12px;
    line-height: 1.1;
  }

  .footer-right .big-text {
    font-size: 22px !important;
    white-space: normal !important;
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto 15px;
  }

  .socials {
    justify-content: center !important;
  }
}

/* ================= PREMIUM FOOTER ================= */
/* ===== PREMIUM FOOTER MATCH IMAGE 1 ===== */
/* .footer{
background:#2f373b;             
color:#fff;
padding:70px 80px 60px;
display:flex;
justify-content:center;
gap: 150px;
align-items:center;
flex-wrap:wrap;
margin-top:0;
} */

.footer {
  background: #2f373b;
  color: #fff;
  padding: 110px 80px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 200px;
  margin-top: 0px;
}

/* left */
.footer-left {
  max-width: 460px;
  text-align: left;
  padding-left: 0;
  margin-left: 0;
}

.footer-logo {
  padding-left: 0;
  margin-left: 0;
}

.footer-logo img {
  height: 70px;
  margin: 0 0 12px 0;
  display: block;
  margin-left: -8px;
}

/* address text */
.footer-left p {
  color: #fdfbfb;
  margin: 5px 0;
  font-family: "Jost";
  margin-left: 8.5px;
}

.address {
  line-height: 1.5;
}

.dev span {
  color: #7BAF42;
  letter-spacing: 4px;
  transition: .3s;
  cursor: pointer;
}

.dev span:hover {
  color: #ffffff;
}

/* right side */
.footer-right {
  width: 420px;
  text-align: left;
}

.big-text {
  font-family: "Prosto One";
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 8px;
  color: #eaeaea;
  line-height: 1.2;
  max-width: 420px;
  text-align: left;
  white-space: nowrap;
}

.policy {
  color: #ffffff;
  margin: 10px 0 18px;
  font-family: "Jost";
  font-size: 15px;
  letter-spacing: .5px;
  text-align: left;
}

.socials {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  margin-top: 18px;
}

.socials a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .3s;
  text-decoration: none;
}

.socials a:hover {
  background: #7BAF42;
  border-color: #7BAF42;
  transform: translateY(-3px);
}

.projects-section {
  background: #f6f6f4;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.project-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 40px 25px;
  border-radius: 18px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: .35s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  font-size: 18px;
  letter-spacing: 2px;
  font-family: "Prosto One";
}

/* hover premium lift */
.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  background: #fff;
  color: #7BAF42;
}

.project-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  width: 4px;
  height: 50%;
  border-radius: 4px;
  opacity: 0;
  transition: .3s;
}

.project-card:hover::before {
  opacity: 1;
  left: 10px;
}

#projects {
  position: relative;
}

#projects::before {
  content: "";
  font-family: "Prosto One";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(#7baf4220, transparent);
  top: -100px;
  right: -100px;
  z-index: -1;
}

#projects .title {
  font-size: 48px;
  font-family: "Prosto One";
  letter-spacing: 6px;
  margin-bottom: 10px;
}

#projects .subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  color: #666;
  font-family: "Prosto One";
}

/* ===== PROJECT SECTION FIX ===== */
#projects .project-card {
  background: #ffffff;
  color: #111;
  font-weight: 500;
}

#projects .project-card:hover {
  color: #7BAF42;
}

#projects .title,
#projects .subtitle {
  color: #111;
}

/* ===== GLOBAL VIDEO SECTION FIX ===== */
.video-bg-section {
  position: relative;
  overflow: hidden;
  padding: 42px 80px 60px;
  margin: 0;
}

section {
  margin: 0 !important;
}

.section {
  padding: 80px 80px;
  margin: 0;
}

/* VERY IMPORTANT */
.section-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.section-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
  pointer-events: none;
}


/* project cards visible */
#projects .project-card {
  background: #fff;
  color: #111;
}

/* text visible */
.video-bg-section .title,
.video-bg-section .subtitle {
  color: #111;
}

#projects {
  padding-bottom: 40px !important;
  margin-bottom: 0 !important;
}

.before-after-section {
  margin-top: 0 !important;
  padding-top: 60px !important;
}

/* ===== FAINT BLACK PARAGRAPHS (EXCEPT FOOTER & COUNTER) ===== */
#verticals .subtitle {
  color: #6a6a6a !important;
}

.exp-para {
  color: #6a6a6a !important;
}

.enquire-para {
  color: #6a6a6a !important;
}

.map-section p {
  color: #6a6a6a !important;
}

#projects .subtitle {
  color: #6a6a6a !important;
}

.small-line {
  font-size: 20px;
  letter-spacing: 2px;
  font-family: "Jost";
}


/* =========================================
   DUAL LOGO TOGGLE (desktop=white, mobile=black on navbar-dark pages)
========================================= */
.logo-mobile {
  display: none !important;
}

@media (max-width: 992px) {
  .navbar-dark .logo-desktop {
    display: none !important;
  }

  .navbar-dark .logo-mobile {
    display: block !important;
  }
}

/* =========================================
   NAVBAR DARK VARIANT — MOBILE ONLY
   (for pages with white/light banners)
========================================= */
@media (max-width: 992px) {
  .navbar-dark .nav-menu a {
    color: #222;
  }

  .navbar-dark .nav-menu a:hover {
    color: #7BAF42;
  }

  .navbar-dark .contact-btn {
    background: #222;
    color: #fff;
  }

  .navbar-dark .contact-btn:hover {
    background: #7BAF42;
  }

  .navbar-dark .hamburger span {
    background: #222;
  }
}

/* =========================================
   HAMBURGER MENU STYLES
========================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Animate to X when open */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile menu overlay */
.nav-menu.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  gap: 10px;
}

.nav-menu.mobile-open a {
  font-size: 22px !important;
  margin: 12px 0;
  color: #fff;
}

.nav-menu.mobile-open a:hover {
  color: #7BAF42;
}


/* =========================================
   RESPONSIVE: 1200px
========================================= */
@media(max-width:1200px) {
  .navbar {
    padding: 0 40px;
  }

  .nav-menu a {
    margin: 0 10px;
    font-size: 14px !important;
  }

  .section,
  .video-bg-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer {
    padding: 80px 40px;
    gap: 40px;
  }

  .big-text {
    font-size: 28px;
    white-space: normal;
  }

  .map-section {
    padding: 80px 40px;
  }

  .experience-wrap {
    gap: 40px;
  }

  .enquire {
    gap: 40px;
  }

  #projects .title {
    font-size: 38px;
  }
}


/* =========================================
   RESPONSIVE: 992px (Desktop/Tablet Hybrid)
========================================= */
@media(max-width:992px) {

  /* Show hamburger, hide desktop nav */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .contact-btn {
    display: none;
  }

  /* HERO: let content determine height on tablet */
  .hero {
    min-height: auto !important;
    height: auto !important;
  }

  .hero-text {
    font-size: 32px;
    width: 90%;
    text-align: center;
    letter-spacing: 2px;
  }

  /* Always visible on mobile per latest request */
  .navbar {
    height: 70px;
    padding: 0 20px;
    position: fixed;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
    transition: background 0.3s ease;
  }

  /* Only logo and hamburger visible on hero */
  .navbar .contact-btn {
    display: none !important;
  }

  /* Scrolled state: Solid dark background + White branding + Contact Btn */
  .navbar.nav-scrolled {
    background: #111 !important;
    /* "Normal color" - solid dark */
  }

  .navbar.nav-scrolled .contact-btn {
    display: block !important;
  }

  /* Force white branding on scrolled mobile navbar */
  .navbar.nav-scrolled .logo-desktop {
    display: block !important;
  }

  .navbar.nav-scrolled .logo-mobile {
    display: none !important;
  }

  .navbar.nav-scrolled .hamburger span {
    background: #fff !important;
  }

  .navbar.nav-scrolled .nav-menu a {
    color: #fff !important;
  }

  .navbar.nav-scrolled .contact-btn {
    background: #fff;
    color: #111;
  }

  /* About Page Specific: Reduce logo size on mobile to clear branding in banner */
  .about-page .logo img {
    height: 22px !important;
  }

  .logo img {
    height: 40px;
  }

  .section,
  .video-bg-section {
    padding-left: 30px;
    padding-right: 30px;
    background: transparent !important;
    margin: 0 !important;
  }

  .title {
    font-size: 32px;
  }

  .products {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .product {
    flex: 0 0 45%;
  }

  .product img {
    height: 80px;
  }

  .experience-wrap {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .exp-left,
  .exp-right {
    width: 100%;
    text-align: center;
  }

  .exp-left .title {
    font-size: 36px;
    text-align: center;
  }

  .exp-para {
    margin: 20px auto 0 !important;
    text-align: center;
  }

  .exp-left .green-line {
    margin: 25px auto !important;
  }

  .video-box {
    height: 400px;
  }

  .stats {
    flex-wrap: wrap;
    gap: 20px;
    padding: 60px 30px;
    background: transparent !important;
    margin: 0 !important;
  }

  .stat h3 {
    font-size: 36px;
  }

  .map-section {
    flex-direction: column;
    gap: 40px;
    padding: 60px 30px;
    background: transparent !important;
    margin: 0 !important;
    align-items: center;
  }

  .map-section iframe {
    width: 100%;
    height: 300px;
  }

  .map-text {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .map-text .title {
    text-align: center;
  }

  .map-section p {
    text-align: center;
    margin: 0 auto;
  }

  .map-text .green-line {
    margin: 25px auto !important;
  }

  .enquire {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .enquire-text,
  form {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .enquire-text .title {
    text-align: center;
  }

  .enquire-para {
    text-align: center;
    margin: 0 auto 25px !important;
  }

  .enquire-text .green-line {
    margin: 0 auto 25px !important;
  }

  .footer {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 30px;
    padding: 60px 20px;
    margin: 0 !important;
  }

  .footer-left,
  .footer-right {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .footer-logo img {
    margin: 0 auto 15px auto !important;
    height: 41px;
  }

  .footer-left p {
    margin-left: 0 !important;
  }

  .big-text {
    font-size: 24px !important;
    text-align: center !important;
    white-space: normal !important;
    margin: 0 auto 15px !important;
    max-width: 100% !important;
  }

  .policy {
    text-align: center;
  }

  .socials {
    justify-content: center !important;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-img {
    height: 350px;
  }

  /* Hide background videos early to prevent layout breaks on wider tablets */
  .section-bg-video,
  .section-video-overlay {
    display: none !important;
  }

  .video-bg-section {
    background: transparent !important;
  }
}


/* =========================================
   RESPONSIVE: 768px (Mobile Refinement)
========================================= */
@media(max-width:768px) {
  .navbar {
    height: 60px;
    padding: 0 15px;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* SECTIONS */
  .section,
  .video-bg-section {
    padding: 50px 20px;
  }

  .title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
  }

  /* PRODUCTS */
  .product {
    flex: 0 0 100%;
  }

  .product img {
    height: 60px;
  }

  /* BEFORE AFTER */
  .ba-img {
    height: 250px;
  }

  /* STATS */
  .stats {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 20px;
    gap: 30px;
    text-align: center;
    font-family: "Prosto One";
  }

  .stat h3 {
    font-size: 32px;
  }

  /* MAP */
  .map-section {
    padding: 50px 20px;
  }

  .map-section iframe {
    height: 250px;
  }

  /* ENQUIRE */
  .enquire-text .title {
    font-size: 28px;
  }

  .footer-logo img {
    height: 41px;
    /* adjust as needed */
  }

  /* Removal of duplicated background video and gap rules already handled in 992px */
}


/* =========================================
   RESPONSIVE: 480px (Mobile)
========================================= */
@media(max-width:480px) {
  .navbar {
    height: 50px;
    padding: 0 12px;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-text {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .section,
  .video-bg-section {
    padding: 40px 15px;
  }

  .title {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .subtitle {
    font-size: 13px;
    line-height: 1.6;
  }

  .products {
    flex-direction: column;
    gap: 20px;
  }

  .product {
    flex: 0 0 auto;
    width: 100%;
  }

  .product img {
    height: 60px;
  }

  .product h4 {
    font-size: 13px;
  }

  .ba-wrapper {
    width: 100%;
    margin: 30px auto;
  }

  .ba-img {
    height: 200px;
  }

  .ba-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .exp-left .title {
    font-size: 24px;
  }

  .exp-para {
    font-size: 14px;
  }

  .video-box {
    width: 95%;
    height: 350px;
  }

  .stat h3 {
    font-size: 30px;
    font-size: "Prosto One";
  }

  .stat p {
    font-size: 14px;
  }

  .map-section {
    padding: 40px 15px;
  }

  .map-section iframe {
    height: 200px;
  }

  .enquire-text .title {
    font-size: 26px;
  }

  .enquire-para {
    font-size: 14px;
  }

  form input,
  form textarea {
    font-size: 13px;
    padding: 12px;
  }

  .footer-left,
  .footer-right {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .socials {
    justify-content: center !important;
  }

  .socials a {
    width: 44px;
    height: 44px;
  }

  .footer-logo img {
    height: 41px;
    /* adjust as needed */
  }

  /* Fix black gaps handled globally now */


  .strip-track span {
    font-size: 12px;
    letter-spacing: 1px;
    font-family: "Prosto One";
  }

  .small-line {
    font-size: 16px;
  }

  .green-line {
    width: 95%;
  }

  #projects .title {
    font-size: 24px;
    letter-spacing: 3px;
  }
}

/* ═══ SECTION SPACING — padding only, never margin ═══ */
.section,
.video-bg-section,
.stats,
.map-section {
  margin: 0;
}

.footer {
  margin-top: 0;
}

@media (min-width: 993px) {
  .footer {
    padding-top: 100px;
  }
}

.strip {
  margin-top: 0;
}




.mobile-menu-contact {
  display: none;
}

/* ===== MOBILE NAVBAR FIX — MAX-WIDTH 768px ===== */

@media (max-width: 768px) {

  /* GLOBAL OVERRIDES for old mobile styles */
  .navbar,
  .navbar-dark {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    height: 90px !important;
    /* Force consistent height */
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    /* Move content to top */
    padding-top: 15px !important;
    /* Specific spacing from top */
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, height 0.4s ease !important;
  }

  /* Manual Logo Toggling (High Specificity Overrides) */
  header.navbar:not(.nav-scrolled) .logo-desktop,
  header.navbar-dark:not(.nav-scrolled) .logo-desktop {
    display: none !important;
  }

  header.navbar:not(.nav-scrolled) .logo-mobile,
  header.navbar-dark:not(.nav-scrolled) .logo-mobile {
    display: block !important;
    margin-top: 0 !important;
    /* Removed manual hike to use navbar alignment instead */
  }

  header.navbar.nav-scrolled .logo-desktop,
  header.navbar-dark.nav-scrolled .logo-desktop {
    display: block !important;
  }

  header.navbar.nav-scrolled .logo-mobile,
  header.navbar-dark.nav-scrolled .logo-mobile {
    display: none !important;
  }

  /* Force logo size consistently */
  header.navbar .logo img,
  header.navbar-dark .logo img {
    height: 36px !important;
    width: auto !important;
    max-width: 110px !important;
    object-fit: contain !important;
  }

  /* Dynamic Hamburger Color */
  header.navbar:not(.nav-scrolled) .hamburger span,
  header.navbar-dark:not(.nav-scrolled) .hamburger span {
    background: #000 !important;
    /* Black branding at top */
  }

  header.navbar.nav-scrolled .hamburger span,
  header.navbar-dark.nav-scrolled .hamburger span {
    background: #fff !important;
    /* White branding on scroll blur bar */
  }

  .hamburger {
    margin-top: -2px !important;
    /* Fine-tune to match logo optical center */
  }

  /* Scrolled State */
  .navbar.nav-scrolled {
    background: rgba(10, 10, 10, 0.55) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
    height: 70px !important;
    /* Slightly more compact on scroll */
  }

  /* Hide desktop elements */
  .nav-menu:not(.mobile-open),
  .contact-btn,
  .desktop-contact-only {
    display: none !important;
  }

  /* Hamburger Menu (Slide-out) */
  .nav-menu.mobile-open {
    display: flex !important;
    flex-direction: column !important;
    background: #0a0a0a !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    padding: 100px 0 !important;
    align-items: center !important;
    z-index: 1000 !important;
    gap: 15px !important;
  }

  /* Ensure links are white in the menu */
  .nav-menu.mobile-open a {
    color: #fff !important;
    font-size: 20px !important;
    text-decoration: none !important;
    font-family: "Prosto One" !important;
    letter-spacing: 2px !important;
    margin: 10px 0 !important;
  }

  /* Mobile Contact Button Styling */
  .mobile-menu-contact {
    display: block !important;
    margin-top: 20px !important;
    width: 80% !important;
  }

  .mobile-menu-contact a {
    background: #7BAF42 !important;
    color: #fff !important;
    padding: 14px 0 !important;
    border-radius: 4px !important;
    display: block !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 600 !important;
  }

  /* Force Hamburger span white in open menu for visibility */
  .hamburger.active span {
    background: #fff !important;
  }

  /* Special rule for About Page: hide branding at top */
  .about-page .navbar:not(.nav-scrolled) .logo {
    visibility: hidden !important;
  }

  .about-page .navbar:not(.nav-scrolled) .hamburger span {
    background: #fff !important;
    /* Keep white for about page top visibility if needed, or black? user screenshot had white icons on about */
  }
}

/* ================= DESKTOP ADJUSTMENTS ================= */

@media (min-width: 1024px) {

  /* Reduce gap between Map and Green Divider */
  .map-section+.section .green-line:first-of-type {
    margin-top: -80px;
  }
}