/* =====================================================================
   LINKEDIN INSPIRED LIGHT THEME
   Color Palette (modeled on LinkedIn's brand system):
   - LinkedIn Blue           : #0A66C2 (primary brand blue / CTA & highlight)
   - Deep Blue (hover/alt)   : #004182 (darker blue for depth/hover/headings)
   - Light Sky Accent        : #378FE9 (lighter blue for badges/secondary accents)
   - Success Green           : #057642 (LinkedIn's "open to work" green)
   - Background              : #FFFFFF / #F4F2EE (LinkedIn's signature warm-gray page bg)
   - Section alt bg          : #EEF3F8 (light blue-tinted sections)
   - Dark text / headings    : #1B1F23 (near-black, high contrast)
   - Body text               : #434649 (readable charcoal-gray)
   - Muted text              : #67696C (secondary info)
   - Borders                 : #E0E0E0 (subtle separator)
   - Cards                   : #FFFFFF with soft shadows
   Contrast notes: body text on white ≈ 8.9:1, ink on white ≈ 16.6:1,
   white text on LinkedIn blue ≈ 4.8:1 — all meet WCAG AA for normal text.
   ===================================================================== */

:root {
  --ink: #1B1F23;
  --surface: #ffffff;
  --surface2: #EEF3F8;
  --surface3: #E1ECF9;
  --accent: #0965c0;
  --accent2: #003972;
  --accent3: #378FE9;
  --blue: #0763c0;
  --blue2: #004182;
  --blue-light: #E8F1FC;
  --green: #057642;
  --green-light: #E5F4ED;
  --text: #1B1F23;
  --body-text: #434649;
  --muted: #67696C;
  --border: #E0E0E0;
  --border-accent: rgba(10, 102, 194, 0.25);
  --card-bg: #FFFFFF;
  --glow: 0 8px 32px rgba(10, 102, 194, 0.14);
  --shadow: 0 2px 16px rgba(27, 31, 35, 0.08);
  --shadow-md: 0 8px 32px rgba(27, 31, 35, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 31, 35, 0.16);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #FFFFFF;
  color: var(--body-text);
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* PRELOADER */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity .6s, visibility .6s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-logo img { width: 200px; animation: prePulse 1.2s ease-in-out infinite alternate; }
@keyframes prePulse { from { transform: scale(.95); opacity: .8; } to { transform: scale(1.05); opacity: 1; } }
.pre-bar { width: 200px; height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.pre-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  border-radius: 2px; animation: preLoad 1.8s ease forwards;
}
@keyframes preLoad { from { width: 0; } to { width: 100%; } }
.pre-text { font-size: 11px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }

/* BACK TO TOP */
.back-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; font-size: 16px;
  box-shadow: 0 4px 20px rgba(10, 102, 194, 0.35);
  transition: all .3s; opacity: 0; pointer-events: none;
}
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-4px); }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27, 31, 35, 0.06);
  transition: all .3s;
}
.navbar.scrolled { background: rgba(255, 255, 255, 0.99); height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 90px; width: 90px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(10, 102, 194, 0.2)); }
.logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--accent2); letter-spacing: 1px; }
.logo-text span {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; color: var(--body-text);
  text-decoration: none; font-size: 14px; font-weight: 500;
  border-radius: 8px; transition: all .2s; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--accent); background: rgba(10, 102, 194, 0.07); }
.nav-links > li > a i { font-size: 10px; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 0; min-width: 260px;
  background: #FFFFFF; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .25s; box-shadow: var(--shadow-lg); z-index: 999;
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  color: var(--body-text); text-decoration: none; font-size: 13.5px;
  border-radius: 8px; transition: all .2s;
}
.dropdown a:hover { background: rgba(10, 102, 194, 0.07); color: var(--accent); }
.dropdown a i { width: 16px; text-align: center; color: var(--accent); font-size: 12px; }
.nav-cta {
  padding: 9px 22px !important;
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
  color: #fff !important; border-radius: 8px !important;
  font-weight: 600 !important; font-size: 13px !important;
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.3) !important;
}
.nav-cta:hover { background: var(--accent2) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* MOBILE NAV */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999; background: #FFFFFF;
  display: flex; flex-direction: column; padding: 80px 32px 32px;
  transform: translateX(100%); transition: transform .35s ease; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links > li > a {
  display: block; padding: 14px 0; color: var(--text);
  text-decoration: none; font-size: 18px; font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-links .sub { display: flex; flex-direction: column; gap: 4px; padding: 8px 16px; }
.mobile-nav-links .sub a { font-size: 14px; color: var(--muted); text-decoration: none; padding: 6px 0; border: none; }
.mobile-nav-links .sub a:hover { color: var(--accent); }

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #FFFFFF 0%, #EEF3F8 50%, #E1ECF9 100%);
  overflow: hidden;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(4, 65, 130, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 65, 130, 0.04) 1px, transparent 1px);
  background-size: 60px 60px; animation: gridMove 20s linear infinite;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(10, 102, 194, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(4, 65, 130, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(5, 118, 66, 0.05) 0%, transparent 50%);
}
@keyframes gridMove { to { background-position: 60px 60px; } }
.particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.particle {
  position: absolute; width: 4px; height: 4px;
  background: var(--accent); border-radius: 50%;
  animation: floatUp linear infinite; opacity: .5;
}
@keyframes floatUp {
  0% { transform: translateY(100vh) rotate(0); opacity: 0; }
  10% { opacity: .5; }
  90% { opacity: .5; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10, 102, 194, 0.1); border: 1px solid rgba(10, 102, 194, 0.3);
  border-radius: 50px; padding: 6px 18px; font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; color: var(--accent2); text-transform: uppercase;
  margin-bottom: 24px; animation: fadeUp .8s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .5; } }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px); font-weight: 800;
  line-height: 1.05; margin-bottom: 20px;
  color: var(--ink); animation: fadeUp .8s .15s ease both;
}
.hero h1 .accent-word {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 18px; color: var(--muted); max-width: 600px;
  margin: 0 auto 40px; line-height: 1.7; animation: fadeUp .8s .3s ease both;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; animation: fadeUp .8s .45s ease both;
}
.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; text-decoration: none; font-weight: 600; font-size: 15px;
  border-radius: 10px; transition: all .3s;
  box-shadow: 0 4px 20px rgba(10, 102, 194, 0.35);
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(10, 102, 194, 0.5); }
.btn-secondary {
  padding: 14px 32px;
  background: transparent; border: 1.5px solid var(--blue);
  color: var(--blue); text-decoration: none; font-weight: 600;
  font-size: 15px; border-radius: 10px; transition: all .3s;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: var(--blue); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(4, 65, 130, 0.25); }
.hero-stats {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 48px; z-index: 2; animation: fadeUp .8s .6s ease both;
}
.hero-stat .num {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat .lbl { font-size: 12px; color: var(--muted); letter-spacing: .5px; margin-top: 2px; text-align: center; }
.scroll-hint {
  position: absolute; bottom: 40px; right: 48px; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: var(--muted); font-size: 11px;
  letter-spacing: 1px; text-transform: uppercase;
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollAnim 1.5s infinite;
}
@keyframes scrollAnim { 0%, 100% { opacity: 0; } 50% { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* SECTIONS */
section { padding: 100px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent2); margin-bottom: 16px;
}

.section-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--accent); border-radius: 1px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px); font-weight: 700;
  --surface: #F5F7FA;
  line-height: 1.15; margin-bottom: 16px; color: var(--accent2);
}
.section-title1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px); font-weight: 700;
  --surface: #F5F7FA;
  line-height: 1.15; margin-bottom: 16px; color: var(--ink);
}
.zl{
  color: var(--border)  !important;
}
.section-sub { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 580px; }
.bgv-subtitle,.global-subtitle,.perm-subtitle,.project-subtitle,.pt,.dm,.dm-subtitle{
  color: var(--border)!important;
}
/* TICKER */
.ticker-band {
  background: linear-gradient(90deg, var(--blue2), var(--blue), var(--accent), var(--blue));
  background-size: 200% auto; animation: gradMove 4s linear infinite;
  padding: 12px 0; overflow: hidden;
}
@keyframes gradMove { to { background-position: 200% center; } }
.ticker-inner { display: flex; animation: tickerScroll 30s linear infinite; white-space: nowrap; }
.ticker-item {
  display: flex; align-items: center; gap: 12px; padding: 0 32px;
  font-size: 13px; font-weight: 600; color: #fff; letter-spacing: .5px;
}
.ticker-item::after { content: '★'; opacity: .6; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* NEWS SECTION */
.news-section { background: var(--surface); padding: 100px 0; }
.news-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.news-marquee-wrap {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow);
}
.news-marquee-header {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  background: var(--surface2);
}
.news-marquee-header h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--ink); }
.news-marquee-header i { color: var(--accent); }
.priority-dot { width: 9px; height: 9px; background: #EF4444; border-radius: 50%; animation: pulse 1s infinite; margin-left: auto; flex-shrink: 0; }
.news-marquee-viewport { height: 340px; overflow: hidden; position: relative; }
.news-marquee-track { display: flex; flex-direction: column; animation: scrollUp 32s linear infinite; }
.news-marquee-track:hover { animation-play-state: paused; }
@keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
.news-marquee-item {
  padding: 15px 20px; border-bottom: 1px solid var(--border);
  display: flex; gap: 14px; align-items: flex-start;
  cursor: pointer; transition: background .2s; flex-shrink: 0;
  border-left: 3px solid transparent;
}
.news-marquee-item:hover { background: rgba(10, 102, 194, 0.04); border-left-color: var(--accent); transform: translateX(4px); }
.nm-badge {
  min-width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; transition: transform .3s;
}
.news-marquee-item:hover .nm-badge { transform: scale(1.1); }
.nm-badge.p1 { background: linear-gradient(135deg, #EF4444, #F87171); }
.nm-badge.p2 { background: linear-gradient(135deg, var(--green), #22B86E); }
.nm-badge.p3 { background: linear-gradient(135deg, var(--accent), var(--accent3)); }
.nm-badge.p4 { background: linear-gradient(135deg, var(--blue), #2C5390); }
.nm-badge.p5 { background: linear-gradient(135deg, #F59E0B, #FB923C); }
.nm-priority {
  font-size: 9px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; padding: 2px 7px; border-radius: 4px;
  margin-bottom: 5px; display: inline-block;
}
.nm-priority.hot { background: rgba(239, 68, 68, 0.12); color: #DC2626; border: 1px solid rgba(239, 68, 68, 0.25); }
.nm-priority.high { background: var(--green-light); color: var(--green); border: 1px solid rgba(5, 118, 66, 0.25); }
.nm-priority.med { background: rgba(10, 102, 194, 0.1); color: var(--accent2); border: 1px solid rgba(10, 102, 194, 0.25); }
.nm-priority.info { background: var(--blue-light); color: var(--blue); border: 1px solid rgba(4, 65, 130, 0.25); }
.nm-content h4 { font-size: 13.5px; font-weight: 600; line-height: 1.45; margin-bottom: 5px; color: var(--ink); transition: color .3s; }
.news-marquee-item:hover .nm-content h4 { color: var(--accent2); }
.nm-content .nm-date { font-size: 11px; color: var(--muted); }

/* ACHIEVEMENTS */
.ach-panel h3 { display: flex; align-items: center; gap: 10px; }
.ach-panel h3 i { color: var(--accent); }
.ach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ach-card {
  padding: 24px 20px; background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); text-align: center; transition: all .3s;
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.ach-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
}
.ach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ach-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.ach-label { font-size: 13px; color: var(--muted); margin-top: 6px; }
.svc-tag {
  padding: 5px 14px; background: rgba(4, 65, 130, 0.08);
  border: 1px solid rgba(4, 65, 130, 0.2); border-radius: 20px;
  font-size: 12px; color: var(--blue); font-weight: 500;
}

/* ABOUT */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-ring {
  width: 300px; height: 300px; border-radius: 50%;
  border: 2px solid rgba(10, 102, 194, 0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative; animation: ringRotate 20s linear infinite;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }
.about-ring-inner {
  width: 220px; height: 220px; background: var(--card-bg);
  border-radius: 50%; border: 2px solid rgba(4, 65, 130, 0.2);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; animation: ringRotate 20s linear infinite reverse;
  box-shadow: var(--shadow-md);
}
.about-ring-inner i { font-size: 44px; color: var(--accent); margin-bottom: 8px; }
.about-ring-inner span { font-size: 11px; color: var(--muted); text-align: center; padding: 0 20px; }
.ring-dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; box-shadow: 0 0 10px currentColor; }
.ring-dot:nth-child(1) { background: var(--accent); top: -6px; left: 50%; transform: translateX(-50%); }
.ring-dot:nth-child(2) { background: var(--green); bottom: -6px; left: 50%; transform: translateX(-50%); }
.ring-dot:nth-child(3) { background: var(--blue); left: -6px; top: 50%; transform: translateY(-50%); }
.about-text p { color: var(--body-text); line-height: 1.8; font-size: 16px; margin-bottom: 16px; }
.about-highlights { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-hi {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: var(--surface2);
  border-radius: 10px; border-left: 3px solid var(--accent);
  font-size: 14px; font-weight: 500; color: var(--body-text);
}
.about-hi i { color: var(--accent); font-size: 16px; }

/* SERVICE WHEEL */
.service-wheel-section { background: var(--surface); overflow: hidden; }
.wheel-container { display: flex; gap: 60px; align-items: center; }
.wheel-wrap { flex: 0 0 420px; width: 420px; height: 420px; position: relative; }
.wheel-ring-outer { position: absolute; inset: 0; border-radius: 50%; border: 1px dashed rgba(10, 102, 194, 0.15); animation: ringRotate 30s linear infinite; }
.wheel-ring-inner-dec { position: absolute; inset: 20px; border-radius: 50%; border: 1px dashed rgba(4, 65, 130, 0.15); animation: ringRotate 20s linear infinite reverse; }
.wheel-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.wheel-items-container { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.wheel-item {
  position: absolute; width: 68px; height: 68px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  cursor: pointer; transition: all .3s;
  font-size: 10px; color: var(--muted); text-align: center; padding: 4px;
  box-shadow: var(--shadow);
}
.wheel-item i { font-size: 18px; color: var(--muted); transition: all .3s; }
.wheel-item:hover, .wheel-item.active {
  background: var(--blue-light); border-color: var(--blue); color: var(--blue);
  box-shadow: 0 0 20px rgba(4, 65, 130, 0.2);
  transform: translate(var(--tx), var(--ty)) scale(1.15) !important;
}
.wheel-item.active i, .wheel-item:hover i { color: var(--blue); }
.wheel-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2px;
  box-shadow: 0 0 30px rgba(10, 102, 194, 0.3); z-index: 10;
}
.wheel-center i { font-size: 22px; color: #fff; }
.wheel-center span { font-size: 9px; color: rgba(255, 255, 255, .9); font-weight: 600; }
.wheel-desc { flex: 1; min-height: 320px; display: flex; flex-direction: column; justify-content: center; }
.service-detail { display: none; }
.service-detail.active { display: block; animation: fadeUp .4s ease; }
.service-detail h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; color: var(--ink); }
.svc-icon { font-size: 28px; }
.service-detail p { color: var(--body-text); line-height: 1.8; margin-bottom: 20px; font-size: 15px; }
.service-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }

/* HOW WE HELP */
.how-help-section { background: var(--surface2); }
.how-help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.how-help-content p { color: var(--body-text); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
.help-points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.help-point {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px;
  background: var(--card-bg); border-radius: 12px; border-left: 3px solid var(--accent);
  transition: all .3s; box-shadow: var(--shadow);
}
.help-point:hover { border-color: var(--blue); background: var(--blue-light); transform: translateX(4px); }
.hp-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.1), rgba(4, 65, 130, 0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--accent); flex-shrink: 0;
}
.hp-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--ink); }
.hp-text p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 0; }

/* VIDEO PANEL */
.video-panel {
  border-radius: 20px; overflow: hidden;
  background: var(--card-bg); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.video-placeholder {
  width: 100%; aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--surface3), var(--surface2));
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px; cursor: pointer;
  position: relative; overflow: hidden;
}
.video-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(10, 102, 194, 0.08), transparent);
}
.play-btn {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; transition: all .3s;
  box-shadow: 0 0 30px rgba(10, 102, 194, 0.4); z-index: 1;
}
.play-btn:hover { transform: scale(1.12); box-shadow: 0 0 50px rgba(10, 102, 194, 0.6); }
.video-placeholder span { font-size: 13px; color: var(--muted); z-index: 1; }
#mainVideo { width: 100%; display: none; max-height: 360px; object-fit: cover; }
.video-controls-bar {
  padding: 14px 16px; background: var(--surface);
  border-top: 1px solid var(--border);
  display: none; align-items: center; gap: 12px;
}
.vc-btn { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 15px; padding: 4px 8px; border-radius: 6px; transition: all .2s; display: flex; align-items: center; }
.vc-btn:hover { color: var(--accent); background: rgba(10, 102, 194, 0.08); }
.vc-progress { flex: 1; height: 4px; background: var(--border); border-radius: 2px; cursor: pointer; position: relative; }
.vc-progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--blue)); border-radius: 2px; width: 0%; pointer-events: none; }
.vc-time { font-size: 11px; color: var(--muted); white-space: nowrap; font-family: monospace; }
.vc-vol { width: 64px; height: 4px; background: var(--border); border-radius: 2px; cursor: pointer; }
.vc-vol-fill { height: 100%; background: var(--blue); border-radius: 2px; width: 80%; pointer-events: none; }
.video-label { padding: 12px 16px; font-size: 12px; color: var(--muted); text-align: center; border-top: 1px solid var(--border); background: var(--surface); }
.video-label span { color: var(--accent2); font-weight: 600; }

/* WHAT WE DO */
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.what-card {
  padding: 32px 28px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 16px;
  transition: all .3s; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.what-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.what-card:hover { transform: translateY(-6px); border-color: rgba(10, 102, 194, 0.2); box-shadow: var(--shadow-md); }
.what-card:hover::after { transform: scaleX(1); }
.what-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.1), rgba(4, 65, 130, 0.1));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent2); margin-bottom: 20px;
}
.what-card h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.what-card p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.arrow-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent2); font-size: 13px; font-weight: 600; text-decoration: none; transition: gap .2s; }
.arrow-link:hover { gap: 14px; }

/* RECRUITERS */
.recruiters-section { background: var(--surface); padding: 80px 0; }
.recruiters-marquee { overflow: hidden; margin-top: 40px; }
.rec-track { display: flex; animation: tickerScroll 25s linear infinite; white-space: nowrap; }
.rec-logo {
  display: inline-flex; align-items: center; padding: 12px 28px;
  font-size: 15px; font-weight: 600; color: var(--muted);
  border-right: 1px solid var(--border); transition: color .2s; cursor: default; white-space: nowrap;
}
.rec-logo:hover { color: var(--accent2); }

/* VISITOR */
.visitor-section {
  background: var(--surface2); padding: 40px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.visitor-inner { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.visitor-block {
  display: flex; align-items: center; gap: 14px; padding: 16px 24px;
  background: var(--card-bg); border-radius: 12px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.vis-dot { width: 12px; height: 12px; background: var(--green); border-radius: 50%; animation: pulse 1s infinite; }
.vis-num {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.vis-lbl { font-size: 12px; color: var(--muted); }
.con,.con a{
  color: var(--card-bg)!important;
}
/* DUAL CTA */
.dual-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cta-card { padding: 48px; border-radius: 20px; border: 1.5px solid; transition: all .3s; }
.cta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cta-card.seeker {
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.05), rgba(10, 102, 194, 0.02));
  border-color: rgba(10, 102, 194, 0.25);
}
.cta-card.employer {
  background: linear-gradient(135deg, rgba(4, 65, 130, 0.05), rgba(4, 65, 130, 0.02));
  border-color: rgba(4, 65, 130, 0.25);
}
.cta-card .emoji { font-size: 48px; margin-bottom: 16px; }
.cta-card h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.cta-card p { color: var(--body-text); line-height: 1.7; margin-bottom: 24px; }
.cta-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--body-text); margin-bottom: 8px; }
.cta-check i { color: var(--green); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 28px; color: var(--ink); }
.contact-item { display: flex; gap: 16px; margin-bottom: 20px; }
.ci-icon {
  width: 44px; height: 44px; background: rgba(241, 237, 237, 0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--blue-light); font-size: 16px; flex-shrink: 0;
}
.ci-text h5 { font-size: 13px; font-weight: 600; margin-bottom: 4px; color: var(--accent2); }
.ci-text p, .ci-text a { font-size: 14px; color: var(--body-text); text-decoration: none; line-height: 1.6; }
.ci-text a:hover { color: var(--accent2); }
.contact-form {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  color: var(--body-text); font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border .2s; resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: #FFFFFF; box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.08); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--card-bg); color: var(--body-text); }

/* FOOTER */
.footer { background: var(--ink); border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { color: rgba(255, 255, 255, 0.65); font-size: 14px; line-height: 1.8; max-width: 280px; margin-top: 16px; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px; background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.65); text-decoration: none;
  transition: all .2s; font-size: 14px;
}
.social-link:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent3); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 14px; transition: all .2s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-col ul li a::before { content: '›'; color: var(--accent3); font-size: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 13px; }
.made-with { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.made-with i { color: #EF4444; animation: heartbeat 1s infinite; }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: all .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* News Count Badge */
.news-count-badge {
  display: inline-block; padding: 4px 12px;
  background: rgba(10, 102, 194, 0.1); border-radius: 20px;
  font-size: 12px; color: var(--accent2); border: 1px solid rgba(10, 102, 194, 0.2);
}

/* Detail Page Content Styling */
.news-detail-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.news-detail-content a:hover { color: var(--accent2); }
.news-detail-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.news-detail-content table th,
.news-detail-content table td { padding: 10px 15px; border: 1px solid var(--border); color: var(--body-text); }
.news-detail-content table th { background: var(--surface2); font-weight: 600; color: var(--ink); }

/* Form Message Styling */
#formMsg { margin-top: 16px; padding: 10px; border-radius: 8px; font-size: 14px; text-align: center; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .navbar { padding: 0 24px; }
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .about-strip, .how-help-grid, .news-main-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-ring { width: 240px; height: 240px; }
  .about-ring-inner { width: 180px; height: 180px; }
  .wheel-container { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dual-cta { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .scroll-hint { display: none; }
  .what-grid { grid-template-columns: 1fr; }
  .ach-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wheel-wrap { width: 300px; height: 300px; flex: none; }
  .visitor-block { min-width: 100%; }
  .news-detail-title { font-size: 24px; }
  .news-detail-meta { flex-direction: column; gap: 6px; }
  .news-detail-content { font-size: 15px; }
  .documents-list { flex-direction: column; }
  .document-item { width: 100%; justify-content: center; }
}