/* ============================================================
   GURUS INFOTECH — MAIN STYLESHEET
   Theme Version: 1.0.0
   gurusinfotech.net
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: #1a1a2e; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --navy:        #0b1437;
  --navy2:       #132050;
  --blue:        #1a56db;
  --gold:        #b8860b;
  --gold2:       #d4a017;
  --white:       #ffffff;
  --off:         #f7f8fc;
  --off2:        #eef1f9;
  --text:        #1a1a2e;
  --muted:       #5c677d;
  --border:      #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);
  --radius:      12px;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 96px;
  background: rgba(11, 20, 55, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: height 0.3s;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-icon { height: 78px; width: auto; display: block; filter: brightness(1.05); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.03em; transition: color 0.2s;
}
.nav-links a:hover { color: #d4a017; }
.nav-btn {
  background: linear-gradient(135deg, #d4a017, #b8860b);
  color: #0b1437 !important;
  padding: 9px 22px; border-radius: 7px;
  font-weight: 600 !important; font-size: 13.5px;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4) !important;
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: #0b1437;
  padding: 110px 60px 60px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; filter: saturate(0.5); }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(11,20,55,0.95) 40%, rgba(11,20,55,0.6) 70%, rgba(26,86,219,0.08) 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 100px; padding: 5px 14px;
  font-size: 11.5px; font-weight: 600; color: #d4a017;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: #d4a017; animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 80px); font-weight: 900;
  line-height: 1.05; letter-spacing: -0.02em; color: #fff; margin-bottom: 22px;
}
h1 .accent {
  background: linear-gradient(135deg, #d4a017, #f0c040);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 520px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #d4a017, #b8860b);
  color: #0b1437; padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: 14.5px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(212,160,23,0.4); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.28); color: #fff;
  padding: 14px 32px; border-radius: 8px; font-weight: 500; font-size: 14.5px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: #d4a017; background: rgba(212,160,23,0.08); }
.hero-stats {
  display: flex; gap: 36px; margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-n { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; color: #d4a017; line-height: 1; }
.stat-l { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 5px; letter-spacing: 0.04em; text-transform: uppercase; }

/* Hero visual panel */
.hero-visual { position: relative; }
.hero-img-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.5); aspect-ratio: 4/3; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; bottom: -20px; left: -28px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px; padding: 16px 20px; min-width: 200px;
}
.hero-float2 {
  position: absolute; top: 20px; right: -24px;
  background: linear-gradient(135deg, #d4a017, #b8860b);
  border-radius: 14px; padding: 16px 20px; min-width: 170px;
}
.float-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 6px; }
.float-val { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; line-height: 1; }
.float-sub { font-size: 11px; margin-top: 3px; opacity: 0.7; }
.hero-float .float-label { color: rgba(255,255,255,0.5); }
.hero-float .float-val   { color: #fff; }
.hero-float .float-sub   { color: rgba(255,255,255,0.5); }
.hero-float2 .float-label { color: rgba(11,20,55,0.7); }
.hero-float2 .float-val   { color: #0b1437; }
.hero-float2 .float-sub   { color: rgba(11,20,55,0.7); }

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(212,160,23,0.2);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  background: rgba(212,160,23,0.06);
  padding: 13px 0;
}
.marquee-track { display: flex; width: max-content; animation: mq 28s linear infinite; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-item {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); white-space: nowrap;
  display: flex; align-items: center; gap: 12px; padding: 0 28px;
}
.mq-item::after { content: '◆'; color: #d4a017; font-size: 7px; }

/* ── CLIENTS STRIP ────────────────────────────────────────── */
#clients {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}
.clients-header {
  text-align: center;
  padding: 28px 60px 0;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #94a3b8;
}
.clients-header span { display: inline-block; position: relative; padding: 0 20px; }
.clients-header span::before,
.clients-header span::after {
  content: ''; position: absolute; top: 50%; width: 60px; height: 1px; background: #e2e8f0;
}
.clients-header span::before { right: 100%; }
.clients-header span::after  { left: 100%; }
.clients-scroll-outer {
  overflow: hidden;
  padding: 24px 0 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.clients-track {
  display: flex; align-items: center;
  width: max-content;
  animation: clientScroll 22s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes clientScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.client-logo {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 12px 64px;
  border-right: 1px solid #e2e8f0;
  cursor: default; transition: opacity 0.25s; min-width: 220px;
}
.client-logo:last-child { border-right: none; }
.client-logo:hover { opacity: 0.5; }
.cl-abbr {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 900; letter-spacing: 0.1em;
  color: #0b1437; line-height: 1; display: block;
}
.cl-dot { color: #1a56db; }
.cl-leidos { color: #1a56db; letter-spacing: 0.18em; font-size: 23px; }
.cl-name {
  font-size: 9.5px; font-weight: 600; color: #b0b8c8;
  letter-spacing: 0.07em; margin-top: 6px;
  text-transform: uppercase; white-space: nowrap; display: block;
}

/* ── SECTION COMMON ───────────────────────────────────────── */
section { padding: 96px 60px; }
.container { max-width: 1200px; margin: 0 auto; }
.s-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.s-label::before { display: none; }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.02em;
}

/* ── LIGHT SECTIONS (white background) ───────────────────── */
.light { background: #fff; color: #1a1a2e; }
.light .s-label { color: #1a56db; }
.light h2 { color: #0b1437; }
.light h2 em { font-style: normal; color: #1a56db; }
.light p { color: #5c677d; }

/* ── OFF-WHITE SECTIONS ───────────────────────────────────── */
.offwhite { background: #f7f8fc; color: #1a1a2e; }
.offwhite .s-label { color: #b8860b; }
.offwhite h2 { color: #0b1437; }
.offwhite h2 em { font-style: normal; color: #b8860b; }

/* ── DARK SECTIONS (navy background) ─────────────────────── */
.dark { background: #0b1437; color: #fff; }
.dark .s-label { color: #d4a017; }
.dark h2 { color: #fff; }
.dark h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #d4a017, #f0c040);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── ABOUT ────────────────────────────────────────────────── */
#about .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img { position: relative; }
.about-img-main { border-radius: 20px; overflow: hidden; aspect-ratio: 5/4; box-shadow: 0 24px 60px rgba(11,20,55,0.15); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: linear-gradient(135deg, #0b1437, #132050);
  color: #fff; padding: 20px 24px; border-radius: 16px;
  box-shadow: 0 12px 36px rgba(11,20,55,0.35); text-align: center;
}
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; color: #d4a017; line-height: 1; }
.about-badge .lbl { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill {
  background: #eef1f9; border-radius: 100px; padding: 8px 16px;
  font-size: 13px; font-weight: 500; color: #0b1437;
  display: flex; align-items: center; gap: 6px;
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: #1a56db; }
.about-cta { margin-top: 36px; }

/* ── SERVICES ─────────────────────────────────────────────── */
#services .hdr {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; gap: 20px; flex-wrap: wrap;
}
.btn-blue {
  display: inline-flex; align-items: center; gap: 7px;
  background: #1a56db; color: #fff; padding: 12px 26px; border-radius: 8px;
  font-weight: 600; font-size: 14px; transition: background 0.2s, transform 0.2s;
}
.btn-blue:hover { background: #1348c0; transform: translateY(-2px); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: #fff; border-radius: 16px; padding: 36px 30px;
  border: 1.5px solid #e2e8f0; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #1a56db, #3b82f6);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(11,20,55,0.12); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 56px; height: 56px; border-radius: 14px; margin-bottom: 22px; display: flex; align-items: center; justify-content: center; font-size: 26px; }
.svc-icon.blue   { background: #eff6ff; }
.svc-icon.gold   { background: #fef9eb; }
.svc-icon.green  { background: #f0fdf4; }
.svc-icon.purple { background: #faf5ff; }
.svc-icon.rose   { background: #fff1f2; }
.svc-icon.teal   { background: #f0fdfa; }
.svc-num { font-size: 11px; font-weight: 600; color: #94a3b8; letter-spacing: 0.1em; margin-bottom: 10px; }
.svc-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #0b1437; margin-bottom: 12px; line-height: 1.25; }
.svc-desc { font-size: 14px; color: #5c677d; line-height: 1.7; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.s-tag { font-size: 11.5px; padding: 4px 10px; background: #f1f5f9; border-radius: 5px; color: #475569; font-weight: 500; }

/* ── AI SECTION ───────────────────────────────────────────── */
#ai { position: relative; overflow: hidden; }
#ai::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(26,86,219,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(212,160,23,0.1) 0%, transparent 50%);
}
#ai .inner { position: relative; z-index: 1; }
#ai .hdr { text-align: center; margin-bottom: 64px; }
#ai .hdr p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 580px; margin: 18px auto 0; line-height: 1.7; }
.ai-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ai-card {
  border-radius: 18px; overflow: hidden; position: relative;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  display: grid; grid-template-columns: 1fr 1fr;
  transition: border-color 0.3s, transform 0.3s;
  min-height: 260px;
}
.ai-card:hover { border-color: rgba(26,86,219,0.5); transform: translateY(-4px); }
.ai-card-content { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.ai-card-img { overflow: hidden; }
.ai-card-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8) brightness(0.75); transition: transform 0.5s; }
.ai-card:hover .ai-card-img img { transform: scale(1.06); }
.ai-dot {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 18px;
  background: rgba(26,86,219,0.2); border: 1px solid rgba(26,86,219,0.35);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.ai-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.25; }
.ai-desc { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── INDUSTRIES ───────────────────────────────────────────── */
#industries .hdr2 { margin-bottom: 52px; }
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ind-card {
  border-radius: 18px; overflow: hidden; position: relative;
  height: 320px; cursor: pointer;
  transition: transform 0.4s; box-shadow: 0 8px 24px rgba(11,20,55,0.1);
}
.ind-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(11,20,55,0.18); }
.ind-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.75); }
.ind-card:hover img { transform: scale(1.07); }
.ind-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,20,55,0) 25%, rgba(11,20,55,0.88) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 20px;
}
.ind-icon { font-size: 26px; margin-bottom: 9px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.ind-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #fff; line-height: 1.2; }
.ind-sub {
  font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 5px; line-height: 1.4;
  opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s;
}
.ind-card:hover .ind-sub { opacity: 1; transform: translateY(0); }

/* ── PROCESS ──────────────────────────────────────────────── */
#process .hdr3 { text-align: center; margin-bottom: 72px; }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; gap: 0; }
.proc-line {
  position: absolute; top: 46px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, #1a56db, #3b82f6, #1a56db); opacity: 0.2;
}
.proc-step { text-align: center; padding: 0 20px; }
.proc-circle {
  width: 92px; height: 92px; border-radius: 50%;
  background: #fff; border: 2px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(11,20,55,0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative; z-index: 1;
  font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 900; color: #1a56db;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.proc-step:hover .proc-circle { background: #1a56db; border-color: #1a56db; color: #fff; box-shadow: 0 8px 28px rgba(26,86,219,0.3); }
.proc-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #0b1437; margin-bottom: 10px; }
.proc-desc { font-size: 13.5px; color: #5c677d; line-height: 1.65; }

/* ── WHY US ───────────────────────────────────────────────── */
#why .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-img { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(11,20,55,0.14); }
.why-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  transition: border-color 0.25s, background 0.25s;
}
.why-item:hover { border-color: #1a56db; background: #eff6ff; }
.why-item-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: #eff6ff; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.why-item-title { font-weight: 600; font-size: 15px; color: #0b1437; margin-bottom: 4px; }
.why-item-desc { font-size: 13px; color: #64748b; line-height: 1.55; }

/* ── IMPACT ───────────────────────────────────────────────── */
#impact .hdr4 { text-align: center; margin-bottom: 64px; }
.impact-big {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1.5px solid #e2e8f0; border-radius: 20px; overflow: hidden;
  margin-bottom: 40px; background: #fff;
}
.impact-stat {
  padding: 40px 28px; text-align: center; position: relative;
  border-right: 1px solid #e2e8f0; transition: background 0.25s;
}
.impact-stat:last-child { border-right: none; }
.impact-stat:hover { background: #eff6ff; }
.impact-stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #1a56db, #3b82f6);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.impact-stat:hover::before { transform: scaleX(1); }
.impact-num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900; color: #1a56db; line-height: 1; }
.impact-num sup { font-size: 24px; vertical-align: super; }
.impact-lbl { font-size: 13px; font-weight: 600; color: #0b1437; margin-top: 10px; letter-spacing: 0.02em; }
.impact-sub { font-size: 12px; color: #94a3b8; margin-top: 5px; line-height: 1.4; }
.impact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.impact-card {
  background: #fff; border-radius: 18px; padding: 32px 28px;
  border: 1.5px solid #e2e8f0;
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.impact-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,20,55,0.09); border-color: #1a56db; }
.impact-card-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.ic-blue   { background: #eff6ff; }
.ic-gold   { background: #fef9eb; }
.ic-green  { background: #f0fdf4; }
.ic-purple { background: #faf5ff; }
.ic-rose   { background: #fff1f2; }
.ic-teal   { background: #f0fdfa; }
.impact-card-title { font-weight: 700; font-size: 15px; color: #0b1437; margin-bottom: 7px; }
.impact-card-desc { font-size: 13.5px; color: #64748b; line-height: 1.65; }

/* ── CTA ──────────────────────────────────────────────────── */
#cta { text-align: center; position: relative; overflow: hidden; }
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(26,86,219,0.14) 0%, transparent 65%);
}
#cta .inner2 { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
#cta .s-label { justify-content: center; }
#cta .s-label::before { display: none; }
#cta h2 { color: #fff; margin-bottom: 20px; font-size: clamp(36px, 5vw, 60px); }
#cta h2 em { font-style: normal; color: #d4a017; }
#cta p { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 44px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-email { display: flex; gap: 12px; margin-top: 36px; max-width: 440px; margin-left: auto; margin-right: auto; }
.cta-input {
  flex: 1; background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15); border-radius: 8px;
  padding: 13px 18px; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 14.5px;
  outline: none; transition: border-color 0.2s;
}
.cta-input:focus { border-color: #d4a017; }
.cta-input::placeholder { color: rgba(255,255,255,0.3); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #060d20; color: #fff;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 60px 32px;
}
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto 48px; }
.ft-brand-logo { display: flex; align-items: center; margin-bottom: 18px; }
.ft-logo-img { height: 78px; width: auto; filter: brightness(1.1); }
.ft-desc { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 270px; margin-bottom: 22px; }
.ft-social { display: flex; gap: 10px; }
.ft-soc {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  transition: background 0.2s, border-color 0.2s;
}
.ft-soc:hover { background: rgba(212,160,23,0.15); border-color: rgba(212,160,23,0.4); }
.ft-col h4 { font-size: 11.5px; font-weight: 700; color: #d4a017; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.ft-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 10px; transition: color 0.2s; }
.ft-col a:hover { color: #fff; }
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1200px; margin: 0 auto;
  font-size: 12px; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 12px;
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.rev { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.rev.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  section { padding: 72px 28px; }
  #hero { padding: 100px 28px 60px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  #about .grid, #why .grid2 { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-line { display: none; }
  .impact-cards { grid-template-columns: 1fr; }
  .impact-big { grid-template-columns: repeat(2, 1fr); }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .svc-grid, .ai-grid, .ind-grid, .proc-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .impact-big { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   CAREERS LISTING PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Careers Hero ──────────────────────────────────────── */
.careers-hero {
  min-height: 52vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: #0b1437;
  padding: 130px 60px 72px;
}
.careers-hero-bg { position: absolute; inset: 0; z-index: 0; }
.careers-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; filter: saturate(0.5); }
.careers-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(11,20,55,0.96) 50%, rgba(26,86,219,0.08) 100%);
}
.careers-hero-inner { position: relative; z-index: 1; }
.careers-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 72px); font-weight: 900;
  line-height: 1.05; letter-spacing: -0.02em; color: #fff; margin: 18px 0 20px;
}
.careers-hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 580px; }

/* ── Why Work Here ─────────────────────────────────────── */
.careers-why { padding: 64px 60px; }
.careers-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.cwhy-item {
  background: #fff; border-radius: 16px; padding: 32px 24px;
  border: 1.5px solid #e2e8f0; text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.cwhy-item:hover { transform: translateY(-4px); border-color: #1a56db; }
.cwhy-icon { font-size: 36px; margin-bottom: 14px; }
.cwhy-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: #0b1437; margin-bottom: 8px; }
.cwhy-desc { font-size: 13.5px; color: #5c677d; line-height: 1.6; }

/* ── Job Listings ──────────────────────────────────────── */
.careers-listings { padding: 80px 60px; }
.careers-listings-hdr { margin-bottom: 48px; }

.jobs-filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1.5px solid #e2e8f0;
}
.jobs-count { font-size: 13px; font-weight: 600; color: #64748b; letter-spacing: 0.04em; }

.jobs-grid { display: flex; flex-direction: column; gap: 16px; }

.job-card {
  display: flex; flex-direction: column; gap: 16px;
  background: #fff; border-radius: 14px; padding: 28px 32px;
  border: 1.5px solid #e2e8f0;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none; color: inherit;
}
.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(11,20,55,0.1);
  border-color: #1a56db;
}
.job-dept {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #1a56db;
  background: #eff6ff; padding: 4px 10px; border-radius: 5px;
  display: inline-block; margin-bottom: 10px;
}
.job-title-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.job-title {
  font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700;
  color: #0b1437; line-height: 1.2;
}
.job-arrow { font-size: 20px; color: #1a56db; flex-shrink: 0; transition: transform 0.2s; }
.job-card:hover .job-arrow { transform: translateX(6px); }
.job-company { font-size: 13px; color: #64748b; margin-top: 4px; }
.job-card-meta { display: flex; flex-wrap: wrap; gap: 10px; }
.job-meta-tag {
  font-size: 12.5px; color: #5c677d; font-weight: 500;
  background: #f8fafc; padding: 5px 12px; border-radius: 100px;
  border: 1px solid #e2e8f0;
}
.job-remote { color: #16a34a; background: #f0fdf4; border-color: #bbf7d0; }
.job-date { color: #94a3b8; }

.jobs-empty { text-align: center; padding: 80px 40px; }
.jobs-empty-icon { font-size: 52px; margin-bottom: 20px; }
.jobs-empty h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: #0b1437; margin-bottom: 12px; }
.jobs-empty p { font-size: 15px; color: #5c677d; }
.jobs-empty a { color: #1a56db; font-weight: 600; }

/* ── Hamburger / Mobile nav ────────────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   SINGLE JOB LISTING PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Single Job Hero ───────────────────────────────────── */
.sjob-hero {
  padding: 130px 60px 64px;
  background: #0b1437; position: relative;
  background-image: radial-gradient(ellipse at 80% 50%, rgba(26,86,219,0.12) 0%, transparent 60%);
}
.sjob-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5);
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.sjob-back:hover { color: #d4a017; }
.sjob-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 60px); font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em;
  margin: 18px 0 24px;
}
.sjob-meta-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.sjob-meta {
  font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px; border-radius: 100px;
}
.sjob-remote { color: #86efac; background: rgba(22,163,74,0.12); border-color: rgba(22,163,74,0.25); }
.sjob-apply-top {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; padding: 14px 34px;
}

/* ── Single Job Body ───────────────────────────────────── */
.sjob-body { padding: 72px 60px 96px; }
.sjob-layout { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: flex-start; }

/* Prose content */
.sjob-prose { font-size: 15.5px; color: #374151; line-height: 1.8; }
.sjob-prose h2, .sjob-prose h3 {
  font-family: 'Playfair Display', serif; color: #0b1437;
  margin: 36px 0 14px; line-height: 1.2;
}
.sjob-prose h2 { font-size: 26px; }
.sjob-prose h3 { font-size: 20px; }
.sjob-prose p  { margin-bottom: 18px; }
.sjob-prose ul, .sjob-prose ol { padding-left: 22px; margin-bottom: 18px; }
.sjob-prose li { margin-bottom: 8px; }
.sjob-prose strong { color: #0b1437; font-weight: 600; }

/* Sidebar */
.sjob-sidebar { position: sticky; top: 112px; display: flex; flex-direction: column; gap: 20px; }
.sjob-sidebar-card {
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 18px; padding: 32px 28px;
}
.sjob-sidebar-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #0b1437; margin-bottom: 20px; }
.sjob-sidebar-list { list-style: none; padding: 0; border-top: 1px solid #f1f5f9; }
.sjob-sidebar-list li {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid #f1f5f9; font-size: 13.5px;
}
.sjob-sidebar-list li span { color: #94a3b8; font-weight: 500; flex-shrink: 0; }
.sjob-sidebar-list li strong { color: #0b1437; font-weight: 600; text-align: right; }
.sjob-apply-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 24px;
  font-size: 15px; padding: 15px 20px; border-radius: 8px;
  text-align: center;
}
.sjob-sidebar-note {
  font-size: 11.5px; color: #94a3b8; line-height: 1.55;
  margin-top: 16px; text-align: center;
}

/* Share */
.sjob-share {
  background: #f7f8fc; border: 1.5px solid #e2e8f0; border-radius: 14px; padding: 22px 24px;
}
.sjob-share-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #94a3b8; margin-bottom: 12px; }
.sjob-share-btns { display: flex; gap: 10px; }
.sjob-share-btn {
  flex: 1; text-align: center; padding: 9px 12px; border-radius: 8px;
  font-size: 12.5px; font-weight: 600; transition: transform 0.2s, box-shadow 0.2s;
}
.sjob-share-li { background: #0a66c2; color: #fff; }
.sjob-share-tw { background: #0f1419; color: #fff; }
.sjob-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

/* Sticky mobile apply bar */
.sjob-sticky-apply {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: #fff; border-top: 1px solid #e2e8f0;
  padding: 14px 20px; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 -4px 24px rgba(11,20,55,0.1);
}
.sjob-sticky-title { font-size: 13.5px; font-weight: 600; color: #0b1437; }

/* ── Careers responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .careers-why-grid { grid-template-columns: repeat(2, 1fr); }
  .sjob-layout { grid-template-columns: 1fr; }
  .sjob-sidebar { position: static; }
  .sjob-apply-top { display: none; }
  .sjob-sticky-apply { display: flex; }
}
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block; width: 100%; padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 15px;
  }
  nav { flex-wrap: wrap; height: auto !important; padding: 16px 24px; }
  .careers-hero, .sjob-hero { padding: 110px 24px 48px; }
  .careers-why, .careers-listings, .sjob-body { padding: 48px 24px; }
  .careers-why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sjob-share-btns { flex-direction: column; }
}
