/* ═══════════════════════════════════════════════════════════════
   MOBILE NAV — paste this block at the bottom of main.css
   ═══════════════════════════════════════════════════════════════ */

/* ── Hamburger button ──────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 4px;
  border-radius: 10px;
  transition: background 0.2s;
  z-index: 600;
  flex-shrink: 0;
}
.nav-hamburger:hover {
  background: rgba(120, 78, 144, 0.08);
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity   0.25s ease,
              width     0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile overlay ────────────────────────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(28, 22, 37, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none; /* FIX: invisible overlay must not block taps */
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto; /* restore clicks only when drawer is open */
}

/* ── Slide-in drawer ───────────────────────────────────────── */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(320px, 85vw);
  background: #fff;
  z-index: 550;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(28, 22, 37, 0.18);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-nav-drawer.open { transform: translateX(0); }

/* ── Drawer header ─────────────────────────────────────────── */
.mob-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 16px;
  border-bottom: 1px solid rgba(182, 161, 132, 0.2);
  flex-shrink: 0;
}
.mob-drawer-logo img { height: 52px; width: auto; }

.mob-drawer-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(120, 78, 144, 0.2);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  transition: background 0.2s, border-color 0.2s;
}
.mob-drawer-close:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.mob-drawer-close svg { width: 16px; height: 16px; }

/* ── Drawer nav list ───────────────────────────────────────── */
.mob-nav-list {
  padding: 12px 0;
  flex: 0;
  list-style: none;
}
.mob-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  letter-spacing: 0.1px;
}
.mob-nav-item:hover,
.mob-nav-item.active {
  color: var(--purple);
  background: rgba(120, 78, 144, 0.05);
}
.mob-chevron {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.mob-nav-item.solutions-open .mob-chevron { transform: rotate(180deg); }

/* ── Solutions accordion ───────────────────────────────────── */
.mob-solutions-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #faf9f7;
  border-top: 1px solid rgba(182, 161, 132, 0.12);
  border-bottom: 1px solid rgba(182, 161, 132, 0.12);
}
.mob-solutions-panel.open { max-height: 700px; }

.mob-solution-group { padding: 14px 20px 10px; }

.mob-solution-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 8px;
  text-decoration: none;
}
.mob-solution-heading svg { width: 28px; height: 28px; flex-shrink: 0; }

.mob-solution-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 38px;
}
.mob-solution-sub a {
  font-size: 13.5px;
  color: var(--text-mid);
  padding: 5px 0;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(182, 161, 132, 0.1);
}
.mob-solution-sub a:last-child { border-bottom: none; }
.mob-solution-sub a:hover { color: var(--purple); }

.mob-solution-divider {
  height: 1px;
  background: rgba(182, 161, 132, 0.15);
  margin: 4px 20px;
}

/* ── Drawer footer CTA ─────────────────────────────────────── */
.mob-drawer-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(182, 161, 132, 0.2);
  flex-shrink: 0;
}
.mob-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--purple);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 16px rgba(120, 78, 144, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.mob-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(120, 78, 144, 0.4);
}
/* ── Scroll lock when drawer is open ─────────────────────────── */
body.drawer-open {
  overflow: hidden;
  /* Prevents layout shift from scrollbar disappearing on desktop */
  padding-right: var(--scrollbar-w, 0px);
}

/* ═══════════════════════════════════════════════════════
   FIXED STICKY NAVBAR
═══════════════════════════════════════════════════════ */

nav#main-nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  width: 100%;
  z-index: 9999;

  background: rgba(242,241,238,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  transition:
    height .35s ease,
    padding .35s ease,
    box-shadow .35s ease,
    background .35s ease;

  margin: 0 !important;
}

/* Prevent content from hiding under navbar */
body{
  padding-top: 60px;
}
@media (max-width: 900px) {
  nav#main-nav .nav-links { display:none; }
  nav#main-nav .nav-cta { display:none; }
  .nav-hamburger { display:flex; }

  nav#main-nav{
    height:75px;
    padding:0 20px 0 16px;
  }

  .nav-logo img{
    height:60px;
  }
}

@media (max-width:600px){
  nav#main-nav{
    height:64px;
    padding:0 18px 0 14px;
  }

  .nav-logo img{
    height:50px;
  }
}

@media (max-width:480px){
  nav#main-nav{
    height:62px;
    padding:0 16px 0 14px;
  }

  .nav-logo img{
    height:48px;
  }
}

@media (max-width:390px){
  nav#main-nav{
    height:58px;
    padding:0 14px 0 12px;
  }

  .nav-logo img{
    height:44px;
  }
}

@media (max-width:320px){
  nav#main-nav{
    height:54px;
    padding:0 12px 0 10px;
  }

  .nav-logo img{
    height:40px;
  }
}
/* ═══════════════════════════════════════════════════════════════
   HERO SECTION — FULLY RESPONSIVE (ALL DEVICE SIZES)
   Paste this at the bottom of main.css (after existing hero CSS)
   ═══════════════════════════════════════════════════════════════ */


/* ── TABLET (601px – 900px) ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    min-height: 50svh;
    padding: 50px 32px 40px;
    align-items: flex-start;

    background:
      linear-gradient(
        to bottom,
        rgba(23, 14, 31, 0.93) 0%,
        rgba(23, 14, 31, 0.88) 45%,
        rgba(23, 14, 31, 0.78) 100%
      ),
      url("../images/hero-banner1.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
  }

  .hero-badge {
    font-size: 11px;
    padding: 7px 16px;
    margin-bottom: 22px;
  }

  .hero-title {
    font-size: 42px;
    letter-spacing: -1px;
    line-height: 1.18;
    word-break: break-word;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.78;
    max-width: 100%;
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 30px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-partners-wrap {
    margin-top: 40px;
    padding-top: 24px;
  }

  .hero-partners {
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
  }

  .partner-card {
    width: 90px;
    height: 75px;
    border-radius: 14px;
  }

  .partner-card img {
    max-height: 56px;
  }
}


/* ── LARGE PHONES (481px – 600px) e.g. iPhone Plus, Pixel 7 ── */
@media (max-width: 600px) {
  .hero {
    padding: 50px 24px 40px;
    min-height: 50svh;
  }

  .hero-badge {
    font-size: 10.5px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -0.8px;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 15.5px;
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-partners-wrap {
    margin-top: 34px;
    padding-top: 20px;
  }

  .hero-partners {
    gap: 24px;
  }

  .partner-card {
    width: 82px;
    height: 68px;
    border-radius: 12px;
  }

  .partner-card img {
    max-height: 50px;
  }
}


/* ── STANDARD PHONES (391px – 480px) e.g. iPhone 14, Galaxy S ─ */
@media (max-width: 480px) {
  .hero {
    padding: 50px 20px 44px;
    min-height: 50svh;
    margin-top: -20px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 6px 13px;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: 30px;
    letter-spacing: -0.5px;
    line-height: 1.22;
    word-break: break-word;
  }

  .hero-sub {
    font-size: 14.5px;
    line-height: 1.75;
    margin-top: 16px;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 10px;
  }

  .hero-partners-wrap {
    margin-top: 30px;
    padding-top: 18px;
  }

  .hero-partners-title {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .hero-partners {
    gap: 20px;
    flex-wrap: wrap;
  }

  .partner-card {
    width: 75px;
    height: 62px;
    border-radius: 10px;
  }

  .partner-card img {
    max-height: 46px;
  }
}


/* ── SMALL PHONES (321px – 390px) e.g. iPhone SE, Galaxy A ──── */
@media (max-width: 390px) {
  .hero {
    padding: 40px 18px 40px;
    min-height: 50svh;
  }

  .hero-badge {
    font-size: 9.5px;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 26px;
    letter-spacing: -0.3px;
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.72;
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-partners-wrap {
    margin-top: 26px;
    padding-top: 16px;
  }

  .hero-partners-title {
    font-size: 10.5px;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
  }

  .hero-partners {
    gap: 16px;
    flex-wrap: wrap;
  }

  .partner-card {
    width: 68px;
    height: 56px;
    border-radius: 10px;
  }

  .partner-card img {
    max-height: 40px;
  }
}


/* ── VERY SMALL PHONES (≤ 320px) e.g. iPhone SE 1st gen ─────── */
@media (max-width: 320px) {
  .hero {
    padding: 40px 16px 40px;
  }

  .hero-badge {
    font-size: 9px;
    padding: 5px 11px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 22px;
    letter-spacing: -0.2px;
    line-height: 1.28;
  }

  .hero-sub {
    font-size: 13px;
    margin-top: 13px;
  }

  .hero-actions {
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }

  .hero-partners {
    gap: 12px;
  }

  .partner-card {
    width: 60px;
    height: 50px;
  }

  .partner-card img {
    max-height: 36px;
  }
}
/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION — FULLY RESPONSIVE (ALL DEVICE SIZES)
   ═══════════════════════════════════════════════════════════════ */

/* ── TABLET (601px – 900px) ─────────────────────────────────── */
@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    padding: 50px 32px 44px;
    gap: 36px;
  }

  /* ── Kill parallax & reveal transforms on mobile ── */
  .about-visual-wrap,
  .about-text,
  [data-parallax] {
    transform: none !important;
    transition: opacity 0.5s ease !important;
  }

  .about-visual-wrap {
    order: 1;
    width: 100%;
    overflow: visible;
  }

  .about-card {
    margin-left: 0 !important;
    width: 100%;
    min-height: 320px;
  }

  .about-badge-float {
    bottom: 20px;
    right: 20px;
    padding: 14px 18px;
  }

  .about-badge-float .num {
    font-size: 26px;
  }

  .about-text {
    order: 2;
  }
}

/* ── LARGE PHONES (481px – 600px) ──────────────────────────── */
@media (max-width: 600px) {
  .about-section {
    padding: 44px 24px 40px;
    gap: 30px;
  }

  .about-card {
    
    min-height: 280px;
  }

  .about-badge-float {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
  }

  .about-badge-float .num {
    font-size: 24px;
  }

  .about-badge-float .lbl {
    font-size: 10.5px;
  }

  .about-pills {
    gap: 8px;
    margin-top: 10px;
  }

  .pill {
    font-size: 10px;
    padding: 4px 14px;
  }
}


/* ── STANDARD PHONES (391px – 480px) ───────────────────────── */
@media (max-width: 480px) {
  .about-section {
    padding: 40px 20px 36px;
    gap: 26px;
  }

  .about-card {
    min-height: 240px;
    border-radius: 16px;
  }

  .about-visual-wrap {
    border-radius: 16px;
  }

  .about-badge-float {
    bottom: 14px;
    right: 14px;
    padding: 10px 14px;
    border-radius: 10px;
  }

  .about-badge-float .num {
    font-size: 22px;
  }

  .about-badge-float .lbl {
    font-size: 10px;
  }

  .about-pills {
    gap: 7px;
    margin-top: 10px;
  }

  .pill {
    font-size: 9.5px;
    padding: 4px 13px;
  }

  .about-text .section-body {
    font-size: 14.5px;
    line-height: 1.75;
  }

  .about-text div[style] {
    margin-top: 16px !important;
    gap: 10px !important;
    flex-wrap: wrap;
  }
}


/* ── SMALL PHONES (321px – 390px) ──────────────────────────── */
@media (max-width: 390px) {
  .about-section {
    padding: 36px 18px 32px;
    gap: 22px;
  }

  .about-card {
    min-height: 210px;
    border-radius: 14px;
  }

  .about-badge-float {
    bottom: 12px;
    right: 12px;
    padding: 9px 12px;
    border-radius: 9px;
  }

  .about-badge-float .num {
    font-size: 20px;
  }

  .about-badge-float .lbl {
    font-size: 9.5px;
  }

  .about-pills {
    gap: 6px;
    margin-top: 8px;
  }

  .pill {
    font-size: 9px;
    padding: 3px 12px;
  }

  .about-text .section-body {
    font-size: 14px;
    line-height: 1.72;
  }

  .about-text div[style] {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px !important;
  }
}


/* ── VERY SMALL PHONES (≤ 320px) ───────────────────────────── */
@media (max-width: 320px) {
  .about-section {
    padding: 32px 16px 28px;
    gap: 20px;
  }

  .about-card {
    min-height: 185px;
    border-radius: 12px;
  }

  .about-badge-float {
    bottom: 10px;
    right: 10px;
    padding: 8px 11px;
  }

  .about-badge-float .num {
    font-size: 18px;
  }

  .about-badge-float .lbl {
    font-size: 9px;
    margin-top: 1px;
  }

  .about-pills {
    gap: 5px;
  }

  .pill {
    font-size: 8.5px;
    padding: 3px 10px;
  }

  .about-text .section-body {
    font-size: 13px;
    line-height: 1.7;
  }
}


          
 @media (max-width: 767px) {
 
   /* ── Section: no side padding — carousel bleeds edge-to-edge */
   .whatwedo-section {
     padding: 44px 0 48px;
   }
 
   /* ── Kill the two-column grid, go single column ─────────── */
   .whatwedo-inner {
     display: flex;
     flex-direction: column;
     gap: 28px;
     max-width: 100%;
     margin: 0;
   }
 
   /* ── Left panel: un-sticky, sits above carousel ─────────── */
   .whatwedo-left {
     position: static;
     top: auto;
     padding: 0 24px;
     gap: 18px;
   }
 
   .whatwedo-desc { font-size: 14.5px; line-height: 1.78; margin-top: 10px; }
   .button-wrap   { margin-top: 0; }
 
   /* ── Dot indicators ─────────────────────────────────────── */
   .whatwedo-progress { display: flex; gap: 8px; align-items: center; }
 
   .wp-dot {
     width: 8px; height: 8px;
     border-radius: 50%;
     background: rgba(120, 78, 144, 0.2);
     cursor: pointer;
     transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
   }
   .wp-dot.active {
     width: 24px;
     border-radius: 4px;
     background: var(--purple);
   }
 
 
 
   /* ── Scroll container (the carousel viewport) ───────────── */
 
   .whatwedo-right::-webkit-scrollbar { display: none; } /* Chrome/Safari */
 
   /* ── Track: cards laid out in a row ─────────────────────── */
  .whatwedo-right {
  position: relative;

  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
    position: relative;
     display: block;           /* kill flex-column gap */
     width: 100%;
     overflow: visible;
  gap: 16px;
  padding: 4px 20px 16px;

  overflow-x: auto !important;
  overflow-y: hidden !important;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
}
 
   /* ── Each card: 85% wide so next card peeks ─────────────── */
   .svc-card {
     flex: 0 0 85%;
     scroll-snap-align: start;
     /* reset GSAP's inline transform/opacity so cards are visible */
     opacity: 1 !important;
     transform: none !important;
     /* keep card rounded on all sides in carousel */
     border-radius: var(--radius-lg) !important;
   }
 
   /* ── Card inner: image on top, text below ───────────────── */
   .svc-card-content {
     display: flex !important;
     flex-direction: column !important;
     grid-template-columns: unset !important;
     min-height: unset !important;
   }
 
   /* Image block */
   .svc-card-img {
     order: -1;
     height: 190px;
     width: 100%;
     border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
     position: relative;
     overflow: hidden;
   }
   .svc-card-img img {
     position: absolute;
     inset: 0;
     width: 100%; height: 100%;
     object-fit: cover;
   }
 
   /* Text block */
   .svc-card-text {
     padding: 20px 20px 24px 24px;
   }
 
   .svc-card-title   { font-size: 17px; }
   .svc-card-tagline { font-size: 13px; }
   .svc-specs li     { font-size: 12.5px; }
   .spec-label       { min-width: 80px; }
 
   /* Accent bar: left side → top bar */
   .svc-card::before {
     top: 0; bottom: auto;
     left: 0; right: 0;
     width: 100%; height: 4px;
     border-radius: 4px 4px 0 0;
   }
 
   /* Ghost number */
   .svc-card-number { font-size: 44px; top: 12px; right: 16px; }
 }
 
 /* ── 480 px ──────────────────────────────────────────────────── */
 @media (max-width: 480px) {
   .whatwedo-section { padding: 40px 0 44px; }
   .whatwedo-left    { padding: 0 20px; }
   .whatwedo-right   { padding: 4px 16px 14px; gap: 14px; }
   .svc-card         { flex: 0 0 88%; }
   .svc-card-img     { height: 170px; }
   .svc-card-text    { padding: 18px 18px 22px; }

 }
 
 /* ── 390 px ──────────────────────────────────────────────────── */
 @media (max-width: 390px) {
   .whatwedo-section { padding: 36px 0 40px; }
   .whatwedo-left    { padding: 0 18px; gap: 14px; }
   .whatwedo-right   { padding: 4px 14px 12px; gap: 12px; }
   .svc-card         { flex: 0 0 90%; }
   .svc-card-img     { height: 155px; }
   .svc-card-text    { padding: 16px 16px 20px; }

   .wp-dot        { width: 7px; height: 7px; }
   .wp-dot.active { width: 20px; }
 }
 
 /* ── 320 px ──────────────────────────────────────────────────── */
 @media (max-width: 320px) {
   .whatwedo-left  { padding: 0 16px; }
   .whatwedo-right { padding: 4px 12px 10px; gap: 10px; }
   .svc-card-img   { height: 140px; }
   .svc-card-text  { padding: 14px 14px 18px; }

 }
/* ═══════════════════════════════════════════════════
   CONTACT STRIPE — MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media (max-width: 767px) {

  .contact-stripe {
    position: relative;
    grid-template-columns: 1fr;
    height: auto;
    padding: 40px 24px 220px;
    gap: 24px;
    overflow: hidden;
    margin-bottom: -2px; /* removes white seam */
  }

  .contact-stripe-text h2 {
    font-size: clamp(32px, 8vw, 42px);
    margin: 16px 0 10px;
    letter-spacing: -0.5px;
  }

  .cs-right {
    padding-top: 0;
    justify-content: flex-start;
  }

  .cs-content {
    width: 100%;
  }

  .cs-right-text {
    font-size: 15px;
    line-height: 1.8;
    margin: -40px 0 20px;
  }

  .cs-actions {
    justify-content: flex-start;
    margin-right: 0;
    margin-bottom: 40px;
    gap: 16px;
  }

  .cityscape-layers {
    position: absolute;
    left: 0;
    bottom: -2px; /* push cityscape slightly into footer */
    width: 100%;
    height: 220px;
    z-index: 5;
    pointer-events: none;
  }

  .layer.towers-front {
    left: 0;
  }

  .layer.towers-fill {
    left: 0;
  }
}

@media (max-width: 480px) {

  .contact-stripe {
    padding: 36px 20px 190px;
    gap: 20px;
    margin-bottom: -3px;
  }

  .contact-stripe-text h2 {
    font-size: clamp(28px, 7.5vw, 36px);
    margin: 12px 0 8px;
  }

  .cs-right-text {
    font-size: 14px;
  }

  .cityscape-layers {
    height: 190px;
    bottom: -2px;
  }
}

@media (max-width: 390px) {

  .contact-stripe {
    padding: 32px 18px 170px;
    gap: 18px;
    margin-bottom: -3px;
  }

  .contact-stripe-text h2 {
    font-size: clamp(26px, 7vw, 32px);
  }

  .cityscape-layers {
    height: 170px;
    bottom: -2px;
  }
}

@media (max-width: 320px) {

  .contact-stripe {
    padding: 28px 16px 150px;
    margin-bottom: -3px;
  }

  .contact-stripe-text h2 {
    font-size: 26px;
  }

  .cs-right-text {
    font-size: 13.5px;
  }

  .cityscape-layers {
    height: 150px;
    bottom: -2px;
  }
}
/* ═══════════════════════════════════════════════════════════
   USP CONVEYOR — MOBILE CAROUSEL
   Breakpoint 860px matches JS: window.matchMedia('(max-width: 860px)')
   The desktop base CSS has:
     .usp-conveyor-section  { height:100vh; overflow:hidden }
     .usp-conveyor-stage    { position:relative; height:420px; overflow:hidden }
     .usp-card              { position:absolute; left:-80px; width:540px }
   Every one of those must be overridden with !important here.
═══════════════════════════════════════════════════════════ */

@media (max-width: 860px) {

  /* ── 1. Section: release height + both overflow axes ─── */
  .usp-conveyor-section {
    height: auto !important;
    min-height: 0 !important;
    overflow-x: hidden !important;   /* prevent horizontal bleed */
    overflow-y: visible !important;
    padding: 52px 0 56px;
  }

  /* ── 2. Inner: flex column, left panel above carousel ── */
  .usp-conveyor-inner {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;  /* kill desktop grid */
    height: auto !important;
    padding: 0 20px;
    margin-right: 0 !important;
    gap: 24px;
    align-items: stretch;
  }

  /* ── 3. Left panel: un-sticky, full width ───────────── */
  .usp-conveyor-left {
    position: static !important;
    width: 100%;
    gap: 12px;
  }

  .usp-conveyor-left .section-title {
    font-size: clamp(24px, 7vw, 34px);
  }

  .usp-conveyor-left .section-body {
    font-size: 13.5px;
    margin-bottom: 4px;
  }

  .usp-conv-hint { display: none !important; }

  /* ── 4. Stage: horizontal scroll-snap carousel ──────── */
  .usp-conveyor-stage {
    position: static !important;     /* was relative + overflow:hidden */
    height: auto !important;
    overflow-x: auto !important;     /* enable horizontal scroll */
    overflow-y: visible !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    /* bleed to screen edges past inner padding */
    padding: 8px 20px 24px !important;
    margin: 0 -20px !important;
    scroll-padding-left: 20px;
    width: calc(100% + 40px) !important;
    box-sizing: border-box;
  }
  .usp-conveyor-stage::-webkit-scrollbar { display: none; }

  /* ── 5. Cards: flex items, all GSAP overrides wiped ─── */
  .usp-card {
    /* Kill desktop absolute + left:-80px + width:540px */
    position: relative !important;   /* relative keeps z-stacking but is in-flow */
    top: auto !important;
    left: auto !important;
    right: auto !important;

    /* Flex carousel sizing — 82% wide so next card peeks */
    flex: 0 0 82% !important;
    width: 82% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 280px;
    box-sizing: border-box;

    padding: 28px 20px 32px;
    scroll-snap-align: start;

    /* Nuke every GSAP inline property */
    transform: none !important;
    opacity: 1 !important;
    z-index: auto !important;
    will-change: auto !important;
  }

  /* ── 6. Card internals ───────────────────────────────── */
  .usp-card-num {
    font-size: 76px;
    top: 8px;
    right: 12px;
  }

  .usp-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .usp-card-title {
    font-size: 19px;
    margin-top: 14px;
  }

  .usp-card-desc {
    font-size: 13px;
    line-height: 1.78;
  }

  /* Bar always fully visible — no JS active state on mobile */
  .usp-card-bar { width: 100% !important; }
}

/* ── 480px ──────────────────────────────────────────────── */
@media (max-width: 480px) {

  .usp-conveyor-section { padding: 44px 0 48px; }

  .usp-conveyor-inner   { padding: 0 16px; gap: 20px; }

  .usp-conveyor-stage {
    padding: 8px 16px 20px !important;
    margin: 0 -16px !important;
    width: calc(100% + 32px) !important;
    scroll-padding-left: 16px;
    gap: 12px;
  }

  .usp-card {
    flex: 0 0 85% !important;
    width: 85% !important;
    min-height: 260px;
    padding: 24px 18px 28px;
  }

  .usp-card-num   { font-size: 64px; }
  .usp-card-title { font-size: 17px; }
  .usp-card-desc  { font-size: 12.5px; }
  .usp-card-icon  { width: 46px; height: 46px; border-radius: 10px; }
}

/* ── 390px ──────────────────────────────────────────────── */
@media (max-width: 390px) {

  .usp-conveyor-section { padding: 40px 0 44px; }

  .usp-conveyor-inner   { padding: 0 14px; gap: 18px; }

  .usp-conveyor-stage {
    padding: 6px 14px 18px !important;
    margin: 0 -14px !important;
    width: calc(100% + 28px) !important;
    scroll-padding-left: 14px;
    gap: 10px;
  }

  .usp-card {
    flex: 0 0 87% !important;
    width: 87% !important;
    padding: 20px 16px 24px;
  }

  .usp-card-num   { font-size: 56px; }
  .usp-card-title { font-size: 16px; margin-top: 10px; }
  .usp-card-desc  { font-size: 12px; }

  .usp-conv-dot        { width: 7px; height: 7px; }
  .usp-conv-dot.active { width: 18px; }
}

/* ── 320px ──────────────────────────────────────────────── */
@media (max-width: 320px) {

  .usp-conveyor-inner { padding: 0 12px; }

  .usp-conveyor-stage {
    padding: 6px 12px 16px !important;
    margin: 0 -12px !important;
    width: calc(100% + 24px) !important;
    scroll-padding-left: 12px;
  }

  .usp-card {
    flex: 0 0 90% !important;
    width: 90% !important;
    padding: 18px 14px 22px;
  }

  .usp-card-title { font-size: 15px; }
  .usp-card-desc  { font-size: 11.5px; }
}
/* ═══════════════════════════════════════════════════════════
   SOLUTIONS SECTION — MOBILE RESPONSIVE
═══════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  .solutions-section {
    padding: 24px 16px 48px;
    background: #f8f6f3;
  }

  .solutions-inner {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 28px;
  }

  /* ── Image ───────────────────────────── */

  .solutions-visual {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
  }

  .solutions-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-radius: 28px;
  }

  .solutions-img-overlay {
    inset: 0;
    height: 100%;
    border-radius: 28px;
  }

  /* ── Content ─────────────────────────── */

  .solutions-content {
    padding: 0;
    display: block;
  }

  .section-eyebrow {
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
    line-height: 1;
    margin-bottom: 20px;
  }

  .section-body {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px !important;
  }

  /* ── Accordion Card ─────────────────── */

  .solutions-accordion {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
      0 10px 30px rgba(0,0,0,0.04);
  }

  .acc-item {
    border-bottom: 1px solid rgba(107,33,168,0.08);
  }

  .acc-item:first-child {
    border-top: none;
  }

  .acc-item:last-child {
    border-bottom: none;
  }

  .acc-trigger {
    padding: 22px 20px;
    gap: 16px;
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .acc-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 1.2rem;
  }

  .acc-body {
    padding: 0 20px 0 70px;
  }

  .acc-item.active .acc-body {
    padding: 0 20px 24px 70px;
  }

  .acc-body p {
    font-size: 0.95rem;
    line-height: 1.9;
  }
}


/* ───────────────────────────────────────
   480px
─────────────────────────────────────── */

@media (max-width: 480px) {

  .solutions-section {
    padding: 20px 14px 42px;
  }

  .solutions-inner {
    gap: 24px;
  }

  .solutions-visual,
  .solutions-img,
  .solutions-img-overlay {
    border-radius: 24px;
  }

  .section-title {
    font-size: 2.9rem;
  }

  .section-body {
    font-size: 0.95rem;
  }

  .acc-trigger {
    font-size: 1rem;
    padding: 20px 18px;
  }

  .acc-body {
    padding-left: 64px;
  }

  .acc-item.active .acc-body {
    padding-left: 64px;
  }
}


/* ───────────────────────────────────────
   390px
─────────────────────────────────────── */

@media (max-width: 390px) {

  .section-title {
    font-size: 2.5rem;
  }

  .section-body {
    font-size: 0.92rem;
  }

  .acc-trigger {
    font-size: 0.95rem;
  }

  .acc-body p {
    font-size: 0.88rem;
  }
}


/* ───────────────────────────────────────
   320px
─────────────────────────────────────── */

@media (max-width: 320px) {

  .solutions-section {
    padding: 18px 12px 36px;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .acc-trigger {
    gap: 12px;
    padding: 18px 14px;
    font-size: 0.88rem;
  }

  .acc-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .acc-body {
    padding-left: 56px;
  }

  .acc-item.active .acc-body {
    padding-left: 56px;
  }

  .acc-body p {
    font-size: 0.84rem;
    line-height: 1.8;
  }
}
/* ═══════════════════════════════════════════════════════════
   OUR WORKS PAGE — MOBILE RESPONSIVE
   Covers: 767px → 480px → 390px → 320px
═══════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  /* ── Intro section ── */
  .ow-intro-section {
    padding: 28px 20px;
  }
  .ow-intro-inner {
    padding-left: 20px;
    border-left-width: 3px;
  }
  .ow-intro-quote {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
    line-height: 1.65;
  }

  /* ── Dashboard / Impact bar ── */
  .ow-dashboard-container {
    margin: -28px auto 0;
    padding: 0 20px;
  }

  /* ── Featured case study card: stack vertically ── */
  .ow-feature-card {
    grid-template-columns: 1fr;
    left: 0;
    width: 100%;
    min-height: auto;
    border-radius: 12px;
    margin-bottom: 28px;
  }

  .ow-feature-image {
    min-height: 210px;
    max-height: 240px;
  }

  .ow-feature-content {
    padding: 24px 20px 20px;
    max-width: 100%;
  }

  .ow-feature-content h3 {
    font-size: clamp(20px, 6vw, 28px);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
  }

  .ow-feature-content p {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 16px;
  }

  /* Metrics: wrap naturally */
  .ow-feature-metrics {
    gap: 8px;
  }
  .ow-feature-metrics div {
    min-width: 72px;
    padding: 10px 12px;
  }
  .ow-feature-metrics strong {
    font-size: 22px;
  }
  .ow-feature-metrics span {
    font-size: 9px;
  }

  /* Impact panel: becomes a bottom strip */
  .ow-project-impact {
    border-left: none;
    border-top: 1px solid #4e1f67;
    padding: 20px 20px;
  }
  .ow-impact-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .ow-impact-feature {
    flex: 1 1 calc(50% - 8px);
    padding: 10px;
  }
  .ow-impact-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
  }
  .ow-impact-feature span {
    font-size: 11.5px;
  }

  /* ── Explore / grid section ── */
  .ow-grid-section {
    padding: 28px 20px 48px;
  }

  .ow-explore-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
  }
  .ow-explore-title {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  /* Filter bar: horizontal scroll */
  .ow-filter-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    gap: 6px;
  }
  .ow-filter-inner::-webkit-scrollbar { display: none; }
  .ow-filter-btn {
    flex-shrink: 0;
    height: 34px;
    padding: 0 14px;
    font-size: 11.5px;
  }

  /* Grid: 1 column on mobile */
  .ow-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: visible;
  }

  /* Card */
  .ow-card-thumb {
    height: 195px;
  }
  .ow-card-body {
    padding: 18px 18px 20px;
  }
  .ow-card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .ow-card-desc {
    font-size: 12.5px;
    line-height: 1.7;
    margin-bottom: 14px;
  }
  .ow-card-stats {
    gap: 8px;
  }
  .ow-stat {
    padding: 11px 6px;
  }
  .ow-stat-val {
    font-size: 17px;
  }
  .ow-stat-lbl {
    font-size: 9px;
  }

  /* View more button */
  .ow-view-all-wrap {
    margin-top: 32px;
  }
}

/* ── 480px ─────────────────────────────────────────────── */
@media (max-width: 480px) {

  .ow-intro-section { padding: 24px 16px; }
  .ow-intro-inner   { padding-left: 16px; }

  .ow-dashboard-container { padding: 0 16px; }

  .ow-feature-image   { min-height: 185px; max-height: 210px; }
  .ow-feature-content { padding: 20px 16px 18px; }
  .ow-feature-content h3 { font-size: clamp(18px, 5.5vw, 24px); }

  .ow-feature-metrics div    { min-width: 65px; padding: 9px 10px; }
  .ow-feature-metrics strong { font-size: 20px; }

  .ow-project-impact { padding: 18px 16px; }
  .ow-impact-feature { flex: 1 1 calc(50% - 6px); }

  .ow-grid-section { padding: 24px 16px 40px; }

  .ow-card-thumb { height: 180px; }
  .ow-card-body  { padding: 16px 16px 18px; }
  .ow-card-title { font-size: 15.5px; }
  .ow-card-desc  { font-size: 12px; }
  .ow-stat-val   { font-size: 16px; }
}

/* ── 390px ─────────────────────────────────────────────── */
@media (max-width: 390px) {

  .ow-intro-section { padding: 20px 14px; }
  .ow-intro-inner   { padding-left: 14px; }
  .ow-intro-quote   { font-size: 1rem; }

  .ow-dashboard-container { padding: 0 14px; margin: -20px auto 0; }

  .ow-feature-image   { min-height: 170px; max-height: 195px; }
  .ow-feature-content { padding: 18px 14px 16px; }
  .ow-feature-content h3 { font-size: clamp(17px, 5vw, 22px); }
  .ow-feature-content p  { font-size: 12.5px; }

  .ow-feature-metrics { gap: 6px; }
  .ow-feature-metrics div    { min-width: 60px; padding: 8px 8px; }
  .ow-feature-metrics strong { font-size: 18px; }
  .ow-feature-metrics span   { font-size: 8.5px; }

  .ow-impact-feature { flex: 1 1 100%; }   /* single column on small screens */

  .ow-grid-section { padding: 20px 14px 36px; }

  .ow-filter-btn { height: 32px; padding: 0 12px; font-size: 11px; }

  .ow-card-thumb { height: 165px; }
  .ow-card-body  { padding: 14px 14px 16px; }
  .ow-card-title { font-size: 15px; }
  .ow-card-desc  { font-size: 12px; }

  .ow-card-stats { gap: 6px; }
  .ow-stat       { padding: 10px 4px; }
  .ow-stat-val   { font-size: 15px; }
  .ow-stat-lbl   { font-size: 8.5px; }

  .ow-card-num { font-size: 28px; }
}

/* ── 320px ─────────────────────────────────────────────── */
@media (max-width: 320px) {

  .ow-intro-section { padding: 18px 12px; }
  .ow-intro-inner   { padding-left: 12px; }
  .ow-intro-quote   { font-size: 0.95rem; line-height: 1.6; }

  .ow-dashboard-container { padding: 0 12px; }

  .ow-feature-image   { min-height: 155px; max-height: 175px; }
  .ow-feature-content { padding: 16px 12px 14px; }
  .ow-feature-content h3 { font-size: 17px; }
  .ow-feature-content p  { font-size: 12px; }

  .ow-feature-metrics div    { min-width: 54px; padding: 7px 7px; }
  .ow-feature-metrics strong { font-size: 16px; }

  .ow-project-impact { padding: 16px 12px; }

  .ow-grid-section { padding: 18px 12px 32px; }

  .ow-filter-btn { height: 30px; padding: 0 10px; font-size: 10.5px; }

  .ow-card-thumb { height: 150px; }
  .ow-card-body  { padding: 12px 12px 14px; }
  .ow-card-title { font-size: 14.5px; }
  .ow-card-desc  { font-size: 11.5px; line-height: 1.65; }

  .ow-stat    { padding: 8px 3px; border-radius: 9px; }
  .ow-stat-val { font-size: 14px; }
  .ow-stat-lbl { font-size: 8px; letter-spacing: 0.2px; }

  .ow-card-num { font-size: 24px; }

  .ow-explore-title { font-size: 18px; }
}
@media (max-width: 767px) {
 
  /* ── Hide the Project Impact panel ── */
  .ow-project-impact {
    display: none !important;
  }
 
  /* ── Filter tabs: 2-row wrap ── */
  .ow-filter-inner {
    flex-wrap: wrap;          /* allow wrapping — overrides the nowrap set earlier */
    overflow-x: visible;      /* no horizontal scroll needed anymore */
    gap: 8px;
  }
 
  /* Each button takes ~half the row so two sit per line */
  .ow-filter-btn {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
    justify-content: center;
  }
}
@media (max-width:767px){

  .ow-card{
    min-height:500px;
    max-height: fit-content;
  }

}
@media (max-width:767px){

  .ow-view-all-wrap{
    display:none !important;
  }

}
 /* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — RESPONSIVE OVERRIDES
   Paste at the END of your main.css (after all existing rules)
   Covers: 1024px tablets, 768px small tablets, 480px mobile,
           360px extra-small phones
═══════════════════════════════════════════════════════════ */

/* ── 1024px — Tablet landscape ─────────────────────────── */
@media (max-width: 1024px) {

  .ct-intro-strip,
  .ct-map-section,
  .ct-faq-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .ct-main-section {
    grid-template-columns: 340px 1fr;
    gap: 40px;
    padding: 52px 32px 60px;
  }

  .ct-map-grid {
    gap: 24px;
  }
}

/* ── 900px — Tablet portrait breakpoint ────────────────── */
@media (max-width: 900px) {

  /* Stack left + right columns vertically */
  .ct-main-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px 56px;
  }

  /* Left column cards become full width */
  .ct-connect-card {
    min-height: auto;
  }

  .ct-trust-card {
    min-height: auto;
  }

  /* Stack office map cards vertically */
  .ct-map-grid {
    grid-template-columns: 1fr;
  }

  .ct-map-section {
    padding: 32px 24px;
  }

  .ct-map-header {
    margin-bottom: 32px;
  }

  .ct-faq-section {
    padding: 32px 24px 140px;
  }
}

/* ── 768px — Small tablets / large phones ──────────────── */
@media (max-width: 768px) {

  /* Intro strip */
  .ct-intro-strip {
    padding: 28px 20px;
  }

  .ct-intro-inner {
    font-size: 14.5px;
    padding-left: 20px;
  }

  /* Form: two-column rows become single column */
  .ct-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ct-form-card {
    padding: 20px 20px;
  }

  .ct-form-title {
    font-size: clamp(24px, 6vw, 34px);
  }

  /* Form footer stacks submit + privacy note */
  .ct-form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .ct-submit-btn {
    width: 100%;
  }

  /* Connect card button alignment */
  .ct-connect-card .btn {
    margin-left: 0;
    width: 100%;
    min-width: unset;
    justify-content: center;
  }

  /* Office cards */
  .ct-office-name {
    font-size: 19px;
  }

  /* FAQ */
  .ct-faq-trigger {
    font-size: 14px;
    padding: 16px 18px;
  }

  .ct-faq-body {
    padding: 0 18px;
  }

  .ct-faq-item.open .ct-faq-body {
    padding: 16px 18px 20px;
  }
}

/* ── 480px — Mobile phones ─────────────────────────────── */
@media (max-width: 480px) {

  /* Intro */
  .ct-intro-strip {
    padding: 24px 16px;
  }

  .ct-intro-inner {
    font-size: 13.5px;
    padding-left: 16px;
    border-left-width: 3px;
  }

  /* Main section */
  .ct-main-section {
    padding: 28px 16px 40px;
    gap: 24px;
  }

  /* Connect card items */
  .ct-connect-item {
    gap: 12px;
  }

  .ct-connect-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .ct-connect-item a {
    font-size: 14px;
  }

  .ct-connect-item span {
    font-size: 11.5px;
  }

  /* Brochure items */
  .ct-brochure-item {
    padding: 10px 12px;
  }

  .ct-brochure-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .ct-brochure-content strong {
    font-size: 13.5px;
  }

  .ct-brochure-content span {
    font-size: 11px;
  }

  .ct-brochure-download {
    font-size: 9px;
  }

  /* Form card */
  .ct-form-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .ct-form-title {
    font-size: clamp(22px, 7vw, 28px);
  }

  .ct-form-subtitle {
    font-size: 13px;
  }

  .ct-form {
    gap: 16px;
  }

  /* Inputs */
  .ct-input-wrap input,
  .ct-input-wrap select,
  .ct-input-wrap textarea {
    font-size: 13.5px;
    padding: 12px 14px 12px 38px;
  }

  /* Office cards */
  .ct-map-section {
    padding: 24px 16px;
  }

  .ct-office-name {
    font-size: 17px;
    margin: 12px 16px 6px;
  }

  .ct-office-addr {
    font-size: 12.5px;
    margin: 0 16px 12px;
  }

  .ct-office-links {
    padding: 0 16px 16px;
    gap: 14px;
  }

  .ct-office-link {
    font-size: 12px;
  }

  /* FAQ */
  .ct-faq-section {
    padding: 24px 16px 130px;
  }

  .ct-faq-trigger {
    font-size: 13.5px;
    padding: 14px 16px;
  }

  .ct-faq-body {
    padding: 0 16px;
  }

  .ct-faq-item.open .ct-faq-body {
    padding: 14px 16px 18px;
  }

  .ct-faq-body p {
    font-size: 13.5px;
  }

  /* Cityscape: scale down towers on small screens */
  .faq-cityscape-layers .layer.towers-front {
    left: 60px;
  }

  .faq-cityscape-layers .layer.towers-fill {
    left: 50px;
  }

  /* Success message */
  .ct-form-success {
    flex-direction: column;
    padding: 20px 16px;
    gap: 12px;
  }

  .ct-success-icon {
    width: 44px;
    height: 44px;
  }
}

/* ── 360px — Extra-small phones ────────────────────────── */
@media (max-width: 360px) {

  .ct-intro-inner {
    font-size: 13px;
  }

  .ct-main-section {
    padding: 24px 12px 36px;
  }

  .ct-form-card {
    padding: 16px 12px;
  }

  .ct-form-title {
    font-size: 21px;
  }

  .ct-connect-card,
  .ct-trust-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .ct-map-section,
  .ct-faq-section,
  .ct-intro-strip {
    padding-left: 12px;
    padding-right: 12px;
  }

  .ct-office-name {
    margin: 10px 12px 4px;
  }

  .ct-office-addr {
    margin: 0 12px 10px;
  }

  .ct-office-links {
    padding: 0 12px 14px;
  }
}
@media (max-width: 767px) {

  /* Force single-column layout */
  .ct-main-section {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    gap: 24px !important;
  }

  .ct-info-col,
  .ct-form-col {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block !important;
  }

  /* Ensure form appears */
  .ct-form-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Form rows stack */
  .ct-form-row {
    grid-template-columns: 1fr !important;
  }

  /* Full-width inputs */
  .ct-input-wrap input,
  .ct-input-wrap select,
  .ct-input-wrap textarea {
    width: 100%;
    box-sizing: border-box;
  }

  /* reCAPTCHA */
  .ct-recaptcha-wrap {
    overflow-x: auto;
  }

  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: left top;
  }

  /* Footer stack */
  .ct-form-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .ct-submit-btn {
    width: 100% !important;
  }

  /* Maps one below another */
  .ct-map-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .ct-office-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Map size */
  #panvelMap,
  #mulundMap {
    width: 100% !important;
    height: 260px !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   HORIZONTAL OVERFLOW FIX — MOBILE ONLY
   Targets all elements that break the viewport width on phones
   Added at end of main.css so these rules win specificity
═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {

  /* ── GLOBAL: prevent any child from exceeding viewport ── */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* ── TOPBAR: reduce huge side padding ── */
  .topbar {
    padding: 8px 16px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .topbar-right {
    gap: 14px;
  }

  /* ── BASE SECTION / CONTAINER padding ── */
  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── ABOUT SECTION ── */
  .about-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .about-card {
    margin-left: 0;
  }

  /* ── WHAT WE DO ── */
  .whatwedo-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .whatwedo-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .whatwedo-left {
    position: static;
  }
  .whatwedo-right {
    overflow-x: hidden;
  }
  .svc-card-content {
    grid-template-columns: 1fr;
  }
  .svc-card-img {
    min-height: 180px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  /* ── SOLUTIONS panel — fixed-px image must flex ── */
  .sol-panel-image,
  .sol-panel-image img {
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
    object-fit: cover;
  }
  .sol-content {
    padding-left: 0;
    overflow-x: hidden;
  }

  /* ── CONTACT STRIPE ── */
  .contact-stripe {
    grid-template-columns: 1fr;
    height: auto;
    padding: 32px 20px 20px;
    overflow: hidden;
  }
  .cs-right {
    padding-top: 20px;
  }
  .cs-content {
    width: 100% !important;
    max-width: 100%;
  }
  .cs-actions {
    justify-content: flex-start;
    margin-right: 0;
  }

  /* ── CITYSCAPE LAYERS — absolute-positioned SVGs overflow on mobile ── */
  .cityscape-layers {
    overflow: hidden;
  }
  .layer.towers-front {
    left: 0 !important;
  }
  .layer.towers-fill {
    left: 0 !important;
  }
  .faq-cityscape-layers .layer.towers-front {
    left: 0 !important;
  }
  .faq-cityscape-layers .layer.towers-fill {
    left: 0 !important;
  }

  /* ── FOOTER ── */
  footer {
    padding: 32px 20px;
    overflow-x: hidden;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1;
    grid-row: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .bottom-footer-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  /* ── OUR WORK feature card — hard-coded 1280px width ── */
  .ow-feature-card {
    width: 100% !important;
    left: 0 !important;
    grid-template-columns: 1fr !important;
    min-height: auto;
  }
  .ow-project-impact {
    border-left: none;
    border-top: 1px solid #4e1f67;
  }

  /* ── OUR WORK dashboard container ── */
  .ow-dashboard-container {
    padding: 0 16px !important;
    overflow-x: hidden;
  }

  /* ── MEGA DROPDOWN — fixed 1100px width ── */
  .nav-mega-dropdown {
    width: calc(100vw - 32px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    overflow-x: hidden;
  }

  /* ── ABOUT FULL SECTION ── */
  .about-full-section {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 32px;
  }
  .about-full-badge {
    bottom: 10px;
    right: 10px;
  }

  /* ── ABOUT PAGE full section padding ── */
  .about-intro-section {
    padding: 32px 20px;
  }
  .about-intro-inner {
    padding-left: 16px;
  }
}

/* ── Extra tightening for small phones ── */
@media (max-width: 480px) {

  .topbar {
    padding: 6px 12px;
    font-size: 11.5px;
  }
  .topbar-right {
    gap: 10px;
  }
  .topbar-right a {
    font-size: 11px;
  }

  section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-stripe {
    padding: 24px 16px 16px;
  }

  footer {
    padding: 28px 16px;
  }

  .sol-panel-image,
  .sol-panel-image img {
    width: 100% !important;
    height: auto !important;
  }

  /* ── Hero partners row: tighter wrap ── */
  .hero-partners {
    gap: 14px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   OUR WORK — EXPLORE PROJECTS GRID — MOBILE RESPONSIVE
   Single source of truth. No conflicts. Breakpoints: 767 → 480 → 390 → 320
   ═══════════════════════════════════════════════════════════════ */

/* ── 767px and below: phones + small tablets ─────────────────── */
@media (max-width: 767px) {

  /* Section padding */
  .ow-grid-section {
    padding: 24px 16px 44px;
  }

  /* Header stacks */
  .ow-explore-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
  }

  .ow-explore-title {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  /* ── Filter: 2 per row using flex-wrap ── */
  .ow-filter-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow-x: visible;
  }

  .ow-filter-btn {
    flex: 1 1 calc(50% - 8px);
    height: 38px;
    font-size: 12px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
  }

  /* ── Hide impact panel on mobile ── */
  .ow-project-impact {
    display: none !important;
  }

  /* ── 1 column grid ── */
  .ow-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 16px;
    overflow-x: visible;
  }

  /* ── Card: standard vertical layout, full width ── */
  .ow-card {
    display: block;          /* override any horizontal layout */
    width: 100%;
    min-height: 0;
    max-height: none;
    border-radius: 14px;
  }

  .ow-card::before {
    /* restore top border stripe */
    width: auto;
    height: 3px;
    top: 0; left: 0; right: 0;
    border-radius: 14px 14px 0 0;
  }

  .ow-card-thumb {
    height: 200px;
    border-radius: 0;
  }

  .ow-card-thumb img {
    border-radius: 0;
  }

  .ow-card-body {
    padding: 16px 16px 18px;
  }

  .ow-card-meta {
    margin-bottom: 8px;
  }

  .ow-meta-loc {
    font-size: 11px;
  }

  .ow-meta-year {
    font-size: 11px;
  }

  .ow-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .ow-card-desc {
    display: block;          /* show description */
    font-size: 12.5px;
    line-height: 1.7;
    margin-bottom: 14px;
  
  }

  .ow-card-stats {
    gap: 8px;
  }

  .ow-stat {
    padding: 10px 6px;
    border-radius: 10px;
  }

  .ow-stat-val {
    font-size: 16px;
  }

  .ow-stat-lbl {
    font-size: 9px;
  }

  .ow-card-num {
    font-size: 28px;
  }

  /* View more button: visible and centered */
  .ow-view-all-wrap {
    display: flex !important;
    margin-top: 28px;
  }

  .ow-view-all-wrap.is-hidden {
    display: none !important;
  }
}

/* ── 480px ──────────────────────────────────────────────────── */
@media (max-width: 480px) {

  .ow-grid-section { padding: 20px 14px 40px; }

  .ow-filter-btn {
    height: 36px;
    font-size: 11.5px;
  }

  .ow-card-thumb  { height: 185px; }
  .ow-card-body   { padding: 14px 14px 16px; }
  .ow-card-title  { font-size: 15.5px; }
  .ow-card-desc   { font-size: 12px; }
  .ow-stat-val    { font-size: 15px; }
}

/* ── 390px ──────────────────────────────────────────────────── */
@media (max-width: 390px) {

  .ow-grid-section { padding: 18px 12px 36px; }

  .ow-filter-btn {
    height: 34px;
    font-size: 11px;
    padding: 0 10px;
  }

  .ow-card-thumb  { height: 170px; }
  .ow-card-body   { padding: 13px 13px 15px; }
  .ow-card-title  { font-size: 15px; }
  .ow-card-desc   { font-size: 11.5px; }
  .ow-stat        { padding: 8px 4px; }
  .ow-stat-val    { font-size: 14px; }
  .ow-stat-lbl    { font-size: 8.5px; }
  .ow-card-num    { font-size: 24px; }
}

/* ── 320px ──────────────────────────────────────────────────── */
@media (max-width: 320px) {

  .ow-grid-section { padding: 16px 10px 32px; }

  .ow-filter-btn {
    height: 32px;
    font-size: 10.5px;
    padding: 0 8px;
  }

  .ow-card-thumb  { height: 155px; }
  .ow-card-body   { padding: 12px 12px 14px; }
  .ow-card-title  { font-size: 14.5px; }
  .ow-card-desc   { font-size: 11px; }
  .ow-stat-val    { font-size: 13px; }
  .ow-stat-lbl    { font-size: 8px; }
}
/* ═══════════════════════════════════════════════════
   SERVICES PAGE — MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media (max-width: 767px) {

  /* ── Kill scroll spacer height on mobile ────────── */
  .svc-scroll-spacer {
    height: auto !important;
  }

  /* ── Section: single column, no pin ────────────── */
  .svc-detail-section {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .svc-detail-section.svc-pinned {
    position: static;
  }

  /* ── Sidebar: full-width single-row tab strip ───── */
 .svc-sidebar {
  position: sticky;
  top: 80px; /* adjust to navbar height */

  z-index: 100;
  background: var(--bg);

  padding: 0;
  border-right: none;
  border-bottom: 1px solid var(--border);

  flex-direction: row;
  gap: 0;

  overflow-x: auto;
  overflow-y: hidden;

  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
  .svc-sidebar::-webkit-scrollbar { display: none; }
.svc-tab-list {
  display: flex;
  flex-direction: row;
  overflow: visible;
width: max-content;
min-width: 100%;
margin-left: -10px;
}

.svc-tab-item {
  flex: 1;
  min-width: 80px;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 6px;
  padding: 12px 8px;

  border-left: none;
  border-bottom: 3px solid transparent;

  white-space: normal;
  word-break: break-word;

  font-size: 10px;
  line-height: 1.15;
  text-align: center;
}
  .svc-tab-item:hover {
    border-left-color: transparent;
    border-bottom-color: rgba(107, 33, 168, 0.3);
  }
  .svc-tab-item.active {
    border-left-color: transparent;
    border-bottom-color: var(--purple);
    background: var(--white);
    box-shadow: none;
  }
  .svc-tab-item.active::after { display: none; }

  .svc-tab-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  /* Hide sidebar extras (brochure + contact boxes) on mobile */
  .svc-sidebar-extra { display: none; }

  /* ── Panels: stack image above content ──────────── */
  .svc-panels { overflow: visible; }

  .svc-panels::before {
    background-size: 320px;
    opacity: 0.18;
  }

  .svc-panel {
    position: relative;
    grid-template-columns: 1fr;
    min-height: auto;
    inset: auto;
  }

  /* Hide inactive panels */
  .svc-panel { display: none; }
  .svc-panel.active {
    display: grid;
    z-index: 2;
  }

  /* Image on top */
  .svc-panel-img-wrap {
    height: 290px;
    margin-top: 0;
    order: -1;
    border-radius: 0;
  }
  .svc-panel-img-wrap img {
    border-radius: 0;
    object-position: center 16%;
  }

  .svc-panel-img-tag {
    bottom: 16px;
    left: auto;
    right: 16px;
    font-size: 10px;
    padding: 6px 14px;
  }

  /* Content below image */
  .svc-panel-body {
    padding: 20px 24px 20px;
    justify-content: flex-start;
  }

  .svc-panel-title {
    font-size: clamp(22px, 6.5vw, 30px);
    margin: 8px 0 0;
  }

  .svc-panel-divider {
    margin: 16px 0 18px;
  }

  .svc-panel-body p {
    font-size: 14px;
    line-height: 1.8;
  }

  .svc-panel-features { gap: 6px; margin-top: 8px; }

  .svc-feature-pill {
    font-size: 10px;
    padding: 4px 12px;
  }

  .svc-btn { margin-top: 20px; }
}

@media (max-width: 480px) {

  .svc-tab-item  { flex: 0 0 20%; font-size: 9.5px; padding: 10px 3px; gap: 5px; }
  .svc-tab-icon  { width: 26px; height: 26px; border-radius: 7px; }

  .svc-panel-img-wrap { height: 290px; }
  .svc-panel-body     { padding: 28px 20px 36px; }
  .svc-panel-title    { font-size: clamp(20px, 6vw, 26px); }
  .svc-panel-body p   { font-size: 13.5px; }
}

@media (max-width: 390px) {

  .svc-tab-item  { font-size: 9px; padding: 9px 2px; }
  .svc-tab-icon  { width: 24px; height: 24px; border-radius: 7px; }

  .svc-panel-img-wrap { height: 220px; }
  .svc-panel-body     { padding: 24px 18px 32px; }
  .svc-panel-title    { font-size: clamp(19px, 5.5vw, 24px); }
  .svc-panel-body p   { font-size: 13px; }
  .svc-feature-pill   { font-size: 9.5px; padding: 4px 10px; }
}

@media (max-width: 320px) {

  .svc-tab-item  { font-size: 8.5px; padding: 8px 2px; }
  .svc-tab-icon  { width: 22px; height: 22px; border-radius: 6px; }

  .svc-panel-img-wrap { height: 170px; }
  .svc-panel-body     { padding: 20px 16px 28px; }
  .svc-panel-title    { font-size: 19px; }
  .svc-panel-body p   { font-size: 12.5px; line-height: 1.75; }
}
/* ═══════════════════════════════════════════════════════════
   SOLUTIONS PAGE — MOBILE RESPONSIVE
   Covers: 767px → 480px → 390px → 320px
═══════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  /* ── Explorer: single column, no horizontal overflow ── */
  .sol-explorer {
    grid-template-columns: 1fr;
    padding: 24px 20px 40px;
    gap: 0;
  }

  /* ── SIDEBAR: collapses to an accordion strip ── */
  .sol-sidebar {
    position: static;
    top: auto;
    margin-left: 0;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
  }

  /* Category headers: slightly taller touch targets */
  .sol-cat-header {
    padding: 14px 16px;
    font-size: 14px;
  }

  /* Sub-items: slightly smaller, still comfortable */
  .sol-sub-item {
    padding: 10px 16px 10px 32px;
    font-size: 13px;
  }

  /* ── Content area: no left padding on mobile ── */
  .sol-content {
    padding-left: 0;
    min-width: 0;
  }

  /* ── Panel image: full width, fixed height ── */
  .sol-panel-image {
    width: 100%;
    height: 220px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
  }
  .sol-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ── Panel body ── */
  .sol-panel-body {
    padding: 0 0 28px;
  }

  .sol-panel-title {
    font-size: clamp(20px, 6vw, 28px);
    margin-bottom: 10px;
  }

  .sol-panel-desc {
    font-size: 13.5px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  /* ── Two-column layout → single column ── */
  .sol-panel-cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Issues list */
  .sol-panel-issues ul li {
    font-size: 13px;
  }

  /* Benefits card */
  .sol-benefits-card {
    padding: 16px 18px;
  }
  .sol-benefits-title {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .sol-benefits-card ul li {
    font-size: 12.5px;
  }

  /* ── More strip ── */
  .sol-more-strip {
    margin-top: 32px;
    padding-top: 28px;
  }
  .sol-more-title {
    font-size: clamp(18px, 5.5vw, 24px);
    margin-bottom: 18px;
  }

  /* More cards: 2 columns on tablet-ish, see narrower overrides below */
  .sol-more-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sol-more-card h4 {
    font-size: 13px;
    padding: 10px 8px;
  }
  .sol-more-cat-label {
    font-size: 10px;
    padding: 6px 8px;
  }
}

/* ── 480px ─────────────────────────────────────────────── */
@media (max-width: 480px) {

  .sol-explorer {
    padding: 20px 16px 36px;
  }

  .sol-panel-image {
    height: 195px;
  }

  .sol-panel-title {
    font-size: clamp(19px, 5.5vw, 24px);
  }

  .sol-panel-desc {
    font-size: 13px;
  }

  .sol-benefits-card ul li,
  .sol-panel-issues ul li {
    font-size: 12.5px;
  }

  .sol-more-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sol-more-card h4 {
    font-size: 12px;
    padding: 8px 6px;
  }
}

/* ── 390px ─────────────────────────────────────────────── */
@media (max-width: 390px) {

  .sol-explorer {
    padding: 16px 14px 32px;
  }

  .sol-sidebar {
    margin-bottom: 20px;
  }

  .sol-cat-header {
    padding: 12px 14px;
    font-size: 13.5px;
  }

  .sol-sub-item {
    padding: 9px 14px 9px 28px;
    font-size: 12.5px;
  }

  .sol-panel-image {
    height: 175px;
  }

  .sol-panel-title {
    font-size: clamp(18px, 5vw, 22px);
  }

  .sol-panel-desc {
    font-size: 12.5px;
    line-height: 1.75;
  }

  .sol-benefits-title {
    font-size: 15px;
  }

  .sol-benefits-card ul li,
  .sol-panel-issues ul li {
    font-size: 12px;
  }

  .sol-more-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sol-more-card h4 {
    font-size: 11.5px;
    padding: 8px 4px;
  }

  .sol-more-title {
    font-size: clamp(17px, 5vw, 21px);
  }
}

/* ── 320px ─────────────────────────────────────────────── */
@media (max-width: 320px) {

  .sol-explorer {
    padding: 14px 12px 28px;
  }

  .sol-cat-header {
    padding: 11px 12px;
    font-size: 13px;
  }

  .sol-sub-item {
    padding: 8px 12px 8px 24px;
    font-size: 12px;
  }

  .sol-panel-image {
    height: 155px;
  }

  .sol-panel-title {
    font-size: 18px;
  }

  .sol-panel-desc {
    font-size: 12px;
    line-height: 1.7;
  }

  .sol-benefits-card {
    padding: 14px 14px;
  }

  .sol-benefits-title {
    font-size: 14px;
  }

  .sol-benefits-card ul li,
  .sol-panel-issues ul li {
    font-size: 11.5px;
  }

  /* Single column cards on very small screens */
  .sol-more-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .sol-more-card h4 {
    font-size: 11px;
    padding: 7px 4px;
  }

  .sol-more-title {
    font-size: 17px;
  }
}