/* =============================================================
   HEHE Manpower — ULTRA-PREMIUM MODERN DESIGN SYSTEM v5.0
   Singapore MOM Licensed Recruitment Agency Portal
   Deep Navy · Royal Blue · Amber Gold · Glassmorphic
   ============================================================= */

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

/* ============================================================
   1. DESIGN TOKENS & CSS VARIABLES
   ============================================================ */
:root {
  /* Logo Matched Royal Sapphire Blue & Midnight Navy */
  --brand-navy-dark: #030816;
  --brand-navy: #06122e;
  --brand-navy-light: #0a1c47;
  --brand-navy-surface: #10265c;
  
  --brand-blue: #085ad6;
  --brand-blue-hover: #0543a4;
  --brand-blue-dark: #00378b;
  --brand-blue-light: #1d72f2;
  --brand-blue-soft: rgba(8, 90, 214, 0.08);
  --brand-cyan: #0284c7;
  --brand-cyan-light: #38bdf8;
  
  /* Logo Matched Metallic 3D Gold Palette */
  --brand-gold: #cfa030;
  --brand-gold-hover: #b8860b;
  --brand-gold-dark: #996d0e;
  --brand-gold-light: #e5b73e;
  --brand-gold-shimmer: #fedb72;
  --brand-gold-soft: rgba(207, 160, 48, 0.12);
  --brand-gold-surface: #fffbeb;
  --brand-orange: #d97706;
  
  --brand-green: #10b981;
  --brand-green-soft: rgba(16, 185, 129, 0.12);

  /* Surfaces & Backgrounds */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;
  
  /* Text Colors */
  --text-main: #06112c;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --text-white-subtle: rgba(255, 255, 255, 0.85);

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #030816 0%, #06122e 50%, #0b2561 100%);
  --grad-primary: linear-gradient(135deg, #085ad6 0%, #003e9e 100%);
  --grad-gold: linear-gradient(135deg, #fae28f 0%, #e2b339 35%, #b8860b 70%, #8c6308 100%);
  --grad-gold-metallic: linear-gradient(135deg, #fedb72 0%, #e5b73e 30%, #cfa030 65%, #996d0e 100%);
  --grad-blue-metallic: linear-gradient(135deg, #38bdf8 0%, #085ad6 50%, #00378b 100%);
  --grad-cta: linear-gradient(135deg, #030816 0%, #081a42 50%, #0f358a 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(6, 17, 44, 0.04);
  --shadow-md: 0 6px 20px rgba(6, 17, 44, 0.07);
  --shadow-lg: 0 12px 36px rgba(6, 17, 44, 0.10);
  --shadow-xl: 0 20px 50px rgba(6, 17, 44, 0.14);
  --shadow-glow-blue: 0 8px 28px rgba(8, 90, 214, 0.32);
  --shadow-glow-gold: 0 8px 28px rgba(207, 160, 48, 0.35);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 9999px;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   2. GLOBAL RESETS & BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: var(--brand-blue);
  transition: all var(--transition);
}

a:hover {
  color: var(--brand-blue-hover);
}

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

/* Section Spacing Utilities */
.section-py {
  padding: 50px 0;
}

.section-py-sm {
  padding: 32px 0;
}

.bg-brand-subtle {
  background-color: var(--bg-subtle);
}

.max-w-700 {
  max-width: 700px;
}

.text-gold {
  color: var(--brand-gold) !important;
}

.text-gradient-gold {
  background: var(--grad-gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-blue {
  background: var(--grad-blue-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.btn-gold-custom {
  background: var(--grad-gold-metallic);
  color: #030816 !important;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  box-shadow: var(--shadow-glow-gold);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(207, 160, 48, 0.45);
  color: #000000 !important;
}

/* ============================================================
   3. TOPBAR ANNOUNCEMENT STRIP
   ============================================================ */
.topbar-announcement {
  background: var(--brand-navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-white-subtle);
  font-size: 0.82rem;
  padding: 8px 0;
  z-index: 1040;
  position: relative;
}

.topbar-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(207, 160, 48, 0.12);
  border: 1px solid rgba(207, 160, 48, 0.4);
  color: var(--brand-gold-light);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.topbar-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.topbar-dot {
  width: 5px;
  height: 5px;
  background: var(--brand-gold);
  border-radius: 50%;
  display: inline-block;
}

/* Running Text (Marquee Ticker) */
.topbar-marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  max-width: 520px;
}

.topbar-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeRunning 22s linear infinite;
  gap: 36px;
}

.topbar-marquee-track:hover {
  animation-play-state: paused;
  cursor: pointer;
}

.topbar-marquee-content {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.015em;
}

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

.topbar-contact-links {
  font-size: 0.82rem;
  white-space: nowrap !important;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  white-space: nowrap !important;
  transition: color var(--transition-fast);
}

.topbar-link:hover {
  color: #ffffff !important;
}

.topbar-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
}

.topbar-link-whatsapp {
  color: #4ade80 !important;
  font-weight: 600;
  background: rgba(74, 222, 128, 0.12);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(74, 222, 128, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  line-height: 1;
}

.topbar-link-whatsapp:hover {
  background: rgba(74, 222, 128, 0.25);
  color: #86efac !important;
}

.topbar-online-indicator {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #22c55e;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ============================================================
   4. MAIN NAVBAR & HEADER
   ============================================================ */
.main-navbar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  padding: 12px 0;
  transition: all var(--transition);
  z-index: 1030;
}

.main-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 8px 0;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  border-bottom-color: transparent;
}

/* Brand Logo */
.brand-logo {
  height: 108px;
  width: auto;
  max-width: 250px;
  max-height: 92px;
  object-fit: contain;
  transition: transform var(--transition);
}

.main-navbar.scrolled .brand-logo {
  height: 42px;
}

/* Navbar Nav Links */
.navbar-nav {
  gap: 2px;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e293b !important;
  padding: 4px 8px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--brand-blue) !important;
  background-color: rgba(37, 99, 235, 0.06);
}

.navbar-nav .nav-link.active {
  color: var(--brand-blue) !important;
  background-color: rgba(37, 99, 235, 0.08);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--brand-blue);
  border-radius: var(--radius-pill);
}

.nav-chevron {
  font-size: 0.72rem;
  transition: transform var(--transition-fast);
  color: var(--text-muted);
}

.nav-item.dropdown:hover .nav-chevron {
  transform: rotate(180deg);
  color: var(--brand-blue);
}

/* Modern Floating Dropdown Menu */
.modern-dropdown-menu {
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.05) !important;
  padding: 10px !important;
  min-width: 270px;
  background: #ffffff !important;
  margin-top: 8px !important;
  animation: dropdownSlideIn 0.22s var(--transition);
}

@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modern-dropdown-menu .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 9px 14px !important;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body) !important;
  display: flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.modern-dropdown-menu .dropdown-item:hover {
  background-color: rgba(37, 99, 235, 0.08) !important;
  color: var(--brand-blue) !important;
  padding-left: 18px !important;
}

.dropdown-item-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px !important;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
}

.dropdown-item-head:hover {
  background: rgba(37, 99, 235, 0.1) !important;
}

.dropdown-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bg-blue-soft {
  background: rgba(37, 99, 235, 0.12);
}

.dropdown-item-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.2;
}

.dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Nav CTA Button */
.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-hover) 100%);
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow-glow-blue);
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-nav-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.4);
  color: #ffffff !important;
}

.btn-nav-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
  margin-left: -2px;
}

.btn-nav-primary:hover .btn-arrow {
  transform: translateX(3px);
}

/* Mobile Quick WhatsApp Button in Nav */
.mobile-quick-wa-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Modern Hamburger Button */
.modern-hamburger {
  background: rgba(15, 23, 42, 0.05);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-box {
  width: 22px;
  height: 16px;
  position: relative;
  display: inline-block;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 22px;
  height: 2.2px;
  background-color: var(--brand-navy);
  border-radius: 4px;
  position: absolute;
  transition: all var(--transition-fast);
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before {
  content: '';
  top: -6px;
}

.hamburger-inner::after {
  content: '';
  bottom: -6px;
}

/* ============================================================
   5. HERO SECTION — LUXURY DESIGN
   ============================================================ */
.hero-section {
  background: var(--grad-hero);
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 50px 0 42px;
  position: relative;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -120px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, transparent 65%);
  pointer-events: none;
  animation: orbFloat 14s infinite alternate ease-in-out;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, transparent 65%);
  pointer-events: none;
  animation: orbFloat2 16s infinite alternate-reverse ease-in-out;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 60px) scale(1.12); }
}

@keyframes orbFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -50px) scale(1.1); }
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--brand-gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 540px;
}

/* Hero Custom Buttons */
.btn-gold-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff !important;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow-glow-gold);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-gold-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.45);
  color: #ffffff !important;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand-blue) !important;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid rgba(37, 99, 235, 0.35);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: var(--brand-blue);
  color: #ffffff !important;
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-hover) 100%);
  color: #ffffff !important;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow-glow-blue);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4);
  color: #ffffff !important;
}

/* Hero Trust Bar */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* Right — Glass Consultation Card */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}

.hero-glass-input {
  background: rgba(255, 255, 255, 0.09) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  border-radius: var(--radius-md) !important;
  padding: 11px 16px !important;
  font-size: 0.88rem !important;
  font-family: var(--font-body) !important;
  transition: all var(--transition-fast) !important;
}

.hero-glass-input:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: var(--brand-gold-light) !important;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.22) !important;
  outline: none !important;
}

.hero-glass-input::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* ============================================================
   6. STATS STRIP
   ============================================================ */
.stats-strip {
  padding: 0 0 15px;
  position: relative;
  z-index: 10;
}

.stats-container-card {
  background: linear-gradient(135deg, #06122e 0%, #0c1b47 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  box-shadow: 0 20px 50px rgba(6, 18, 46, 0.3);
  margin-top: -30px;
  position: relative;
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-number-glow {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
  margin-bottom: 6px;
}

.stat-label-text {
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-sub-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   7. SECTION HEADINGS & BADGES
   ============================================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--brand-blue);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  line-height: 1.22;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   8. ABOUT SECTION
   ============================================================ */
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
  transform: scale(1.04);
}

.about-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(6, 18, 46, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
}

/* ============================================================
   9. SERVICE CARDS
   ============================================================ */
.service-card-premium {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.service-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.25);
}

.service-card-premium:hover::before {
  transform: scaleX(1);
}

.service-card-header {
  padding: 28px 26px 0;
}

.service-icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.08);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: all var(--transition);
}

.service-card-premium:hover .service-icon-bubble {
  background: var(--grad-primary);
  color: #ffffff;
  transform: scale(1.08) rotate(-6deg);
  box-shadow: var(--shadow-glow-blue);
}

.service-card-body {
  padding: 12px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ============================================================
   10. INDUSTRY CARDS (PHOTO & OVERLAY FIX)
   ============================================================ */
.industry-card-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 340px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.industry-card-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.industry-card-photo:hover img {
  transform: scale(1.08);
}

.industry-card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 46, 0.05) 0%, rgba(6, 18, 46, 0.5) 45%, rgba(6, 18, 46, 0.96) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  transition: background var(--transition);
}

.industry-card-photo:hover .industry-card-content {
  background: linear-gradient(180deg, rgba(6, 18, 46, 0.15) 0%, rgba(6, 18, 46, 0.65) 40%, rgba(6, 18, 46, 0.98) 100%);
}

.industry-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.industry-card-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Frosted glass role badge */
.industry-role-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  font-size: 0.75rem !important;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

/* ============================================================
   11. PROCESS STEP CARDS
   ============================================================ */
.process-step-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.process-step-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.process-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.process-step-card:hover::after {
  transform: scaleX(1);
}

.process-step-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-glow-blue);
}

/* ============================================================
   12. WHY US CARDS
   ============================================================ */
.why-card-premium {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.why-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.why-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.why-card-premium:hover::before {
  transform: scaleX(1);
}

.why-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.1);
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: all var(--transition);
}

.why-card-premium:hover .why-icon-box {
  background: var(--grad-gold);
  color: #ffffff;
  transform: scale(1.08) rotate(-6deg);
  box-shadow: var(--shadow-glow-gold);
}

/* ============================================================
   13. CTA BANNER
   ============================================================ */
.cta-banner-premium {
  background: linear-gradient(135deg, #06122e 0%, #0d2258 60%, #15327a 100%);
  border-radius: var(--radius-xl);
  padding: 50px 45px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(6, 18, 46, 0.3);
}

.cta-banner-premium::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

/* ============================================================
   14. JOB CARDS
   ============================================================ */
.job-card-premium {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.job-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.job-pass-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 235, 0.08);
  color: var(--brand-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.job-salary-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   15. TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card-premium {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.testimonial-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.star-rating {
  display: flex;
  gap: 3px;
}

.star-rating i {
  color: var(--brand-gold);
  font-size: 0.92rem;
}

/* ============================================================
   16. BREADCRUMB & PAGE HERO BANNER
   ============================================================ */
.page-hero-banner {
  background: var(--grad-hero);
  padding: 55px 0 50px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.breadcrumb-item a {
  color: var(--brand-gold-light) !important;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #ffffff !important;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.88rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   17. MAIN FOOTER
   ============================================================ */
.main-footer {
  background: linear-gradient(180deg, #06122e 0%, #030a1a 100%);
  color: rgba(255, 255, 255, 0.65);
  padding: 75px 0 35px;
  position: relative;
  overflow: hidden;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 4px 0;
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--brand-gold-light);
  padding-left: 5px;
}

.footer-link i {
  font-size: 0.72rem;
  transition: all var(--transition-fast);
}

.footer-link:hover i {
  color: var(--brand-gold-light);
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social-btn:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-gold);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 40px 0 24px;
}

.footer-bottom {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   18. FLOATING WHATSAPP BUTTON (SAFE NO-OVERFLOW)
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  z-index: 9990;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}

/* ============================================================
   19. SCROLL REVEAL ANIMATIONS
   ============================================================ */
[data-animate],
[data-animate-children] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}

[data-animate="fade-left"] {
  transform: translateX(-24px);
}

[data-animate="fade-right"] {
  transform: translateX(24px);
}

[data-animate].visible,
[data-animate].is-visible,
[data-animate-children].visible > *,
[data-animate-children].is-visible > * {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

[data-animate-children].visible > *:nth-child(1),
[data-animate-children].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-animate-children].visible > *:nth-child(2),
[data-animate-children].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-animate-children].visible > *:nth-child(3),
[data-animate-children].is-visible > *:nth-child(3) { transition-delay: 0.19s; }
[data-animate-children].visible > *:nth-child(4),
[data-animate-children].is-visible > *:nth-child(4) { transition-delay: 0.26s; }
[data-animate-children].visible > *:nth-child(5),
[data-animate-children].is-visible > *:nth-child(5) { transition-delay: 0.33s; }
[data-animate-children].visible > *:nth-child(6),
[data-animate-children].is-visible > *:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   20. RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 991px) {
  .hero-section {
    padding: 70px 0 55px;
    min-height: auto;
  }

  .hero-glass-card {
    padding: 26px 22px;
    margin-top: 35px;
  }

  .section-py {
    padding: 60px 0;
  }

  .stats-container-card {
    margin-top: 0;
    border-radius: var(--radius-lg);
    padding: 35px 20px;
  }

  .cta-banner-premium {
    padding: 35px 25px;
  }

  /* Mobile Navbar Menu styling */
  .navbar-collapse {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 18px;
    margin-top: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.9);
  }

  .navbar-nav .nav-link {
    padding: 10px 14px !important;
    border-radius: var(--radius-sm);
  }

  .navbar-nav .nav-link.active::after {
    display: none;
  }

  .navbar-nav .nav-link.active {
    background: rgba(37, 99, 235, 0.1);
    color: var(--brand-blue) !important;
    font-weight: 700;
  }

  .nav-cta-wrapper {
    margin-top: 15px;
  }

  .nav-cta-wrapper .btn-nav-primary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
  }
}