/* =============================================
   EIBO CAREER HUB – GLOBAL STYLESHEET
   Design: Pure Black + Electric Blue + Orange
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS CUSTOM PROPERTIES (Design Tokens) ---- */
:root {
  /* Brand Colors – TRUE BLACK BASE */
  --eibo-navy:       #000000;   /* pure black page background */
  --eibo-dark:       #080808;   /* section alternates */
  --eibo-card:       #0d0d0d;   /* card surfaces */
  --eibo-card-2:     #111111;   /* card variant */
  --eibo-blue:       #1e90ff;   /* vivid electric blue */
  --eibo-blue-light: #60b4ff;   /* lighter blue for text */
  --eibo-cyan:       #00cfff;   /* bright cyan accent */
  --eibo-orange:     #f97316;
  --eibo-orange-2:   #fb923c;
  --eibo-green:      #22c55e;
  --eibo-purple:     #7c3aed;
  --eibo-teal:       #0ea5e9;

  /* Text */
  --text-white:   #ffffff;
  --text-light:   #e8edf5;
  --text-muted:   #8a9ab5;
  --text-faint:   #3d4a60;

  /* Gradients */
  --grad-hero:    linear-gradient(160deg, #000000 0%, #040812 60%, #040f22 100%);
  --grad-blue:    linear-gradient(135deg, #1e90ff 0%, #00cfff 100%);
  --grad-orange:  linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  --grad-card:    linear-gradient(135deg, rgba(30,144,255,0.07) 0%, rgba(0,207,255,0.04) 100%);

  /* Shadows */
  --shadow-blue:  0 0 40px rgba(30,144,255,0.25);
  --shadow-glow:  0 0 70px rgba(0,207,255,0.18);
  --shadow-card:  0 4px 40px rgba(0,0,0,0.7);

  /* Border */
  --border-glass: 1px solid rgba(255,255,255,0.06);
  --border-blue:  1px solid rgba(30,144,255,0.35);

  /* Border Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: #000000;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: var(--font-body); outline: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 90px 0; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-white); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--eibo-cyan);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title span {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-gradient {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-orange {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 4px 24px rgba(26,115,232,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,115,232,0.5);
}

.btn-orange {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: 0 4px 24px rgba(249,115,22,0.35);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--eibo-cyan);
  color: var(--eibo-cyan);
  box-shadow: 0 0 20px rgba(0,212,255,0.15);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* ---- GLASS CARD ---- */
.glass-card {
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(30,144,255,0.35);
  box-shadow: 0 0 40px rgba(30,144,255,0.18), 0 8px 40px rgba(0,0,0,0.6);
  transform: translateY(-4px);
}

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-blue  { background: rgba(26,115,232,0.15); color: var(--eibo-blue-light); border: 1px solid rgba(26,115,232,0.25); }
.badge-orange{ background: rgba(249,115,22,0.15); color: var(--eibo-orange-2); border: 1px solid rgba(249,115,22,0.25); }
.badge-green { background: rgba(34,197,94,0.12);  color: var(--eibo-green); border: 1px solid rgba(34,197,94,0.25); }
.badge-cyan  { background: rgba(0,212,255,0.1);   color: var(--eibo-cyan); border: 1px solid rgba(0,212,255,0.2); }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(30,144,255,0.12);
  box-shadow: 0 4px 40px rgba(0,0,0,0.8);
}

/* Top bar */
.nav-topbar {
  background: var(--grad-blue);
  padding: 7px 0;
  font-size: 0.8rem;
  font-weight: 500;
}
.nav-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-topbar a {
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}
.nav-topbar a:hover { color: #fff; }
.nav-topbar .topbar-left, .nav-topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-topbar i { margin-right: 5px; }

/* Main navbar */
.nav-main {
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
}
.nav-logo img {
  height: 32px;
  width: auto;
  border-radius: 4px;
}
.nav-logo-text {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.58rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-white);
  background: rgba(255,255,255,0.05);
}

/* Dropdown */
.nav-item-dropdown {
  position: relative;
}
.nav-item-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: rgba(5, 5, 8, 0.99);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(30,144,255,0.15);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: 0 8px 50px rgba(0,0,0,0.8);
  z-index: 100;
}
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-menu a:hover {
  color: var(--eibo-cyan);
  background: rgba(0,212,255,0.06);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #050508;
  z-index: 999;
  padding: 100px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 16px 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--eibo-cyan); padding-left: 8px; }
.nav-mobile .mobile-cta { margin-top: 32px; }
.nav-mobile .mobile-cta .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

/* ---- FLOATING WHATSAPP ---- */
#whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: var(--transition);
  animation: floatPulse 2s infinite;
}
#whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}
#whatsapp-float svg { width: 28px; height: 28px; fill: white; }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ---- TICKER / MARQUEE ---- */
.ticker-wrap {
  overflow: hidden;
  background: rgba(30,144,255,0.06);
  border-top: 1px solid rgba(30,144,255,0.18);
  border-bottom: 1px solid rgba(30,144,255,0.18);
  padding: 12px 0;
}
.ticker {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 30px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
}
.ticker-item .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--eibo-green);
  flex-shrink: 0;
}
.ticker-item .name { color: var(--text-white); }
.ticker-item .company { color: var(--eibo-cyan); }
.ticker-item .pkg { color: var(--eibo-orange-2); font-weight: 700; }
.ticker-sep { color: rgba(255,255,255,0.15); margin: 0 8px; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- STATS BAR ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-glass);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  background: rgba(6, 6, 10, 0.85);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.stat-item:hover { background: rgba(30,144,255,0.08); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- FOOTER ---- */
footer {
  background: #030303;
  border-top: 1px solid rgba(30,144,255,0.1);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
}

.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-btn:hover {
  background: var(--eibo-blue);
  border-color: var(--eibo-blue);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--eibo-cyan); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer-contact-item i {
  color: var(--eibo-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-faint);
}
.footer-bottom a { color: var(--eibo-cyan); }

/* ---- SCROLL REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- DIVIDER ---- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(30,144,255,0.4) 50%, transparent 100%);
  margin: 0;
}

/* ---- GLOW DOTS BACKGROUND ---- */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.bg-glow-1 {
  width: 500px; height: 500px;
  background: rgba(30,144,255,0.10);
  top: -150px; left: -150px;
}
.bg-glow-2 {
  width: 350px; height: 350px;
  background: rgba(0,207,255,0.07);
  bottom: -80px; right: -80px;
}
.bg-glow-3 {
  width: 300px; height: 300px;
  background: rgba(249,115,22,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1150px) {
  .nav-inner {
    padding: 14px 16px;
  }
  .nav-logo {
    gap: 2px;
  }
  .nav-logo img {
    height: 28px;
  }
  .nav-logo-text {
    font-size: 0.78rem;
  }
  .nav-logo-text span {
    font-size: 0.52rem;
  }
  .nav-links {
    gap: 2px;
  }
  .nav-links a {
    padding: 6px 10px;
    font-size: 0.85rem;
  }
  .nav-cta {
    gap: 8px;
  }
  .nav-cta .btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1024px) {
  .nav-cta .btn-outline {
    display: none; /* Hide Free Demo on medium laptop/tablet screens to prevent navbar crowding */
  }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-topbar { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-cta .btn-outline { display: none; }
  .nav-topbar { display: none; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; }
}
