/* ============================================================
   PIXEL MEDIA — style.css (Space/AI Premium Redesign)
   ============================================================ */

/* ---------- Design System Variables ---------- */
:root {
  --bg:              #020208; /* Ultra-deep cosmic dark */
  --bg-navy:         #050614; /* Deep space navy */
  --bg-slate:        #0d0e24; /* Faint cosmic slate */
  --neon-blue:       #00d9ff; /* Cyber neon blue */
  --electric-purple: #a855f7; /* Neural purple */
  --cyber-orange:    #ff7b00; /* Kinetic orange */
  --gold:            #f0a92b; /* Premium brand gold */
  --gold-soft:       #ffc451; /* Light brand gold */
  
  --white:           #ffffff;
  --grey:            #94a3b8; /* Slate 400 for high-contrast reading */
  --grey-light:      #cbd5e1; /* Slate 300 */
  --grey-dark:       #475569; /* Slate 600 */
  
  --border-cyan:     rgba(0, 217, 255, 0.12);
  --border-purple:   rgba(168, 85, 247, 0.15);
  --border-glass:    rgba(255, 255, 255, 0.05);
  
  --glass:           rgba(5, 6, 20, 0.65);
  --glass-hover:     rgba(13, 14, 36, 0.8);
  
  --radius:          16px;
  --radius-lg:       24px;
  --maxw:            1200px;
  
  --font-sora:       'Sora', sans-serif;
  --font-inter:      'Inter', sans-serif;
}

/* ---------- Global Resets ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-inter);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Reusable Background System ---------- */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -2;
  background-color: var(--bg);
  /* Cosmic space dust / Nebula layers */
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 217, 255, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(168, 85, 247, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 45% 75%, rgba(255, 123, 0, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(240, 169, 43, 0.02) 0%, transparent 35%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  /* Cyber grid pattern + Subtle starfield */
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 217, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 217, 255, 0.025) 1px, transparent 1px);
  background-size: 90px 90px, 30px 30px, 30px 30px;
  background-position: 0 0, 15px 15px, 15px 15px;
  pointer-events: none;
  opacity: 0.8;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-sora);
  font-weight: 800;
  line-height: 1.2;
}

/* ---------- Typography & Utility Styles ---------- */
.gold {
  color: var(--gold);
}
.neon-blue {
  color: var(--neon-blue);
}
.electric-purple {
  color: var(--electric-purple);
}
.cyber-orange {
  color: var(--cyber-orange);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title.center {
  text-align: center;
}
.section-sub {
  color: var(--grey-light);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 700px;
  margin-bottom: 40px;
}
.section-sub.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead-line {
  color: var(--grey);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 16px;
  text-align: center;
}
.lead-line.strong {
  color: var(--white);
  font-family: var(--font-sora);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 24px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-sora);
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #110e05;
  box-shadow: 0 6px 20px rgba(240, 169, 43, 0.2);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(240, 169, 43, 0.4);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--neon-blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.15);
}
.btn-cyan {
  background: linear-gradient(135deg, #a855f7, #00d9ff);
  color: var(--bg);
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.15);
}
.btn-cyan:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.35);
}
.btn-full {
  width: 100%;
  text-align: center;
}

/* ---------- Premium Glassmorphism Cards ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--border-cyan);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px 0 rgba(0, 217, 255, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.glass:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 12px 40px 0 rgba(168, 85, 247, 0.08);
  background-color: var(--glass-hover);
}

.glass-panel-glow {
  background: rgba(8, 9, 26, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  box-shadow: 0 12px 40px 0 rgba(0, 217, 255, 0.05);
}

/* ---------- Sticky Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(2, 2, 8, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: padding 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(2, 2, 8, 0.85);
  border-bottom: 1px solid var(--border-cyan);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}
.nav-logo img {
  height: 38px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--grey-light);
  transition: color 0.2s, text-shadow 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--neon-blue);
  text-shadow: 0 0 8px rgba(0, 217, 255, 0.4);
}
.nav-cta {
  color: #110e05 !important;
  padding: 10px 22px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hamburger.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); background: var(--neon-blue); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); background: var(--neon-blue); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 98vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, rgba(13, 14, 36, 0.4) 0%, transparent 60%);
}
.hero-glow-layer {
  position: absolute;
  top: 15%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.06) 0%, rgba(168, 85, 247, 0.04) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.hero-grid-radial {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, transparent 30%, var(--bg) 80%);
  pointer-events: none;
}
.orbital-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(0, 217, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}
.orbital-1 { width: 500px; height: 500px; }
.orbital-2 { width: 750px; height: 750px; animation: spinOrbit 90s linear infinite; }
.orbital-3 { width: 1000px; height: 1000px; border-style: dotted; opacity: 0.5; }

@keyframes spinOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.15);
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--neon-blue);
  font-family: var(--font-sora);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.1);
}
.hero-title {
  font-size: clamp(2.25rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero-title span.gradient-text {
  background: linear-gradient(135deg, var(--neon-blue) 10%, var(--electric-purple) 50%, var(--gold) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  display: inline-block;
}
.hero-sub {
  color: var(--grey-light);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 780px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--grey-light);
  font-family: var(--font-sora);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Services / What We Do Section ---------- */
.section {
  padding: 100px 0;
  position: relative;
}
.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--neon-blue);
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.05);
}
.service-icon-wrap.purple {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.15);
  color: var(--electric-purple);
}
.service-icon-wrap.orange {
  background: rgba(255, 123, 0, 0.05);
  border-color: rgba(255, 123, 0, 0.15);
  color: var(--cyber-orange);
}
.service-icon-wrap.gold {
  background: rgba(240, 169, 43, 0.05);
  border-color: rgba(240, 169, 43, 0.15);
  color: var(--gold);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.feature-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.feature-card {
  padding: 34px 28px;
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.feature-card p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ---------- AI-Led Advantage Section (Neural Connection UI) ---------- */
.ai-card {
  position: relative;
  overflow: hidden;
}
.ai-signal {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--electric-purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ai-signal span {
  width: 6px; height: 6px;
  background: var(--electric-purple);
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 8px var(--electric-purple);
}

/* ---------- Lead Delivery Section (Data Pipelines UI) ---------- */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.delivery-card {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.delivery-icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: rgba(0, 217, 255, 0.04);
  border: 1px solid rgba(0, 217, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-blue);
  flex-shrink: 0;
}
.delivery-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---------- Industries Section (Space Sector Nodes) ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.industry-card {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.industry-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  transition: border-color 0.3s, background-color 0.3s;
}
.industry-card:hover .industry-icon {
  border-color: var(--gold);
  background-color: rgba(240, 169, 43, 0.05);
}
.industry-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

/* ---------- How It Works Section (Orbital Progress Timeline) ---------- */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.timeline-card {
  padding: 34px 24px;
  position: relative;
}
.timeline-card::after {
  content: "";
  position: absolute;
  top: 50px; left: calc(100% + 12px);
  width: calc(24px - 10px);
  height: 2px;
  background: linear-gradient(to right, var(--neon-blue), transparent);
  pointer-events: none;
}
.timeline-card:last-child::after {
  display: none;
}
.timeline-num {
  font-family: var(--font-sora);
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.timeline-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.timeline-card p {
  color: var(--grey);
  font-size: 0.9rem;
}

/* ---------- Trust & Compliance Section ---------- */
.compliance-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 36px;
}
.compliance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
}
.compliance-list li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  color: var(--grey-light);
  font-weight: 500;
}
.compliance-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300d9ff' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---------- Lead Capture Form ---------- */
.form-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background: rgba(5, 6, 20, 0.7);
  border: 1px solid rgba(0, 217, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.05);
}
.form-title {
  font-size: 2rem;
  margin-bottom: 12px;
}
.form-sub {
  color: var(--grey);
  margin-bottom: 36px;
}
.futuristic-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-sora);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--grey-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-inter);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
  background: rgba(0, 217, 255, 0.01);
}
.form-group select {
  cursor: pointer;
}
.form-group select option {
  background: var(--bg-navy);
  color: var(--white);
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0;
  cursor: pointer;
}
.checkbox-group input {
  width: 18px; height: 18px;
  border-radius: 4px;
  accent-color: var(--neon-blue);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.checkbox-group span {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.5;
}

/* ---------- Careers Page ---------- */
.careers-hero {
  padding: 140px 0 80px;
  text-align: center;
}
.careers-detail-card {
  max-width: 820px;
  margin: 0 auto 50px;
  padding: 48px;
}
.careers-detail-card h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
.role-badge {
  display: inline-block;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: var(--electric-purple);
  padding: 6px 18px;
  border-radius: 50px;
  font-family: var(--font-sora);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
  margin: 30px 0;
}
.careers-item {
  position: relative;
  padding-left: 28px;
  color: var(--grey-light);
  font-size: 0.95rem;
}
.careers-item::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a855f7' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.careers-contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
  max-width: 400px;
  margin: 30px auto 0;
}
.careers-contact-box p {
  color: var(--grey);
  font-size: 0.9rem;
}
.careers-contact-box a.phone {
  font-family: var(--font-sora);
  color: var(--neon-blue);
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0 0 8px rgba(0, 217, 255, 0.2);
}

.file-dropzone {
  position: relative;
  border: 1.5px dashed rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s, background-color 0.25s;
}
.file-dropzone:hover {
  border-color: var(--electric-purple);
  background: rgba(168, 85, 247, 0.01);
}
.file-dropzone input[type="file"] {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-dropzone svg {
  width: 32px; height: 32px;
  color: var(--electric-purple);
  margin: 0 auto 12px;
}
.file-dropzone span {
  display: block;
  font-size: 0.88rem;
  color: var(--grey-light);
}
.file-dropzone em {
  display: block;
  font-size: 0.72rem;
  color: var(--grey);
  margin-top: 6px;
  font-style: normal;
}

/* ---------- Stat Cards ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.stat-card {
  padding: 34px 20px;
  text-align: center;
}
.stat-card span.stat-big {
  display: block;
  font-family: var(--font-sora);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--electric-purple);
  text-shadow: 0 0 16px rgba(168, 85, 247, 0.35);
  margin-bottom: 6px;
  line-height: 1;
}
.stat-card span.stat-label {
  color: var(--grey);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 217, 255, 0.03) 0%, transparent 60%);
  padding: 80px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand {
  max-width: 320px;
}
.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
}
.footer-tag {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.6;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: var(--grey);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--neon-blue);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--grey-dark);
  font-size: 0.85rem;
}

/* ---------- Client CTA Sections ---------- */
.client-cta {
  padding: 60px 0;
}
.cta-card {
  padding: 60px 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  background: radial-gradient(circle at 50% 0%, rgba(0, 217, 255, 0.06), rgba(8, 9, 26, 0.6));
  border-color: rgba(0, 217, 255, 0.2);
}
.cta-card h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 14px;
}

/* ---------- WhatsApp Floating Glow Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-sora);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 24px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 1px rgba(255,255,255,0.1);
  transition: background-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float::before {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20.52 3.48A11.93 11.93 0 0 0 12 0C5.37 0 0 5.37 0 12c0 2.11.55 4.17 1.6 5.99L0 24l6.18-1.62A11.93 11.93 0 0 0 12 24c6.63 0 12-5.37 12-12 0-3.21-1.25-6.22-3.48-8.52ZM12 22a9.93 9.93 0 0 1-5.05-1.38l-.36-.21-3.73.98.99-3.63-.24-.38A9.93 9.93 0 0 1 2 12C2 6.48 6.48 2 12 2c2.65 0 5.14 1.03 7.01 2.9A9.86 9.86 0 0 1 22 12c0 5.52-4.48 10-10 10Zm5.47-7.33c-.3-.15-1.77-.87-2.04-.97s-.47-.15-.67.15-.77.97-.94 1.17-.35.22-.65.07a8.17 8.17 0 0 1-2.4-1.48 9 9 0 0 1-1.66-2.07c-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52s.2-.3.3-.5.05-.37-.02-.52-.67-1.61-.92-2.2c-.24-.58-.49-.5-.67-.51H6.7c-.2 0-.52.07-.79.37S4.99 7.77 4.99 9.03c0 1.27.93 2.5 1.06 2.67s1.83 2.8 4.43 3.92c.62.27 1.1.43 1.47.55.62.2 1.18.17 1.63.1.5-.07 1.53-.62 1.75-1.22s.21-1.12.15-1.22-.27-.2-.57-.35Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* ---------- Global Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — Desktop Grid / Mobile Marquee Sliders
   ============================================================ */

/* Reusable Mobile Infinite Marquee Sliders */
.slider-container {
  width: 100%;
  overflow: hidden;
}
.slider-track {
  width: 100%;
}
.slider-track .dup {
  display: none; /* Hide duplicates on desktop */
}

/* ================= ================= ================= */
/* MEDIA QUERY: TABLET (1024px) */
/* ================= ================= ================= */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-card::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ================= ================= ================= */
/* MEDIA QUERY: MOBILE (768px) */
/* ================= ================= ================= */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  
  /* Sticky Navbar hamburger menu drawer */
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0; right: -320px;
    width: 300px;
    height: 100vh;
    background: rgba(2, 2, 8, 0.96);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 217, 255, 0.15);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    padding: 80px 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    width: 100%;
    padding: 14px 0;
    font-size: 1.15rem;
    font-family: var(--font-sora);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-cta {
    text-align: center;
    margin-top: 20px;
    border-bottom: none !important;
  }

  .hero {
    padding: 110px 0 60px;
    min-height: auto;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 320px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .trust-badge {
    justify-content: flex-start;
    padding-left: 10%;
  }

  .compliance-list {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 30px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .careers-grid {
    grid-template-columns: 1fr;
  }
  .careers-detail-card {
    padding: 30px 20px;
  }

  /* --- Reusable mobile marquee auto-sliding animation --- */
  .slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  }
  .slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    width: max-content;
    animation: mobileMarquee 32s linear infinite;
  }
  .slider-track .dup {
    display: flex; /* Show duplicates for seamless wrap */
  }
  .slider-card {
    width: 290px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  /* Custom timings or delays for different sliders to avoid uniform speed feeling */
  #about .slider-track { animation-duration: 30s; }
  #services .slider-track { animation-duration: 28s; }
  #ai-advantage .slider-track { animation-duration: 32s; }
  #delivery .slider-track { animation-duration: 36s; }
  #industries .slider-track { animation-duration: 34s; }
  #how .slider-track { animation-duration: 28s; }
  #why .slider-track { animation-duration: 32s; }

  /* Pause sliding when finger touches screen */
  .slider-track:hover, .slider-track:active {
    animation-play-state: paused;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 12px 12px;
    font-size: 0;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  }
  .whatsapp-float::before {
    width: 26px;
    height: 26px;
  }
}

/* Marquee animation keyframe */
@keyframes mobileMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .slider-track { animation: none !important; display: flex; overflow-x: auto; width: auto; }
  .slider-track .dup { display: none; }
  .slider-card { width: 80% !important; scroll-snap-align: start; }
  .slider-container { overflow-x: auto; scroll-snap-type: x mandatory; }
  .orbital-2 { animation: none; }
}
