/* ═══════════════════════════════════════════════════
   BRAND TOKENS — extracted from Cyberlet logo
   Navy #1B2A4A  |  Coral #E8503A  |  White #FFFFFF
═══════════════════════════════════════════════════ */
:root {
  --navy:       #1B2A4A;
  --navy-dark:  #111B30;
  --navy-mid:   #243660;
  --navy-light: #EEF1F7;
  --navy-xlt:   #F5F7FB;
  --coral:      #E8503A;
  --coral-dark: #C23D2A;
  --coral-lt:   #FDF0EE;
  --coral-mid:  #EE6B58;
  --white:      #FFFFFF;
  --ink:        #0F1924;
  --ink2:       #2D3748;
  --ink3:       #4A5568;
  --muted:      #718096;
  --subtle:     #A0AEC0;
  --border:     #E2E8F0;
  --border2:    #CBD5E0;
  --bg:         #FFFFFF;
  --bg2:        #F8FAFC;
  --bg3:        #EDF2F7;

  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --sh-sm: 0 1px 3px rgba(27,42,74,.08), 0 2px 10px rgba(27,42,74,.05);
  --sh:    0 4px 20px rgba(27,42,74,.10), 0 1px 4px rgba(27,42,74,.06);
  --sh-lg: 0 10px 40px rgba(27,42,74,.14), 0 2px 8px rgba(27,42,74,.06);
  --sh-coral: 0 6px 24px rgba(232,80,58,.30);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all .2s; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── Typography ── */
.display-hero {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}
.text-navy { color: var(--navy); }
.text-coral { color: var(--coral); }
.text-muted-custom { color: var(--muted); }
.fw-600 { font-weight: 600; }

/* ── Buttons ── */
.btn-coral {
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--coral);
  border-radius: 50px;
  padding: .7rem 1.7rem;
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--font-body);
  box-shadow: var(--sh-coral);
  transition: all .22s;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232,80,58,.4); color: #fff; }
.btn-navy {
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: .7rem 1.7rem;
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--font-body);
  transition: all .22s;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); color: #fff; }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: .7rem 1.7rem;
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--font-body);
  transition: all .22s;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 50px;
  padding: .7rem 1.7rem;
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--font-body);
  transition: all .22s;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--navy);
  border: 2px solid #fff;
  border-radius: 50px;
  padding: .7rem 1.7rem;
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--font-body);
  box-shadow: var(--sh);
  transition: all .22s;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.btn-white:hover { background: var(--navy-xlt); transform: translateY(-2px); color: var(--navy); }

/* ── Badge / Pill ── */
.badge-coral { background: var(--coral-lt); color: var(--coral); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .28rem .8rem; border-radius: 50px; display: inline-block; }
.badge-navy { background: var(--navy-light); color: var(--navy); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .28rem .8rem; border-radius: 50px; display: inline-block; }
.badge-green { background: #E6F9F0; color: #0A7B4A; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .28rem .8rem; border-radius: 50px; display: inline-block; }

/* ── Section helpers ── */
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }
.sec-label { display: flex; align-items: center; gap: .6rem; margin-bottom: .9rem; }
.sec-label-line { width: 28px; height: 2px; background: var(--coral); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
#mainNav {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
  font-family: var(--font-body);
}
#mainNav.scrolled { box-shadow: var(--sh-sm); }

/* Logo in nav */
.nav-logo-svg { height: 38px; width: auto; }

/* Custom nav link style */
.nav-link-custom {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink2) !important;
  padding: .45rem .8rem !important;
  border-radius: 8px;
  transition: all .18s !important;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link-custom:hover, .nav-link-custom.active-page { color: var(--coral) !important; background: var(--coral-lt); }

/* Mega dropdown styling */
.dropdown-menu-custom {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 1rem;
  min-width: 220px;
  background: #fff;
  margin-top: 6px !important;
}
.dropdown-item-custom {
  font-size: .83rem;
  font-weight: 500;
  color: var(--ink3);
  padding: .42rem .75rem;
  border-radius: 6px;
  display: block;
  transition: all .15s;
}
.dropdown-item-custom:hover { color: var(--coral); background: var(--coral-lt); }
.dd-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--subtle);
  padding: .5rem .75rem .25rem;
  margin-top: .3rem;
}

/* ═══════════════════════════════════════════════════
   PAGE SYSTEM
═══════════════════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════════════════════════
   PAGE HERO — INNER PAGES
═══════════════════════════════════════════════════ */
.inner-hero {
  background: linear-gradient(150deg, #EFF2F8 0%, #FFFFFF 55%, #FDF1EF 100%);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute; top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,42,74,.065) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.inner-hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(232,80,58,.055) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.breadcrumb-custom {
  display: flex; align-items: center; gap: .45rem;
  font-size: .78rem; color: var(--subtle);
  margin-bottom: 1.1rem; flex-wrap: wrap;
}
.breadcrumb-custom a { color: var(--coral); font-weight: 600; }
.breadcrumb-custom a:hover { opacity: .75; }
.breadcrumb-sep { color: var(--border2); }

/* ═══════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════ */
.card-custom {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all .28s;
  height: 100%;
}
.card-custom:hover {
  box-shadow: var(--sh);
  transform: translateY(-5px);
  border-color: var(--border2);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: background .25s;
}
.card-custom:hover .card-icon { background: var(--coral-lt); }
.card-title-custom { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .55rem; }
.card-text-custom { font-size: .88rem; line-height: 1.7; color: var(--muted); }

/* Service card with bottom border animation */
.svc-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all .28s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.svc-card:hover { box-shadow: var(--sh); transform: translateY(-5px); border-color: rgba(27,42,74,.15); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card .card-link {
  font-size: .82rem; font-weight: 700; color: var(--navy);
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: 1rem; transition: gap .2s, color .2s;
}
.svc-card:hover .card-link { gap: .6rem; color: var(--coral); }

/* Stat card */
.stat-card {
  text-align: center;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1rem;
  transition: all .25s;
}
.stat-card:hover { box-shadow: var(--sh-sm); transform: translateY(-3px); }
.stat-val {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 800;
  color: var(--navy); display: block; line-height: 1;
}
.stat-val.coral { color: var(--coral); }
.stat-val.green { color: #00A855; }
.stat-label { font-size: .78rem; color: var(--muted); margin-top: .35rem; font-weight: 500; }

/* ═══════════════════════════════════════════════════
   HOME — HERO
═══════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #EBF0FA 0%, #FFFFFF 50%, #FEF0ED 100%);
  padding: 6.5rem 0 5.5rem;
}
.hero-section::before {
  content: '';
  position: absolute; top: -200px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(27,42,74,.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute; bottom: -120px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,80,58,.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-eyebrow-line { width: 30px; height: 2px; background: var(--coral); display: inline-block; vertical-align: middle; margin-right: .6rem; }
.hero-stat { text-align: center; }
.hero-stat-val { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--navy); display: block; line-height: 1; }
.hero-stat-div { width: 1px; background: var(--border); height: 32px; }

/* Hero visual card */
.hero-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--sh-lg);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.hero-mini-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .85rem; cursor: default;
  transition: all .2s;
}
.hero-mini-item:hover { background: var(--coral-lt); border-color: rgba(232,80,58,.2); }
.hero-float-badge {
  position: absolute;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: .65rem 1rem;
  box-shadow: var(--sh);
  display: flex; align-items: center; gap: .55rem;
  white-space: nowrap;
}
.hero-float-badge.tl { top: -18px; left: -24px; animation: floatBadge 4.5s ease-in-out infinite .5s; }
.hero-float-badge.br { bottom: -18px; right: -20px; animation: floatBadge 5s ease-in-out infinite 1.5s; }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ═══════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════ */
.ticker-wrap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.8rem 0; overflow: hidden; }
.ticker-track { position: relative; }
.ticker-track::before, .ticker-track::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1; pointer-events: none; }
.ticker-track::before { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
.ticker-track::after { right: 0; background: linear-gradient(to left, var(--bg2), transparent); }
.ticker-inner { display: flex; gap: 2rem; animation: ticker 28s linear infinite; width: max-content; }
.ticker-inner:hover { animation-play-state: paused; }
.client-chip {
  display: flex; align-items: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: .45rem 1.1rem;
  font-size: .78rem; font-weight: 700;
  color: var(--ink3); gap: .5rem;
  filter: grayscale(1); opacity: .6;
  transition: all .2s; cursor: default; flex-shrink: 0;
}
.client-chip:hover { filter: none; opacity: 1; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════
   ABOUT NAVY STRIP
═══════════════════════════════════════════════════ */
.about-strip {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy-mid));
  padding: 5.5rem 0;
  position: relative; overflow: hidden;
}
.about-strip::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: rgba(232,80,58,.07); border-radius: 50%; }
.about-stat-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 1.5rem; text-align: center;
  transition: background .2s; cursor: default;
}
.about-stat-box:hover { background: rgba(255,255,255,.12); }
.about-stat-val { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: #fff; display: block; line-height: 1; }
.about-stat-label { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: .35rem; font-weight: 500; }

/* ═══════════════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════════════ */
.process-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(27,42,74,.3);
}
.process-connector {
  position: absolute;
  top: 26px; left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--navy), var(--coral));
}

/* ═══════════════════════════════════════════════════
   INDUSTRIES GRID
═══════════════════════════════════════════════════ */
.industry-card {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1rem;
  text-align: center; cursor: pointer;
  transition: all .22s;
}
.industry-card:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-3px); }
.industry-card:hover .industry-icon, .industry-card:hover .industry-name { color: #fff; }
.industry-icon { font-size: 1.8rem; display: block; margin-bottom: .55rem; }
.industry-name { font-size: .82rem; font-weight: 700; color: var(--ink3); transition: color .2s; }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testi-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem; height: 100%;
  transition: box-shadow .25s;
}
.testi-card:hover { box-shadow: var(--sh); }
.testi-stars { color: #FFB800; font-size: .9rem; margin-bottom: .9rem; }
.testi-text { font-size: .9rem; line-height: 1.8; color: var(--ink3); font-style: italic; margin-bottom: 1.2rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--coral));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: #fff;
  font-family: var(--font-display); flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 0; position: relative; overflow: hidden;
}
.cta-strip::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 300px; height: 300px; background: rgba(232,80,58,.15); border-radius: 50%; }

/* ═══════════════════════════════════════════════════
   TIMELINE (Journey / About)
═══════════════════════════════════════════════════ */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: .85rem; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy) 0%, var(--coral) 100%);
}
.tl-item { position: relative; margin-bottom: 3rem; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -2.5rem; top: .3rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 3px solid var(--navy);
  z-index: 1; transition: all .28s;
}
.tl-item:hover .tl-dot { background: var(--navy); transform: scale(1.2); }
.tl-item:nth-child(3) .tl-dot, .tl-item:nth-child(4) .tl-dot { border-color: var(--coral); }
.tl-item:nth-child(3):hover .tl-dot, .tl-item:nth-child(4):hover .tl-dot { background: var(--coral); }
.tl-card {
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem;
  transition: all .28s; cursor: default;
}
.tl-item:hover .tl-card { background: #fff; box-shadow: var(--sh); transform: translateX(6px); }
.tl-year { display: inline-flex; align-items: center; gap: .45rem; margin-bottom: .7rem; }
.tl-year-num { background: var(--navy); color: #fff; font-size: .72rem; font-weight: 700; font-family: var(--font-display); padding: .18rem .6rem; border-radius: 50px; }
.tl-item:nth-child(3) .tl-year-num, .tl-item:nth-child(4) .tl-year-num { background: var(--coral); }

/* ═══════════════════════════════════════════════════
   WHY CARDS
═══════════════════════════════════════════════════ */
.why-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  transition: all .28s; height: 100%;
  position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--coral));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.why-card:hover { box-shadow: var(--sh); transform: translateY(-4px); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon { width: 52px; height: 52px; border-radius: var(--r-sm); background: var(--navy-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.1rem; transition: background .25s; }
.why-card:hover .why-icon { background: var(--coral-lt); }

/* ═══════════════════════════════════════════════════
   TEAM CARDS
═══════════════════════════════════════════════════ */
.team-card {
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .28s;
}
.team-card:hover { box-shadow: var(--sh); transform: translateY(-4px); }
.team-avatar-wrap {
  height: 150px;
  background: linear-gradient(145deg, var(--navy-light), var(--bg3));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.team-info { padding: 1.25rem; background: #fff; }
.team-name { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--ink); }
.team-role { font-size: .78rem; color: var(--muted); margin-top: .15rem; }
.team-social { display: flex; gap: .35rem; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.team-social a {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--bg2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--muted); transition: all .18s;
}
.team-social a:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ═══════════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════════ */
.form-control-custom {
  width: 100%; background: #fff; border: 1.5px solid var(--border2);
  border-radius: var(--r-sm); padding: .75rem 1rem;
  font-size: .9rem; font-family: var(--font-body);
  color: var(--ink); outline: none; transition: border-color .2s;
  font-family: var(--font-body);
}
.form-control-custom:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,42,74,.08); outline: none; }
.form-label-custom { font-size: .8rem; font-weight: 700; color: var(--ink3); margin-bottom: .4rem; display: block; }
.contact-info-icon { width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--navy-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════════════════ */
.blog-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .28s; cursor: pointer; height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--sh); transform: translateY(-4px); }
.blog-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--coral); margin-bottom: .45rem; }
.blog-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: .5rem; }
.blog-excerpt { font-size: .84rem; line-height: 1.65; color: var(--muted); flex: 1; }
.blog-meta { display: flex; gap: .6rem; margin-top: 1rem; font-size: .74rem; color: var(--subtle); padding-top: 1rem; border-top: 1px solid var(--border); }

/* ═══════════════════════════════════════════════════
   CAREER / JOB CARDS
═══════════════════════════════════════════════════ */
.job-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; transition: all .22s;
}
.job-card:hover { border-color: var(--navy); box-shadow: var(--sh-sm); }
.job-tag { font-size: .7rem; font-weight: 600; padding: .2rem .6rem; border-radius: 50px; background: var(--bg2); color: var(--muted); border: 1px solid var(--border); }

/* ═══════════════════════════════════════════════════
   TECH PILLS
═══════════════════════════════════════════════════ */
.tech-pill {
  display: flex; align-items: center; gap: .55rem;
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: 50px; padding: .5rem 1.1rem;
  font-size: .82rem; font-weight: 600; color: var(--ink3);
  transition: all .2s; cursor: default;
}
.tech-pill:hover { background: var(--navy-light); border-color: rgba(27,42,74,.25); color: var(--navy); }
.tech-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--navy); flex-shrink: 0; }
.tech-dot.coral { background: var(--coral); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer-main {
  background: var(--ink);
  padding: 4.5rem 0 2rem;
}
.footer-logo-mark { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: .95rem; font-family: var(--font-display); flex-shrink: 0; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #fff; }
.footer-brand-name span { color: var(--coral); }
.footer-desc { font-size: .84rem; line-height: 1.72; color: rgba(255,255,255,.4); margin-bottom: 1.5rem; }
.footer-contact a { color: rgba(255,255,255,.65); font-size: .83rem; display: block; margin-bottom: .4rem; transition: color .18s; }
.footer-contact a:hover { color: var(--coral); }
.footer-col-title { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: .9rem; }
.footer-link { display: block; font-size: .82rem; color: rgba(255,255,255,.45); padding: .22rem 0; transition: color .18s; }
.footer-link:hover { color: #fff; }
.footer-social { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .88rem; color: rgba(255,255,255,.45); transition: all .2s; }
.footer-social:hover { background: var(--coral); border-color: var(--coral); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; }
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.26); }
.footer-cin { font-size: .7rem; color: rgba(255,255,255,.18); margin-top: .18rem; }
.footer-bottom-link { font-size: .76rem; color: rgba(255,255,255,.3); transition: color .18s; }
.footer-bottom-link:hover { color: rgba(255,255,255,.75); }

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════════
   LOGO SVG INLINE
═══════════════════════════════════════════════════ */
/* The logo is recreated as inline SVG using exact brand colors from the uploaded image */

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-section { padding: 4rem 0 3.5rem; }
  .section-pad { padding: 4rem 0; }
  .hero-float-badge { display: none; }
  .about-strip { padding: 4rem 0; }
  .process-connector { display: none; }
}
@media (max-width: 767px) {
  .job-card { flex-direction: column; align-items: flex-start; }
  .cta-strip { padding: 3.5rem 0; }
}

/* ═══════════════════════════════════════════════════
   WhatsApp Floating Chat 
═══════════════════════════════════════════════════ */

.contact-widget{
position:fixed;
bottom:25px;
right:25px;
display:flex;
flex-direction:column;
align-items:center;
z-index:9999;
}

.contact-btn{
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:22px;
margin-bottom:10px;
text-decoration:none;
transform:scale(0);
transition:0.3s;
}

.contact-btn.whatsapp{ background:#25D366; }
.contact-btn.call{ background:#007bff; }
.contact-btn.email{ background:#ff4d4d; }

.contact-toggle{
width:60px;
height:60px;
border-radius:50%;
background:#111;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
cursor:pointer;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.contact-widget.active .contact-btn{
transform:scale(1);
}

/* ═══════════════════════════════════════════════════
   Work Page 
═══════════════════════════════════════════════════ */

.filter-btn{
border:1px solid var(--border);
background:#fff;
padding:8px 18px;
margin:5px;
border-radius:30px;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.filter-btn:hover,
.filter-btn.active{
background:var(--coral);
color:#fff;
border-color:var(--coral);
}


.portfolio-card{
border:1px solid var(--border);
border-radius:16px;
overflow:hidden;
background:#fff;
transition:.35s;
}

.portfolio-card img{
width:100%;
object-fit:cover;
}

.portfolio-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.portfolio-content{
padding:20px;
}

.portfolio-tag{
background:var(--coral);
color:#fff;
font-size:.7rem;
padding:4px 10px;
border-radius:20px;
display:inline-block;
margin-bottom:10px;
}

.portfolio-content h4{
font-size:1.1rem;
font-weight:700;
margin-bottom:8px;
}

.portfolio-content p{
font-size:.9rem;
color:var(--muted);
margin-bottom:12px;
}

.portfolio-link{
font-weight:600;
font-size:.85rem;
color:var(--coral);
text-decoration:none;
}

/*--- Scrool up image ----*/

.image-scroll-card{
height:350px;
overflow:hidden;
border-radius:16px;
border:1px solid var(--border);
}

.image-scroll-card img{
width:100%;
transition:transform 8s ease;
}

.image-scroll-card:hover img{
transform:translateY(calc(-100% + 350px));
}