/* ═══════════════════════════════════════════════
   SHREE JD INFRASTRUCTURE — SAEL-STYLE THEME
   ═══════════════════════════════════════════════ */
:root {
  --primary: #c8560a;
  --primary-dark: #a94708;
  --primary-light: rgba(200,86,10,.1);
  --secondary: #0f5c51;
  --secondary-dark: #082e28;
  --dark: #1a1a2e;
  --dark-2: #262262;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-gray: #f2f0eb;
  --border: rgba(0,0,0,.08);
  --text: #333333;
  --text-muted: #666666;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.1);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.14);
  --shadow-medium: 0 4px 20px rgba(0,0,0,.1);
  --container: min(1200px, 92%);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

.container { width: var(--container); margin: 0 auto; }
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.col-12 { width: 100%; padding: 0 12px; }
.col-lg-3 { width: 25%; padding: 0 12px; }
.col-lg-4 { width: 33.333%; padding: 0 12px; }
.col-lg-5 { width: 41.666%; padding: 0 12px; }
.col-lg-6 { width: 50%; padding: 0 12px; }
.col-lg-7 { width: 58.333%; padding: 0 12px; }
.col-lg-8 { width: 66.666%; padding: 0 12px; }
.col-md-4 { width: 33.333%; padding: 0 12px; }
.col-md-6 { width: 50%; padding: 0 12px; }
.col-6 { width: 50%; padding: 0 12px; }
.col-5 { width: 41.666%; padding: 0 12px; }
.col-7 { width: 58.333%; padding: 0 12px; }
.col-sm-6 { width: 50%; padding: 0 12px; }
.align-items-center { align-items: center; }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }

/* ── TYPOGRAPHY ────────────────────────────────── */
.tinyText {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
  position: relative; padding-left: 28px;
}
.tinyText::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2.5px; background: var(--primary); border-radius: 2px;
}
h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: var(--dark); margin-bottom: 16px; }
h3 { font-family: 'Syne', sans-serif; font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 700; line-height: 1.2; color: var(--dark); margin-bottom: 12px; }
h4 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
p { color: var(--text-muted); line-height: 1.78; margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

/* ── NAV ───────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}
.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-medium);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img.normalLogo1 { width: 58px; height: 58px; object-fit: contain; display:block; flex-shrink:0; border-radius: 0; background: transparent; padding: 0; }
.brand-text h1 { font-family: 'Syne', sans-serif; font-size: .92rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.brand-text span { font-size: .62rem; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--secondary); opacity: .85; }

/* nav links */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  font-family: 'Syne', sans-serif; font-size: .88rem; font-weight: 600;
  color: var(--dark); padding: 8px 14px; border-radius: 8px;
  transition: all .18s; white-space: nowrap;
}
.header.hero-mode .nav-menu a { color: rgba(255,255,255,.92); }
.header.hero-mode .brand-text h1 { color: #ffb87a; }
.header.hero-mode .brand-text span { color: rgba(255,255,255,.75); }
.nav-menu a:hover { color: var(--primary); background: var(--primary-light); }
.nav-menu a.active { color: var(--primary); }
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(200,86,10,.28);
  padding: 9px 18px !important; border-radius: 8px;
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.burger-line { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }
.header.hero-mode .burger-line { background: #fff; }

/* ── BUTTON (SAEL arrow style) ─────────────────── */
.button {
  position: relative; display: inline-flex; align-items: center;
  cursor: pointer; outline: none; border: none;
  vertical-align: middle; text-decoration: none;
  background: transparent; padding: 0;
  font-size: inherit; font-family: inherit;
}
.button {
  width: 12rem; height: auto;
}
.button .button__icon-wrapper {
  flex-shrink: 0; width: 42px; height: 42px;
  position: relative; color: white;
  background: var(--clr, #c8560a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; z-index: 1;
  transition: all .3s;
  margin-right: 14px;
}
.button:hover .button__icon-wrapper { width: 100%; border-radius: 12px; }
.button .button__icon-svg { position: absolute; z-index: 1; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: .3s; }
.button .button__icon-svg--copy { top: 140%; right: -100%; left: auto; transform: translate(50%, -50%); }
.button:hover .button__icon-svg:first-child { top: -40%; right: -40%; left: auto; transform: translate(50%, -50%); }
.button:hover .button__icon-svg--copy { top: 50%; right: auto; left: 50%; transform: translate(-50%, -50%); }
.button span:not(.button__icon-wrapper) {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: .9rem;
  color: var(--dark); transition: all .3s;
}
.button:hover span:not(.button__icon-wrapper) { color: var(--primary); }
.button-white .button__icon-wrapper { background: rgba(255,255,255,.2); }
.button-white span:not(.button__icon-wrapper) { color: #fff; }
.button-white:hover span:not(.button__icon-wrapper) { color: #fff; }

/* ── HERO SLIDER ───────────────────────────────── */
.hero-slider-wrap {
  position: relative; width: 100%; height: 100vh;
  overflow: hidden; margin-top: -72px;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1); transition: transform 8s ease-in-out;
}
.hero-slide.active img { transform: scale(1.12); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,46,40,.78) 0%, rgba(10,30,22,.4) 60%, rgba(0,0,0,.2) 100%);
  z-index: 2;
}
.hero-slide-content {
  position: absolute; top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  z-index: 3; color: #fff;
  opacity: 0; animation: heroFadeIn 1.4s ease forwards .6s;
}
@keyframes heroFadeIn { to { opacity: 1; } }
.hero-slide-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 400; line-height: 1.15;
  color: #fff; margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-slide-content h2 span { font-weight: 800; color: #ffb052; }
.hero-slide-content p { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.45); cursor: pointer; transition: .35s;
  border: 2px solid transparent;
}
.hero-dot.active { background: #fff; transform: scale(1.3); border-color: rgba(255,255,255,.5); }
.hero-scroll-hint {
  position: absolute; bottom: 36px; right: 48px; z-index: 10;
  color: rgba(255,255,255,.6); font-size: .72rem;
  font-family: 'DM Mono', monospace; letter-spacing: 1.5px;
  text-transform: uppercase; writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 8px;
}
.hero-scroll-hint::after { content: ''; width: 1px; height: 40px; background: rgba(255,255,255,.4); }

/* ── SECTION BASE ──────────────────────────────── */
section { padding: 96px 0; }
.bgOne { background: var(--white); }
.bgTwo { background: var(--off-white); }
.bgThree { background: var(--light-gray); padding: 96px 0; }
.bgDark { background: var(--secondary-dark); color: #fff; }
.bgDark .tinyText { color: #ffb052; }
.bgDark .tinyText::before { background: #ffb052; }
.bgDark h2, .bgDark h3 { color: #fff; }
.bgDark p { color: rgba(255,255,255,.75); }

/* ── IMAGE COLLAGE ─────────────────────────────── */
.mainBanner { position: relative; width: 100%; aspect-ratio: 1/.95; }
.imageOne { position: relative; }
.imageOne .shineImg { width: 68%; }
.imageOne .shineImg img { border-radius: 20px 80px; border: 6px solid #fff; box-shadow: var(--shadow-lg); }
.imageTwo { position: absolute; bottom: -20px; right: 0; width: 62%; }
.imageTwo .shineImg img { border-radius: 20px 100px; border: 6px solid #fff; box-shadow: var(--shadow-lg); }
.patternDots { position: absolute; bottom: -30px; left: 20px; width: 120px; opacity: .6; z-index: -1; }

/* Business collage (right side) */
.businessCollage { width: 100%; aspect-ratio: 1/1; position: relative; }
.businessCollage img.bOne {
  width: 57%; position: absolute; left: 0; top: 0; z-index: 1;
  border-radius: 20px 80px; border: 6px solid #fff; box-shadow: var(--shadow-lg);
}
.businessCollage img.bTwo {
  width: 80%; position: absolute; right: 0; bottom: 0;
  border-radius: 20px 110px; border: 6px solid #fff; box-shadow: var(--shadow-lg);
}

/* ── ABOUT SECTION ─────────────────────────────── */
.homeAboutTxt { max-width: 560px; }
.homeAboutTxt.wide { max-width: 100%; }
.businessNumbers h4 { font-family: 'Syne', sans-serif; font-size: .88rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.businessValue {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border-radius: 14px;
  padding: 16px 18px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.businessValue:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.businessValue img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.businessValue h5 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.businessValue p { font-size: .78rem; color: var(--text-muted); font-weight: 600; margin: 0; }

/* ── SERVICE LIST ──────────────────────────────── */
.singleService {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: 12px; padding: 14px 18px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: all .2s; cursor: pointer;
}
.singleService:hover { border-color: var(--primary); transform: translateX(4px); box-shadow: var(--shadow-md); }
.singleService img { width: 44px; height: 44px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.singleService .svc-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.singleService h3 { font-size: .96rem; font-weight: 700; color: var(--dark); margin: 0; }
.singleService a { color: var(--dark); }
.singleService:hover h3, .singleService:hover a { color: var(--primary); }

/* ── STATS / FOOTPRINTS ────────────────────────── */
.statsData {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.statsData:last-child { border-bottom: none; }
.statsData h4 { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.statsData p { font-size: .82rem; color: rgba(255,255,255,.7); margin: 0; }
.earthImage { animation: slowSpin 30s linear infinite; }
@keyframes slowSpin { to { transform: rotate(360deg); } }

/* Counters + number stats */
.statsHeading { margin-bottom: 12px; }
.statsHeading span { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.statsHeading h3 { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; }

/* ── MISSION/VISION/ETHOS ──────────────────────── */
.missioCard {
  background: var(--secondary-dark); color: #fff;
  border-radius: 20px; padding: 32px; height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.missioCard.centerCard { background: var(--primary); }
.missioCard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.featureIcon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.missioCard h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.missioCard p { color: rgba(255,255,255,.78); font-size: .88rem; line-height: 1.72; margin: 0; }

/* ── CLIENT LOGO SLIDER ────────────────────────── */
.clientsStrip { background: var(--white); padding: 56px 0; overflow: hidden; }
.clients-track-wrap { overflow: hidden; position: relative; margin-top: 28px; }
.clients-track-wrap::before, .clients-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.clients-track-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.clients-track-wrap::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.clients-track { display: flex; width: max-content; animation: slideClients 32s linear infinite; gap: 0; }
.clients-track:hover { animation-play-state: paused; }
.client-logo-item {
  min-width: 180px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border); padding: 12px 24px; flex-shrink: 0;
}
.client-logo-item img { max-width: 130px; max-height: 36px; object-fit: contain; filter: grayscale(100%); opacity: .65; transition: .25s; }
.client-logo-item:hover img { filter: none; opacity: 1; transform: scale(1.05); }
@keyframes slideClients { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── PROJECTS ──────────────────────────────────── */
.projectsGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.projectCard {
  background: var(--white); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform .22s, box-shadow .22s;
}
.projectCard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.projectCard-header {
  background: linear-gradient(145deg, var(--secondary-dark), var(--secondary));
  padding: 22px 20px; min-height: 110px; display: flex; flex-direction: column; justify-content: flex-end;
}
.project-tag-pill {
  display: inline-block; font-family: 'DM Mono', monospace;
  font-size: .65rem; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
  margin-bottom: 10px;
}
.projectCard-header h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; }
.projectCard-body { padding: 18px 20px; }
.projectCard-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.meta-pill { background: var(--off-white); border-radius: 10px; padding: 8px 12px; }
.meta-pill strong { display: block; font-size: .62rem; color: var(--primary); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 2px; }
.meta-pill span { font-size: .82rem; font-weight: 600; color: var(--dark); }
.projectCard ul { list-style: none; display: grid; gap: 5px; }
.projectCard li { font-size: .82rem; color: var(--text-muted); display: flex; gap: 7px; }
.projectCard li::before { content: '›'; color: var(--primary); font-weight: 900; flex-shrink: 0; }

/* ── CAREERS ───────────────────────────────────── */
.jobsGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.jobCard {
  background: var(--white); border-radius: 16px; padding: 26px;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.jobCard:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.jobCard h4 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.jobMeta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.jobMeta span { font-size: .7rem; font-family: 'DM Mono', monospace; color: var(--text-muted); background: var(--light-gray); padding: 4px 10px; border-radius: 999px; border: 1px solid var(--border); }
.jobCard ul { list-style: none; display: grid; gap: 6px; }
.jobCard li { font-size: .83rem; color: var(--text-muted); display: flex; gap: 8px; }
.jobCard li::before { content: '→'; color: var(--primary); flex-shrink: 0; }
.workWithUs {
  background: linear-gradient(145deg, var(--secondary), var(--secondary-dark));
  color: #fff; border-radius: 20px; padding: 36px;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 16px;
}
.workWithUs h3 { color: #fff; font-size: 1.4rem; }
.workWithUs p { color: rgba(255,255,255,.78); margin: 0; }
.career-email {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; border-radius: 10px; padding: 12px 18px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: .88rem;
  transition: background .2s;
}
.career-email:hover { background: rgba(255,255,255,.22); }

/* ── CONTACT / QUOTE ───────────────────────────── */
.contactGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contactInfo {
  background: var(--white); border-radius: 20px;
  box-shadow: var(--shadow-md); padding: 32px;
  border: 1px solid var(--border); display: grid; gap: 20px;
}
.contactRow { display: flex; gap: 16px; align-items: flex-start; }
.contactIcon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contactRow h4 { font-size: .68rem; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); margin-bottom: 4px; font-family: 'DM Mono', monospace; }
.contactRow p { font-size: .92rem; font-weight: 600; color: var(--dark); margin: 0; }
.socialLinks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.socialLinks a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 9px; background: var(--white);
  color: var(--secondary); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: .8rem; transition: .18s;
}
.socialLinks a:hover { color: var(--primary); border-color: rgba(200,86,10,.3); transform: translateY(-2px); }
.contactCta {
  background: linear-gradient(145deg, var(--secondary), var(--secondary-dark));
  color: #fff; border-radius: 20px; padding: 32px;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; justify-content: space-between; gap: 20px;
}
.contactCta h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.contactCta p { color: rgba(255,255,255,.78); }
.ctaStack { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* quote form */
.quoteForm { background: var(--white); border-radius: 20px; box-shadow: var(--shadow-md); padding: 36px; border: 1px solid var(--border); }
.quoteForm h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; color: var(--secondary-dark); }
.quoteForm > p { color: var(--text-muted); margin-bottom: 24px; font-size: .92rem; }
.packageHelper { font-size: .78rem; color: var(--text-muted); margin-bottom: 14px; font-family: 'DM Mono', monospace; }
.packageCards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 24px; }
.packageOption { position: relative; }
.packageOption input { position: absolute; opacity: 0; pointer-events: none; }
.packageOption label {
  display: block; padding: 14px 10px; border-radius: 14px; background: var(--white);
  border: 1.5px solid var(--border); cursor: pointer; transition: all .18s;
}
.packageOption label:hover { border-color: rgba(200,86,10,.3); transform: translateY(-2px); }
.packageOption input:checked + label { border-color: var(--primary); background: linear-gradient(180deg, #fff, #fff7f1); box-shadow: 0 6px 20px rgba(200,86,10,.12); }
.pkgIcon { font-size: 1.3rem; margin-bottom: 8px; }
.pkgTitle { display: block; font-family: 'Syne', sans-serif; font-size: .85rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.pkgText { display: block; font-size: .72rem; line-height: 1.4; color: var(--text-muted); }
.formGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.formGroup { display: flex; flex-direction: column; gap: 6px; }
.formGroup.full { grid-column: 1 / -1; }
.formGroup label { font-family: 'Syne', sans-serif; font-size: .8rem; font-weight: 700; color: var(--dark); }
.formGroup input, .formGroup textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: .9rem; font-family: 'DM Sans', sans-serif; color: var(--dark); background: var(--white);
  outline: none; transition: border-color .18s, box-shadow .18s;
}
.formGroup input:focus, .formGroup textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(200,86,10,.08); }
.formGroup textarea { min-height: 120px; resize: vertical; }
.formNote { font-size: .78rem; color: var(--text-muted); margin-top: 10px; }

/* ── EQUIPMENT ─────────────────────────────────── */
.equipInner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.equipCard, .profileCard { background: var(--white); border-radius: 20px; box-shadow: var(--shadow-md); padding: 32px; border: 1px solid var(--border); }
.equipGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.equipItem { background: var(--off-white); border-radius: 12px; padding: 12px 14px; border: 1px solid var(--border); }
.equipItem strong { display: block; color: var(--primary); font-family: 'Syne', sans-serif; font-size: .86rem; font-weight: 700; margin-bottom: 2px; }
.equipItem span { font-size: .78rem; color: var(--text-muted); }
.profileCard { background: linear-gradient(145deg, var(--secondary), var(--secondary-dark)); color: #fff; border: none; }
.profileCard h3 { color: #fff; font-size: 1.2rem; }
.profileCard p { color: rgba(255,255,255,.78); line-height: 1.7; }
.profilePoints { list-style: none; display: grid; gap: 8px; margin-bottom: 24px; }
.profilePoints li { display: flex; gap: 10px; font-size: .87rem; color: rgba(255,255,255,.88); }
.profilePoints li::before { content: '↗'; color: #ffb052; font-weight: 900; }

/* ── BUTTONS (standard) ────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: .88rem;
  transition: all .18s; cursor: pointer; border: none;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(200,86,10,.28); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-white { background: #fff; color: var(--secondary-dark); font-weight: 800; }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── PAGE HERO ─────────────────────────────────── */
.pageHero {
  background: linear-gradient(145deg, var(--secondary-dark), var(--secondary));
  padding: 110px 0 70px; color: #fff; position: relative; overflow: hidden;
  margin-top: 72px;
}
.pageHero::before {
  content: ''; position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.pageHero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: .7rem;
  color: rgba(255,176,82,.9); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 14px;
}
.pageHero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -.02em; color: #fff; margin-bottom: 14px;
}
.pageHero h1 .accent { color: #ffb052; }
.pageHero p { color: rgba(255,255,255,.75); max-width: 580px; }

/* ── TOPBAR ────────────────────────────────────── */
.topbar {
  background: var(--secondary-dark); color: rgba(255,255,255,.72);
  font-size: .75rem; font-family: 'DM Mono', monospace; letter-spacing: .4px;
  display: none; /* hidden on home, shown on inner pages */
}
.topbar .container { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; flex-wrap: wrap; }

/* ── MARQUEE ───────────────────────────────────── */
.marqueeStrip { background: var(--primary); color: #fff; padding: 12px 0; overflow: hidden; }
.marqueeTrack { display: flex; width: max-content; animation: marqueeScroll 28s linear infinite; }
.marqueeTrack span { font-family: 'DM Mono', monospace; font-size: .75rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; padding: 0 28px; white-space: nowrap; opacity: .9; }
.marqueeTrack span::before { content: '◆'; margin-right: 28px; font-size: .45rem; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── FOOTER ────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 60px 0 0; }
.footerTop { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 40px; }
.footerLogo img { height: 58px; width: auto; object-fit: contain; display:block; filter:none; opacity:1; background:transparent; padding:0; }
.footerSocials { display: flex; gap: 12px; }
.footerSocials a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 1.1rem; transition: .2s;
}
.footerSocials a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footerLinks h5 { font-family: 'Syne', sans-serif; font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px; }
.footerLinks ul { display: grid; gap: 10px; }
.footerLinks a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .18s; }
.footerLinks a:hover { color: var(--primary); }
.footerCredit {
  background: rgba(0,0,0,.25); margin-top: 40px;
  padding: 16px 0;
}
.footerCredit .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footerCredit p { font-size: .78rem; color: rgba(255,255,255,.45); margin: 0; }
.creditLinks { display: flex; gap: 20px; }
.creditLinks a { font-size: .78rem; color: rgba(255,255,255,.45); transition: color .18s; }
.creditLinks a:hover { color: var(--primary); }

/* ── WHATSAPP ──────────────────────────────────── */
.whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 300;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff; font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s;
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 14px 32px rgba(37,211,102,.5); }

/* ── AOS overrides ─────────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1100px) {
  .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8 { width: 100%; }
  .mainBanner { aspect-ratio: unset; height: 420px; margin-bottom: 24px; }
  .homeAboutTxt { max-width: 100%; }
  .projectsGrid { grid-template-columns: 1fr 1fr; }
  .jobsGrid { grid-template-columns: 1fr; }
  .contactGrid, .equipInner { grid-template-columns: 1fr; }
  .packageCards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 4px; overflow-y: auto; box-shadow: var(--shadow-lg); }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 1rem; padding: 12px 16px; border-radius: 10px; width: 100%; }
  .burger { display: flex; }
  section { padding: 68px 0; }
  .pageHero { padding: 90px 0 54px; }
  .col-md-4, .col-md-6 { width: 100%; }
  .col-sm-6 { width: 100%; }
  .projectsGrid { grid-template-columns: 1fr; }
  .formGrid, .packageCards { grid-template-columns: 1fr; }
  .hero-slide-content h2 { font-size: 2.2rem; }
  .businessCollage { height: 320px; }
  .missioCard { margin-bottom: 16px; }
  .footerTop { flex-direction: column; }
  .equipGrid { grid-template-columns: 1fr; }
}


/* Professional logo setup */
.brand{display:inline-flex;align-items:center;gap:14px;text-decoration:none;}
.footerLogo{display:inline-flex;align-items:center;}


/* ── HOMEPAGE SCALE UPDATES ───────────────────── */
.scaleBand{background:linear-gradient(135deg,var(--secondary-dark) 0%, #103f37 100%);padding:22px 0;}
.scaleBand-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(255,255,255,.12);border-radius:18px;overflow:hidden;}
.scaleMetric{background:rgba(255,255,255,.04);padding:26px 24px;display:flex;flex-direction:column;gap:8px;min-height:120px;justify-content:center;}
.scaleMetric strong{font-family:'Syne',sans-serif;font-size:clamp(1.5rem,2vw,2.2rem);line-height:1;color:#ffb052;}
.scaleMetric span{font-size:.92rem;color:rgba(255,255,255,.82);line-height:1.45;}
.corridorSection .statsHeading p{max-width:720px;margin:12px auto 0;}
.corridorGrid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:34px;}
.corridorPill{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:999px;padding:14px 18px;text-align:center;font-weight:700;color:var(--secondary);box-shadow:var(--shadow-sm);}
.serviceFeaturePanel{background:linear-gradient(135deg,#fff 0%, #f7f5ef 100%);border:1px solid rgba(0,0,0,.07);padding:34px;border-radius:24px;box-shadow:var(--shadow-md);}
.featureChecklist{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px;}
.featureChecklist span{background:var(--primary-light);color:var(--primary-dark);padding:10px 14px;border-radius:999px;font-weight:700;font-size:.9rem;}
@media (max-width: 991px){
  .scaleBand-grid,.corridorGrid{grid-template-columns:repeat(2,1fr);} 
}
@media (max-width: 767px){
  .scaleBand-grid,.corridorGrid{grid-template-columns:1fr;}
  .scaleMetric{min-height:auto;}
}
