/* ==============================================================================
   GK MANPOWER AGENCY - GLOBAL DESIGN SYSTEM & FLUID GLASSMORPHISM
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Outfit:wght@400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');

:root {
  /* Color Tokens - Blue Enterprise Palette */
  --bg-canvas: #f4f7fb;
  --bg-canvas-subtle: #edf2f8;
  --brand-primary: #0052cc;
  --brand-primary-light: #2563eb;
  --brand-primary-rgb: 0, 82, 204;
  --brand-accent: #0284c7;
  --brand-accent-light: #38bdf8;
  --brand-accent-rgb: 2, 132, 199;
  
  --brand-amber: #d97706;
  --brand-rose: #e11d48;
  --brand-emerald: #0052cc;

  /* Glassmorphism System */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-hover: rgba(255, 255, 255, 0.88);
  --glass-bg-card: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-border-subtle: rgba(226, 232, 240, 0.7);
  --glass-shadow: 0 12px 36px 0 rgba(31, 38, 135, 0.08);
  --glass-shadow-lg: 0 20px 48px -10px rgba(15, 23, 42, 0.12);
  --glass-blur: blur(20px);
  --glass-blur-sm: blur(12px);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  --text-inverse: #ffffff;

  /* Layout & Geometry */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --dock-height: 76px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-canvas);
  background-image: 
    radial-gradient(at 0% 0%, rgba(0, 82, 204, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(2, 132, 199, 0.08) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(56, 189, 248, 0.06) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 120px; /* Space for macOS dock */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(241, 245, 249, 0.8);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-primary);
}

/* Base Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Animated Ambient Glow Spheres */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
  animation: floatAmbient 18s ease-in-out infinite alternate;
}
.ambient-glow-1 {
  width: 450px;
  height: 450px;
  background: rgba(0, 82, 204, 0.14);
  top: 5%;
  left: -100px;
}
.ambient-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(2, 132, 199, 0.12);
  top: 40%;
  right: -150px;
  animation-delay: -6s;
}
.ambient-glow-3 {
  width: 350px;
  height: 350px;
  background: rgba(217, 119, 6, 0.08);
  bottom: 10%;
  left: 20%;
  animation-delay: -12s;
}

@keyframes floatAmbient {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.08) rotate(10deg); }
  100% { transform: translateY(30px) scale(0.95) rotate(-10deg); }
}

/* ==============================================================================
   FLOATING DYNAMIC ISLAND HEADER
   ============================================================================== */
.dynamic-island-header {
  position: sticky;
  top: 18px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}

.island-capsule {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: 0 16px 40px -10px rgba(0, 82, 204, 0.16), var(--glass-shadow);
  border-radius: var(--radius-pill);
  padding: 12px 28px 12px 20px;
  max-width: 1240px;
  width: 100%;
  min-height: 80px;
  transition: var(--transition-smooth);
}

.island-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.island-brand:hover {
  transform: translateY(-2px);
}
.island-brand:hover .island-logo-img {
  transform: scale(1.05) rotate(2deg);
}

.island-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 245, 249, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.12);
  padding: 6px;
  transition: var(--transition-smooth);
}
.island-brand:hover .island-logo-wrap {
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.22);
  border-color: rgba(0, 82, 204, 0.3);
}

.island-logo-img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 82, 204, 0.2));
  transition: var(--transition-bounce);
}

.island-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 1.2;
}

.island-company-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text-main);
  transition: var(--transition-smooth);
  white-space: nowrap;
}
.island-brand:hover .island-company-name {
  color: var(--brand-primary);
}

.island-company-slogan {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  white-space: nowrap;
}

.island-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  white-space: nowrap;
}

.status-pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--brand-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7);
  animation: pulseBlue 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseBlue {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(2, 132, 199, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

.island-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.island-portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(0, 82, 204, 0.28);
  transition: var(--transition-smooth);
  white-space: nowrap;
}
.island-portal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.38);
  color: #ffffff;
}

/* ==============================================================================
   macOS FLOATING DOCK (BOTTOM NAVIGATION) - FULL WIDTH LIQUID GLASS BAR STUCK TO BOTTOM
   ============================================================================== */
.macos-dock-wrapper {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 84px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 99999 !important;
  pointer-events: none !important;
  padding-bottom: env(safe-area-inset-bottom, 0) !important;
}

.macos-dock-wrapper::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(28px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(190%) !important;
  border-top: 1.5px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 -8px 24px rgba(0, 82, 204, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.macos-dock {
  pointer-events: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.96), rgba(2, 132, 199, 0.94)) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 16px 36px -6px rgba(0, 82, 204, 0.45), 0 6px 18px rgba(0, 0, 0, 0.12) !important;
  border-radius: var(--radius-pill) !important;
  padding: 6px 16px !important;
  position: relative !important;
  transform: translate3d(0, 0, 0) !important;
}

.dock-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1.5px solid rgba(255, 255, 255, 1) !important;
  color: var(--brand-primary) !important;
  font-size: 1.45rem !important;
  text-decoration: none !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease !important;
  position: relative !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.dock-item i {
  font-size: 1.45rem !important;
  color: inherit !important;
  line-height: 1 !important;
  display: inline-block !important;
}

.dock-item .dock-tooltip {
  position: absolute !important;
  top: -40px !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(6px) !important;
  background: #0f172a !important;
  color: #ffffff !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: var(--radius-pill) !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.25s ease, transform 0.25s ease !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3) !important;
  z-index: 100000 !important;
}

.dock-item:hover {
  transform: scale(1.18) translateY(-6px) !important;
  background: #ffffff !important;
  color: var(--brand-primary) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2) !important;
}

.dock-item:hover .dock-tooltip {
  opacity: 1 !important;
  transform: translateX(-50%) translateY(0) !important;
}

.dock-item.active {
  background: #ffffff !important;
  color: var(--brand-primary) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
  transform: scale(1.08) !important;
}

.dock-divider {
  width: 1px !important;
  height: 28px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  margin: 0 4px !important;
}

.dock-whatsapp-item {
  background: #25d366 !important;
  color: #ffffff !important;
  border-color: #25d366 !important;
}

.dock-whatsapp-item:hover {
  background: #20ba5a !important;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .dock-item .dock-tooltip {
    display: none !important;
  }
}

.dock-logo-item {
  padding: 4px;
}

.dock-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.dock-logo-item:hover .dock-logo-img {
  transform: scale(1.12);
}

.dock-divider {
  width: 1.5px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 2px;
}

/* Mobile Flyout Drawer Sheet */
.mobile-flyout-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  padding: 24px 20px 40px 20px;
  z-index: 1050;
  transform: translateY(105%);
  transition: var(--transition-bounce);
}
.mobile-flyout-sheet.open {
  transform: translateY(0);
}
.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.sheet-close-btn {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-main);
  cursor: pointer;
}
.sheet-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.sheet-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--text-main);
}
.sheet-menu-item i {
  font-size: 1.4rem;
  color: var(--brand-primary);
}

/* ==============================================================================
   LAYOUT & REUSABLE CONTAINERS
   ============================================================================== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-wrapper {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 82, 204, 0.08);
  color: var(--brand-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  border: 1px solid rgba(0, 82, 204, 0.18);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Glass Card Component */
.glass-card {
  background: var(--glass-bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, border-color 0.35s ease;
}
.glass-card:hover {
  background: var(--glass-bg-hover);
  box-shadow: 0 20px 40px rgba(0, 82, 204, 0.12), var(--glass-shadow-lg);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 1);
}

/* ==============================================================================
   RAPID TRUST BADGES BAR
   ============================================================================== */
.trust-badges-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 36px -10px rgba(0, 82, 204, 0.1), var(--glass-shadow);
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  margin-top: 36px;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}
.trust-badge-item .badge-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(2, 132, 199, 0.15));
  border: 1px solid rgba(0, 82, 204, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* ==============================================================================
   RESPONSIVE CAROUSEL TRACKS & CSS MOMENTUM SCROLL-SNAP
   ============================================================================== */

/* 1. Desktop View (min-width: 769px) */
.specializations-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
  width: 100%;
}

.vacancies-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  width: 100%;
  align-items: stretch;
}

.clients-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
}

.carousel-dots-wrapper {
  display: none !important;
}

.vertical-card,
.specialization-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-xl);
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.client-logo-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1.5px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: var(--radius-xl) !important;
  padding: 24px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  text-align: left !important;
  box-shadow: 0 10px 28px -6px rgba(0, 82, 204, 0.08) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
  min-height: 120px !important;
  position: relative !important;
  overflow: hidden !important;
}

.client-logo-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 42px -8px rgba(0, 82, 204, 0.2) !important;
  border-color: rgba(0, 82, 204, 0.35) !important;
}

.client-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.client-icon-capsule {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(2, 132, 199, 0.16));
  border: 1.5px solid rgba(0, 82, 204, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.client-card-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.client-icon-capsule i {
  font-size: 1.55rem !important;
  color: var(--brand-primary) !important;
  display: inline-block !important;
  line-height: 1 !important;
  transition: color 0.3s ease;
}

.client-logo-card:hover .client-icon-capsule {
  transform: scale(1.1);
  background: var(--brand-primary);
}

.client-logo-card:hover .client-icon-capsule i {
  color: #ffffff !important;
}

.client-info-wrap {
  flex: 1;
  min-width: 0;
}

.client-name-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 3px 0;
  line-height: 1.35;
}

.client-industry-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

.client-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--brand-primary);
  background: rgba(0, 82, 204, 0.06);
  border: 1px solid rgba(0, 82, 204, 0.16);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-top: 10px;
}

/* ==============================================================================
   OUR ENTERPRISE CLIENTS / TRUSTED PARTNER MARQUEE & GRID
   ============================================================================== */
.clients-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Desktop View (min-width: 769px): Multi-Column Grid */
@media (min-width: 769px) {
  .clients-marquee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .clients-track {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 20px !important;
    width: 100% !important;
    animation: none !important;
  }
  .clients-track .client-logo-card.is-clone {
    display: none !important;
  }
}

/* Mobile View (max-width: 768px): Smooth Continuous Infinite Running Marquee */
@media (max-width: 768px) {
  .specializations-track,
  .vacancies-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 1rem !important;
    padding: 0.75rem 1.25rem 2.5rem 1.25rem !important;
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
    scrollbar-width: none !important;
  }

  .specializations-track::-webkit-scrollbar,
  .vacancies-track::-webkit-scrollbar {
    display: none !important;
  }

  .specialization-card {
    flex: 0 0 88% !important;
    max-width: 88% !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
  }

  .vacancy-card {
    flex: 0 0 86% !important;
    max-width: 86% !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
  }

  /* Enterprise Clients Infinite Marquee */
  .clients-marquee-container {
    overflow: hidden !important;
    position: relative !important;
    padding: 10px 0 28px 0 !important;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .clients-track.marquee-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    gap: 16px !important;
    animation: clientsMarqueeScroll 26s linear infinite !important;
    will-change: transform !important;
    overflow: visible !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .clients-track.marquee-track:hover,
  .clients-track.marquee-track:active {
    animation-play-state: paused !important;
  }

  .client-logo-card {
    flex: 0 0 280px !important;
    max-width: 280px !important;
    width: 280px !important;
    min-width: 280px !important;
    scroll-snap-align: none !important;
  }
}

@keyframes clientsMarqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

  /* Safety Margin: clearance from floating bottom navigation dock */
  .vacancies-track,
  .clients-track,
  .specializations-track {
    margin-bottom: 10px !important;
  }

  .carousel-dots-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 24px !important;
    padding: 8px 16px !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.85) !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: 0 4px 14px rgba(0, 82, 204, 0.08) !important;
  }

  .carousel-dots-wrapper .dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 9999px !important;
    background: rgba(148, 163, 184, 0.35) !important; /* Slate 400 translucent */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    border: none !important;
    padding: 0 !important;
    display: inline-block !important;
  }

  .carousel-dots-wrapper .dot.active {
    width: 24px !important;
    background: var(--brand-primary, #0066CC) !important;
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.4) !important;
  }
}

/* ==============================================================================
   MOBILE CAREERS & JOBS APP-LIKE INTERFACE (STICKY CHIPS & BOTTOM DRAWER)
   ============================================================================== */
.mobile-careers-filters {
  position: sticky;
  top: 60px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  scrollbar-width: none;
  margin-bottom: 1.25rem;
}
.mobile-careers-filters::-webkit-scrollbar {
  display: none;
}

.filter-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.85);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.filter-chip-btn:hover,
.filter-chip-btn.active {
  background: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.28);
}

.filter-chip-trigger {
  background: linear-gradient(135deg, #082054, #0052cc);
  color: #ffffff;
  border: none;
}
.filter-chip-trigger:hover {
  background: linear-gradient(135deg, #0052cc, #0284c7);
}

/* Bottom Slide-Over Filter Drawer */
.careers-filter-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 85vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-top: 1.5px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.28);
  z-index: 99999;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.careers-filter-drawer.open {
  transform: translateY(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.drawer-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.drawer-body {
  padding: 22px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-footer {
  padding: 16px 22px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  gap: 12px;
  background: #ffffff;
}

/* Mobile Application Modal Touch Ergonomics */
@media (max-width: 768px) {
  #careers,
  #vacancies {
    padding-bottom: 110px !important;
  }

  .modal-overlay {
    align-items: flex-end !important;
    padding: 0 !important;
  }

  .modal-dialog {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 90vh !important;
    margin: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
    overflow-y: auto !important;
  }

  .modal-dialog .form-input,
  .modal-dialog .form-select,
  .modal-dialog .form-textarea {
    min-height: 48px !important;
    font-size: 0.95rem !important;
    border-radius: 12px !important;
  }

  .vacancy-card .btn {
    min-height: 48px !important;
    border-radius: 12px !important;
    font-size: 0.92rem !important;
    font-weight: 800 !important;
  }
}
.vertical-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0, 82, 204, 0.16);
  border-color: rgba(0, 82, 204, 0.3);
}
.vertical-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vertical-card:hover::before {
  opacity: 1;
}
.vertical-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 82, 204, 0.08);
  color: var(--brand-primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  border: 1px solid rgba(0, 82, 204, 0.15);
}
.vertical-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(2, 132, 199, 0.2));
  border: 1.5px solid rgba(0, 82, 204, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 82, 204, 0.12);
}
.vertical-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}
.vertical-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.vertical-roles-container {
  margin: 16px 0 26px 0;
}
.vertical-roles-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-main);
  margin-bottom: 10px;
}
.vertical-roles-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.role-chip {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(203, 213, 225, 0.85);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.role-chip i {
  color: var(--brand-accent);
  font-size: 0.85rem;
}

/* ==============================================================================
   HOW GK MANPOWER WORKS (TRANSPARENT DEPLOYMENT RAIL - HERO-STYLE GLASS CARD)
   ============================================================================== */
.deployment-rail-section {
  padding: 24px 0 56px 0 !important;
  position: relative;
}

.deployment-rail-card {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 56px 44px;
  text-align: center;
  background: #082054 !important; /* Solid enterprise dark blue background */
  border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 32px 64px -16px rgba(8, 32, 84, 0.5), 0 8px 24px rgba(0, 0, 0, 0.18) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.deployment-rail-card::before,
.deployment-rail-card::after {
  display: none !important;
}

/* Top accent bar */
.deployment-rail-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), #38bdf8, var(--brand-accent));
  z-index: 3;
}

.deployment-rail-card > *:not(.deployment-rail-card-accent) {
  position: relative;
  z-index: 2;
  width: 100%;
}

.deployment-rail-card .deployment-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.deployment-rail-card .section-badge {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.98) !important;
  color: var(--brand-primary) !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.deployment-rail-card .deployment-card-title {
  color: #ffffff !important;
  font-size: clamp(2rem, 3.5vw, 2.85rem) !important;
  font-weight: 900 !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.65) !important;
  margin-bottom: 12px !important;
}

.deployment-rail-card .deployment-card-subtitle {
  color: rgba(255, 255, 255, 0.92) !important;
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5) !important;
}

/* Step Cards Grid inside the Deployment Rail Card */
.deployment-rail-card .process-rail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}

.deployment-rail-card .process-step-card {
  background: rgba(255, 255, 255, 0.90) !important;
  backdrop-filter: blur(24px) saturate(1.8) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.8) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
  border-radius: var(--radius-xl) !important;
  padding: 34px 28px !important;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.9) !important;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.deployment-rail-card .process-step-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 24px 52px -10px rgba(0, 0, 0, 0.38), 0 8px 24px rgba(0, 82, 204, 0.2), inset 0 1px 1px rgba(255, 255, 255, 1) !important;
  border-color: rgba(255, 255, 255, 1) !important;
}

.deployment-rail-card .process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.deployment-rail-card .process-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(2, 132, 199, 0.18));
  border: 1.5px solid rgba(0, 82, 204, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: var(--brand-primary);
  transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease;
}

.deployment-rail-card .process-step-card:hover .process-icon-box {
  transform: scale(1.1);
  background: var(--brand-primary);
  color: #ffffff;
}

.deployment-rail-card .process-number-watermark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(0, 82, 204, 0.18);
  line-height: 1;
}

.deployment-rail-card .process-step-title {
  font-size: 1.32rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.deployment-rail-card .process-step-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .deployment-rail-card {
    padding: 38px 20px;
  }
  .deployment-rail-card .process-rail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==============================================================================
   PARALLAX MOTION ENGINE CLASSES
   ============================================================================== */
.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), #0284c7);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 82, 204, 0.38);
  color: #ffffff;
}

.btn-accent {
  background: linear-gradient(135deg, var(--brand-accent), #0284c7);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.28);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(2, 132, 199, 0.38);
  color: #ffffff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.btn-glass:hover {
  background: #ffffff;
  transform: translateY(-2px);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* ==============================================================================
   HERO SECTION â CARD-CONTAINED BACKGROUND IMAGE ENGINE
   ============================================================================== */
:root {
  --hero-bg-image: none; /* Real URL injected by PHP inline style in each page <head> */
}

.hero-section {
  padding: 30px 0 60px 0;
  position: relative;
}

.hero-card {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 64px 52px;
  text-align: center;
  transition: var(--transition-smooth);
  /* Outer shadow & border */
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.38), 0 8px 24px rgba(0, 82, 204, 0.16);
}

/* Layer 1 â Background photo, clipped inside the card */
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 0.6s ease;
}
.hero-card:hover::before {
  transform: scale(1.02);
}

/* Layer 2 — Cinematic overlay: clear, transparent, and vibrant so background photo is vividly visible */
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 18, 38, 0.42) 0%,
    rgba(0, 48, 110, 0.24) 50%,
    rgba(10, 18, 38, 0.38) 100%
  );
  z-index: 1;
}

/* Top accent bar â€” sits above overlay */
.hero-card .hero-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), #38bdf8, var(--brand-accent));
  z-index: 3;
}

/* All direct content sits above the overlays */
.hero-card > *:not(.hero-card-accent) {
  position: relative;
  z-index: 2;
}

.hero-section .section-badge {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-headline {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.hero-headline span.gradient-text {
  background: linear-gradient(135deg, #60b8ff, #38bdf8, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(226, 232, 240, 0.9);
  max-width: 720px;
  margin: 0 auto 32px auto;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

/* Trust badges bar inside hero: adapt for dark background */
.hero-section .trust-badges-bar {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 18px 24px;
}
.hero-section .trust-badge-item span {
  color: rgba(226, 232, 240, 0.88);
}
.hero-section .badge-icon-wrap {
  background: linear-gradient(135deg, #0052cc, #003580);
  color: #ffffff;
  border-color: rgba(0, 82, 204, 0.75);
}

.hero-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.88);
  margin: 0 auto;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.hero-trust-bar i {
  color: #38bdf8;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .hero-card {
    padding: 36px 20px;
  }
  .hero-headline {
    font-size: 2.2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.8rem;
  }
}

.visual-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-amber);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.visual-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.visual-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}
.skill-tag {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.floating-badge-1 {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: var(--glass-blur-sm);
  border: 1px solid rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  animation: floatSubtle 4s ease-in-out infinite alternate;
}

@keyframes floatSubtle {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* ==============================================================================
   ACHIEVEMENT METRICS COUNTERS
   ============================================================================== */
.metrics-section {
  padding: 10px 0 50px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.metric-card {
  text-align: center;
  padding: 30px 22px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              background 0.35s ease, 
              color 0.35s ease;
  cursor: pointer;
}

.metric-card:hover {
  transform: translateY(-6px);
}

.metric-value,
.metric-label {
  transition: color 0.35s ease;
}

/* ==============================================================================
   ALTERNATING CARDS (ODD: WHITE -> HOVER BLUE | EVEN: BLUE -> HOVER WHITE)
   ============================================================================== */

/* 1. Odd Cards (Badge 1 & Badge 3): Default White Background, Dark Text */
.metric-card:nth-child(odd) {
  background: #ffffff !important;
  border: 1.5px solid rgba(226, 232, 240, 0.95) !important;
  box-shadow: 0 14px 30px -8px rgba(8, 32, 84, 0.08) !important;
}
.metric-card:nth-child(odd) .metric-value {
  color: #0f172a !important;
}
.metric-card:nth-child(odd) .metric-label {
  color: #64748b !important;
}

/* Odd Cards Hover: Flips to Dark Blue Background, White Text */
.metric-card:nth-child(odd):hover {
  background: #082054 !important;
  border-color: #082054 !important;
  box-shadow: 0 22px 46px -10px rgba(8, 32, 84, 0.45) !important;
}
.metric-card:nth-child(odd):hover .metric-value {
  color: #ffffff !important;
}
.metric-card:nth-child(odd):hover .metric-label {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* 2. Even Cards (Badge 2 & Badge 4): Default Dark Blue Background, White Text */
.metric-card:nth-child(even) {
  background: #082054 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 16px 36px -8px rgba(8, 32, 84, 0.4) !important;
}
.metric-card:nth-child(even) .metric-value {
  color: #ffffff !important;
}
.metric-card:nth-child(even) .metric-label {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Even Cards Hover: Flips to White Background, Dark Text */
.metric-card:nth-child(even):hover {
  background: #ffffff !important;
  border-color: rgba(8, 32, 84, 0.3) !important;
  box-shadow: 0 22px 46px -10px rgba(8, 32, 84, 0.16) !important;
}
.metric-card:nth-child(even):hover .metric-value {
  color: #0f172a !important;
}
.metric-card:nth-child(even):hover .metric-label {
  color: #64748b !important;
}

/* ==============================================================================
   ICON BADGE HOVER EFFECTS (REMAINS SAME AS REQUESTED)
   ============================================================================== */
.metric-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin: 0 auto 16px auto;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.metric-icon-wrap i {
  color: inherit !important;
  transition: color 0.3s ease;
}

/* Badge 1 (Card 1): Dark Blue on White -> White Badge on Dark Blue */
.metric-card:nth-child(4n+1) .metric-icon-wrap {
  background: rgba(8, 32, 84, 0.08) !important;
  color: #082054 !important;
  border: 1.5px solid rgba(8, 32, 84, 0.28) !important;
}
.metric-card:nth-child(4n+1):hover .metric-icon-wrap,
.metric-card:nth-child(4n+1) .metric-icon-wrap:hover {
  background: #ffffff !important;
  color: #082054 !important;
  border-color: #ffffff !important;
  transform: translateY(-4px) scale(1.12) !important;
  box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.35) !important;
}

/* Badge 2 (Card 2): Amber on Dark Blue -> Amber Gradient on White */
.metric-card:nth-child(4n+2) .metric-icon-wrap {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #facc15 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.28) !important;
}
.metric-card:nth-child(4n+2):hover .metric-icon-wrap,
.metric-card:nth-child(4n+2) .metric-icon-wrap:hover {
  background: linear-gradient(135deg, #d97706, #f59e0b) !important;
  color: #ffffff !important;
  border-color: #d97706 !important;
  transform: translateY(-4px) scale(1.12) !important;
  box-shadow: 0 10px 24px -4px rgba(217, 119, 6, 0.45) !important;
}

/* Badge 3 (Card 3): Indigo on White -> White Badge on Dark Blue */
.metric-card:nth-child(4n+3) .metric-icon-wrap {
  background: rgba(79, 70, 229, 0.10) !important;
  color: #4f46e5 !important;
  border: 1.5px solid rgba(79, 70, 229, 0.30) !important;
}
.metric-card:nth-child(4n+3):hover .metric-icon-wrap,
.metric-card:nth-child(4n+3) .metric-icon-wrap:hover {
  background: #ffffff !important;
  color: #4f46e5 !important;
  border-color: #ffffff !important;
  transform: translateY(-4px) scale(1.12) !important;
  box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.35) !important;
}

/* Badge 4 (Card 4): Emerald on Dark Blue -> Emerald Gradient on White */
.metric-card:nth-child(4n+4) .metric-icon-wrap {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #38bdf8 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.28) !important;
}
.metric-card:nth-child(4n+4):hover .metric-icon-wrap,
.metric-card:nth-child(4n+4) .metric-icon-wrap:hover {
  background: linear-gradient(135deg, #059669, #10b981) !important;
  color: #ffffff !important;
  border-color: #059669 !important;
  transform: translateY(-4px) scale(1.12) !important;
  box-shadow: 0 10px 24px -4px rgba(5, 150, 105, 0.45) !important;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==============================================================================
   HIGH-DEMAND SKILL MATRIX
   ============================================================================== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.skill-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.skill-icon-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.skill-img-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.skill-img-box img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.skill-name {
  font-size: 1.15rem;
  font-weight: 800;
}

.skill-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.skill-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-primary);
}

/* ==============================================================================
   PARTNER CLIENTS MARQUEE
   ============================================================================== */
.partner-marquee-container {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partner-marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}
.partner-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo-pill {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 58px;
}
.partner-logo-pill img {
  max-height: 32px;
  max-width: 140px;
  object-fit: contain;
}

/* ==============================================================================
   ABOUT SECTION & TRAIN-TRACK MILESTONE JOURNEY
   ============================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 60px;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 24px;
}

.founder-avatar-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.2);
}
.founder-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-quote {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  padding-left: 18px;
  border-left: 3px solid var(--brand-primary);
  margin-top: 10px;
}

/* Horizontal Train-Track Milestone Track */
.train-track-section {
  margin-top: 50px;
}

.track-container {
  position: relative;
  padding: 40px 10px 20px 10px;
  overflow-x: auto;
}

.train-rail-line {
  position: absolute;
  top: 68px;
  left: 30px;
  right: 30px;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  border-radius: 4px;
  z-index: 1;
}

.milestones-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(200px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.milestone-station {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.depot-stop-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--brand-primary);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.15), 0 6px 16px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brand-primary);
  margin-bottom: 20px;
  transition: var(--transition-bounce);
}
.milestone-station:hover .depot-stop-node {
  transform: scale(1.2);
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 0 0 10px rgba(15, 118, 110, 0.25);
}

.depot-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  width: 100%;
}
.depot-year {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--brand-accent);
}
.depot-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 4px 0 6px 0;
}
.depot-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==============================================================================
   CAREERS & LINKEDIN-STYLE DUAL-COLUMN JOBS PORTAL
   ============================================================================== */
.careers-control-bar {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--glass-shadow);
  margin-bottom: 30px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: center;
}

.input-wrap {
  position: relative;
}
.input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}
.input-control {
  width: 100%;
  padding: 11px 14px 11px 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-main);
  transition: var(--transition-smooth);
}
.input-control:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
  background: #ffffff;
}

.select-control {
  width: 100%;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.select-control:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

/* Dual Column Jobs Workspace */
.jobs-workspace {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Left Column: Job Cards List */
.jobs-list-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card-item {
  background: var(--glass-bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--glass-shadow);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}
.job-card-item:hover {
  background: #ffffff;
  border-color: var(--brand-primary-light);
  box-shadow: var(--glass-shadow-lg);
  transform: translateY(-2px);
}
.job-card-item.selected {
  border-color: var(--brand-primary);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.15);
}
.job-card-item.selected::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  background: var(--brand-primary);
  border-radius: 0 4px 4px 0;
}

.job-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.job-icon-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.job-icon-thumb img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.job-meta-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
}

.job-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}

.badge-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: #f1f5f9;
  color: #475569;
}
.badge-tag.dept { background: #eff6ff; color: #0052cc; }
.badge-tag.salary { background: #f0f9ff; color: #0284c7; }
.badge-tag.loc { background: #f8fafc; color: #475569; }

.job-brief-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Right Column: Sticky Job Detail Viewer */
.sticky-job-detail-col {
  position: sticky;
  top: 90px;
}

.job-detail-card {
  background: #ffffff;
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--glass-shadow-lg);
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}

.detail-header-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.detail-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.detail-dept {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: #f8fafc;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.detail-info-item {
  display: flex;
  flex-direction: column;
}
.detail-info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}
.detail-info-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.detail-section-heading {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 20px 0 10px 0;
}

.reqs-list {
  list-style: none;
  margin-bottom: 24px;
}
.reqs-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #334155;
}
.reqs-list li::before {
  content: 'â';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 900;
}

/* Pagination Bar */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-top: 20px;
}

.pagination-btn-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.page-btn:hover {
  background: #ffffff;
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.page-btn.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #ffffff;
}

/* ==============================================================================
   CONTACT & RECRUITMENT INQUIRY MATRIX
   ============================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 36px;
}

.contact-tabs-header {
  display: flex;
  background: #e2e8f0;
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 24px;
}
.contact-tab-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.contact-tab-btn.active {
  background: #ffffff;
  color: var(--brand-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  background: rgba(255, 255, 255, 0.95);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-main);
  transition: var(--transition-smooth);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
  background: #ffffff;
}
.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
  background: #fff5f5 !important;
  animation: shake-invalid 0.4s ease;
}
@keyframes shake-invalid {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

/* File Upload Drag & Drop Box */
.file-upload-box {
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  background: #f8fafc;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}
.file-upload-box:hover, .file-upload-box.dragover {
  border-color: var(--brand-primary);
  background: #eff6ff;
}
.file-upload-icon {
  font-size: 2.2rem;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

/* Map Container */
.map-embed-wrapper {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  margin-top: 20px;
}
.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==============================================================================
   MODALS & TOAST NOTIFICATIONS
   ============================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: var(--transition-bounce);
}
.modal-overlay.open .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  font-size: 1.3rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--text-main);
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 420px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, rgba(13, 27, 56, 0.95) 0%, rgba(7, 16, 38, 0.98) 100%);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1.5px solid #38bdf8;
  box-shadow: 0 16px 40px -8px rgba(2, 6, 23, 0.8), 0 0 20px -2px rgba(0, 82, 204, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  animation: slideInToast 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast.success { border-left: 4px solid #10b981; }
.toast.success i { color: #10b981; }
.toast.error { border-left: 4px solid #f43f5e; }
.toast.error i { color: #f43f5e; }
.toast.info { border-left: 4px solid #38bdf8; }
.toast.info i { color: #38bdf8; }
.toast span { color: #f8fafc; }

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==============================================================================
   INVERTED ROYAL BLUE FOOTER
   ============================================================================== */
.main-footer {
  background: linear-gradient(135deg, #002266 0%, #0044b3 50%, #0052cc 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 -12px 40px rgba(0, 34, 102, 0.25);
  padding: 56px 0 120px 0; /* Padding for bottom dock */
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #60a5fa, #818cf8);
}

.footer-centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-brand-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  padding: 10px 24px 10px 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  text-decoration: none;
}
.footer-brand-box:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.footer-logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}
.footer-logo-badge img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-company-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.footer-company-slogan {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.2px;
}

.footer-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  max-width: 640px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-compliance {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  line-height: 1.5;
}

.footer-channels-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 24px 0;
  font-size: 0.86rem;
}
.footer-channel-link {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: var(--transition-smooth);
}
.footer-channel-link:hover {
  background: #ffffff;
  color: var(--brand-primary);
  border-color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.78);
}

/* ==============================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ============================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .jobs-workspace {
    grid-template-columns: 1fr;
  }
  .sticky-job-detail-col {
    position: static;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Header Mobile Optimization */
  .dynamic-island-header {
    top: 10px;
    padding: 0 12px;
  }
  .island-capsule {
    padding: 8px 16px;
    gap: 12px;
    min-height: 64px;
  }
  .island-logo-wrap {
    width: 44px;
    height: 44px;
    padding: 4px;
  }
  .island-logo-img {
    height: 34px;
    width: 34px;
  }
  .island-company-name {
    font-size: 1.1rem;
  }
  .island-company-slogan {
    font-size: 0.72rem;
  }
  .island-status {
    display: none; /* Hide status in mobile view to keep focus on brand & action */
  }
  .island-portal-btn {
    padding: 8px 16px;
    font-size: 0.84rem;
  }

  /* Nav Dock Mobile Optimization */
  body {
    padding-bottom: 120px;
  }
  .macos-dock-wrapper {
    bottom: 0;
    height: 78px;
    padding: 0 12px;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .macos-dock {
    gap: 8px;
    padding: 8px 14px;
    box-shadow: 0 16px 40px -8px rgba(0, 82, 204, 0.45);
  }
  .dock-item {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }
  .dock-item:hover {
    transform: scale(1.1) translateY(-2px);
  }
  .dock-divider {
    height: 24px;
    margin: 0 1px;
  }

  .hero-headline {
    font-size: 2.3rem;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .filter-grid {
    grid-template-columns: 1fr;
  }
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .train-rail-line {
    display: none;
  }
  .milestones-track {
    grid-template-columns: 1fr;
  }
  .milestone-station {
    flex-direction: row;
    gap: 16px;
    text-align: left;
  }
  .depot-stop-node {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 520px) {
  .island-company-slogan {
    display: none; /* Keep header concise on narrow mobile */
  }
  .island-company-name {
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .dynamic-island-header {
    top: 8px;
    padding: 0 8px;
  }
  .island-capsule {
    padding: 6px 12px;
    min-height: 56px;
  }
  .island-logo-wrap {
    width: 38px;
    height: 38px;
    padding: 3px;
  }
  .island-logo-img {
    height: 28px;
    width: 28px;
  }
  .island-company-name {
    font-size: 0.9rem;
  }
  .island-portal-btn {
    padding: 6px 12px;
    font-size: 0.76rem;
  }

  .macos-dock-wrapper {
    bottom: 0;
    height: 78px;
    padding: 0 12px;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .macos-dock {
    gap: 6px;
    padding: 6px 10px;
  }
  .dock-item {
    width: 42px;
    height: 42px;
    font-size: 1.18rem;
  }
  .dock-divider {
    height: 20px;
  }
}

/* ==============================================================================
   ADMIN CONSOLIDATED HUBS & NESTED SUB-TAB NAVIGATION
   ============================================================================== */
.admin-subnav-pills {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241, 245, 249, 0.85);
  backdrop-filter: blur(12px);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid #e2e8f0;
  margin-bottom: 24px;
}
.admin-sub-pill {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
}
.admin-sub-pill:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.6);
}
.admin-sub-pill.active {
  background: #ffffff;
  color: var(--brand-primary);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.12);
  border: 1px solid rgba(0, 82, 204, 0.15);
}

/* Dynamic Breadcrumb Rail */
.geo-breadcrumb-rail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.geo-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.geo-breadcrumb-item:hover {
  color: var(--brand-primary);
  background: rgba(0, 82, 204, 0.05);
}
.geo-breadcrumb-item.active {
  color: var(--brand-primary);
  background: rgba(0, 82, 204, 0.1);
  cursor: default;
}
.geo-breadcrumb-divider {
  color: #94a3b8;
  font-size: 0.8rem;
}

/* Geo Card Matrix Grid */
.geo-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.geo-tier-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--glass-shadow);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.geo-tier-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
  box-shadow: var(--glass-shadow-lg);
}
.geo-tier-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.geo-tier-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}
.geo-tier-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.geo-tier-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

/* Analytics District Cards Grid */
.analytics-heatmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.district-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}
.district-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-lg);
}
.stat-bar-container {
  background: #f1f5f9;
  border-radius: var(--radius-pill);
  height: 8px;
  overflow: hidden;
  margin: 8px 0 14px 0;
}
.stat-bar-fill {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  height: 100%;
  border-radius: var(--radius-pill);
  transition: width 0.6s ease;
}

/* Matchmaking Modal */
.job-match-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 14px;
  transition: var(--transition-smooth);
}
.job-match-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.match-score-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}
.match-reason-pill {
  display: inline-block;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: #475569;
  margin-right: 6px;
  margin-top: 4px;
}

/* ==============================================================================
   ERP CLIENT CARDS GRID & LOGO STYLING
   ============================================================================== */
.erp-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.erp-client-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.erp-client-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
  box-shadow: var(--glass-shadow-lg);
}
.erp-client-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.erp-client-logo-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.erp-client-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.erp-client-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.erp-client-meta-row i {
  color: var(--brand-primary);
  font-size: 1rem;
}
.erp-client-actions-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

/* ==========================================================================
   MODERN PORTRAIT FOUNDER PROFILE CARD
   ========================================================================== */
.founder-portrait-card {
  position: relative;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 82, 204, 0.15);
  display: flex;
  flex-direction: column;
  color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-portrait-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 82, 204, 0.25);
  border-color: rgba(56, 189, 248, 0.35);
}

.founder-photo-container {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: #0f172a;
}

.founder-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-portrait-card:hover .founder-portrait-img {
  transform: scale(1.02);
}

.founder-photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0f172a 0%, rgba(15, 23, 42, 0.8) 10%, rgba(15, 23, 42, 0.15) 22%, transparent 35%);
  pointer-events: none;
}

.founder-card-body {
  position: relative;
  padding: 0 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: -8px;
  z-index: 2;
}

.founder-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.founder-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.founder-verified-tick {
  color: #38bdf8;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.6));
}

.founder-designation {
  font-size: 0.88rem;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 8px;
}

.founder-bio-creds {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 14px;
}

.founder-quote-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  position: relative;
}

.founder-quote-box i {
  color: #38bdf8;
  font-size: 1rem;
  margin-right: 6px;
  vertical-align: middle;
}

.founder-quote-text {
  font-size: 0.82rem;
  font-style: italic;
  color: #cbd5e1;
  line-height: 1.5;
}

.founder-social-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  color: #ffffff;
}

.founder-social-btn.linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  box-shadow: 0 4px 15px rgba(10, 102, 194, 0.5);
}

.founder-social-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
}

.founder-social-btn.email:hover {
  background: #ea4335;
  border-color: #ea4335;
  box-shadow: 0 4px 15px rgba(234, 67, 53, 0.5);
}

.founder-social-btn.twitter:hover {
  background: #000000;
  border-color: #38bdf8;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}

.founder-social-btn.phone:hover {
  background: #0052cc;
  border-color: #0052cc;
  box-shadow: 0 4px 15px rgba(0, 82, 204, 0.5);
}


/* ==============================================================================
   ATTRACTIVE BORDER SYSTEM â GLOBAL THEME-MATCHED CARD & BOX BORDERS
   Applied to all cards and interactive boxes (excluding .hero-card)
   ============================================================================== */

/* âââ CSS Variables for the border system âââââââââââââââââââââââââââââââââââ */
:root {
  --border-glass:       1.5px solid rgba(255, 255, 255, 0.82);
  --border-blue-soft:   1.5px solid rgba(0, 82, 204, 0.16);
  --border-blue-glow:   1.5px solid rgba(0, 82, 204, 0.32);
  --border-cyan-soft:   1.5px solid rgba(56, 189, 248, 0.22);
  --border-gradient-start: rgba(0, 82, 204, 0.28);
  --border-gradient-end:   rgba(56, 189, 248, 0.28);
}

/* âââ 1. GLASS CARD â Premium gradient border with glow ââââââââââââââââââââ */
.glass-card:not(.hero-card) {
  border: var(--border-glass);
  box-shadow:
    0 0 0 1px rgba(0, 82, 204, 0.07),
    0 12px 36px rgba(31, 38, 135, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  position: relative;
}

/* Top shimmer accent line on every glass card */
.glass-card:not(.hero-card)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 204, 0.35), rgba(56, 189, 248, 0.5), rgba(0, 82, 204, 0.35), transparent);
  border-radius: 0 0 2px 2px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.glass-card:not(.hero-card):hover {
  border-color: rgba(0, 82, 204, 0.22);
  box-shadow:
    0 0 0 1px rgba(0, 82, 204, 0.14),
    0 20px 48px rgba(0, 82, 204, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
.glass-card:not(.hero-card):hover::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 204, 0.5), rgba(56, 189, 248, 0.85), rgba(0, 82, 204, 0.5), transparent);
}

/* âââ 2. METRIC CARDS â Colored top-border + glow ring âââââââââââââââââââââ */
.metric-card {
  border: 1.5px solid rgba(0, 82, 204, 0.13) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.06),
    0 8px 28px rgba(0, 82, 204, 0.08) !important;
  position: relative;
  overflow: hidden;
}
.metric-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent-light));
  border-radius: 3px 3px 0 0;
}
.metric-card:hover {
  border-color: rgba(0, 82, 204, 0.28) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.18),
    0 16px 40px rgba(0, 82, 204, 0.16) !important;
}

/* âââ 3. VERTICAL SUPPLY CARDS â Bold glowing left + top border ââââââââââââ */
.vertical-card {
  border: 1.5px solid rgba(0, 82, 204, 0.14) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.05),
    0 12px 36px rgba(0, 82, 204, 0.08);
}
.vertical-card:hover {
  border-color: rgba(0, 82, 204, 0.44) !important;
  box-shadow: 0 24px 52px rgba(0, 82, 204, 0.18) !important;
}

/* âââ 4. PROCESS STEP CARDS â Cyan left accent strip âââââââââââââââââââââââ */
.process-step-card {
  border: 1.5px solid rgba(0, 82, 204, 0.12) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.06),
    0 10px 30px rgba(0, 82, 204, 0.07);
}
.process-step-card::after {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: linear-gradient(to bottom, var(--brand-primary), var(--brand-accent-light));
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.process-step-card:hover {
  border-color: rgba(0, 82, 204, 0.24) !important;
  box-shadow: 0 18px 44px rgba(0, 82, 204, 0.14) !important;
}
.process-step-card:hover::after {
  opacity: 1;
}

/* âââ 5. TRUST BADGES BAR âââââââââââââââââââââââââââââââââââââââââââââââââââ */
.trust-badges-bar:not(.hero-section .trust-badges-bar) {
  border: 1.5px solid rgba(0, 82, 204, 0.13) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.06),
    0 16px 40px rgba(0, 82, 204, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

/* âââ 6. BADGE-ICON WRAP âââââââââââââââââââââââââââââââââââââââââââââââââââ */
.badge-icon-wrap {
  border: 1.5px solid rgba(0, 82, 204, 0.2) !important;
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.1);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.trust-badge-item:hover .badge-icon-wrap {
  border-color: rgba(0, 82, 204, 0.4) !important;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.18);
}

/* âââ 7. SECTION BADGE PILL ââââââââââââââââââââââââââââââââââââââââââââââââ */
.section-badge {
  border: 1.5px solid rgba(0, 82, 204, 0.2) !important;
  box-shadow: 0 2px 10px rgba(0, 82, 204, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* âââ 8. PARTNER LOGO PILLS ââââââââââââââââââââââââââââââââââââââââââââââââ */
.partner-logo-pill {
  border: 1.5px solid rgba(0, 82, 204, 0.12) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 6px 16px rgba(0, 82, 204, 0.07) !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}
.partner-logo-pill:hover {
  border-color: rgba(0, 82, 204, 0.28) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 1),
    0 10px 28px rgba(0, 82, 204, 0.13) !important;
}

/* âââ 9. DEPOT / MILESTONE CARDS âââââââââââââââââââââââââââââââââââââââââââ */
.depot-card {
  border: 1.5px solid rgba(0, 82, 204, 0.12) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 8px 22px rgba(0, 82, 204, 0.08) !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.milestone-station:hover .depot-card {
  border-color: rgba(0, 82, 204, 0.3) !important;
  box-shadow: 0 12px 32px rgba(0, 82, 204, 0.16) !important;
}

/* âââ 10. JOB CARDS ââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.job-card-item {
  border: 1.5px solid rgba(0, 82, 204, 0.1) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85),
    0 6px 20px rgba(0, 82, 204, 0.07) !important;
}
.job-card-item:hover {
  border-color: rgba(0, 82, 204, 0.3) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.15),
    0 16px 36px rgba(0, 82, 204, 0.14) !important;
}
.job-card-item.selected {
  border-color: var(--brand-primary) !important;
  box-shadow:
    0 0 0 3px rgba(0, 82, 204, 0.12),
    0 12px 32px rgba(0, 82, 204, 0.16) !important;
}

/* âââ 11. JOB DETAIL PANEL âââââââââââââââââââââââââââââââââââââââââââââââââ */
.job-detail-panel {
  border: 1.5px solid rgba(0, 82, 204, 0.14) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 44px rgba(0, 82, 204, 0.1) !important;
}

/* âââ 12. MODAL DIALOG âââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.modal-dialog {
  border: 1.5px solid rgba(0, 82, 204, 0.14) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.08),
    0 40px 80px -20px rgba(0, 0, 0, 0.3),
    0 16px 40px rgba(0, 82, 204, 0.12) !important;
}

/* âââ 13. FORM INPUTS & SELECTS ââââââââââââââââââââââââââââââââââââââââââââ */
.form-input, .form-textarea, .form-select {
  border: 1.5px solid rgba(0, 82, 204, 0.15) !important;
  box-shadow: inset 0 1px 3px rgba(0, 82, 204, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(0, 82, 204, 0.55) !important;
  box-shadow:
    0 0 0 3px rgba(0, 82, 204, 0.1),
    inset 0 1px 3px rgba(0, 82, 204, 0.06) !important;
}

/* âââ 14. CONTROL BAR (CAREERS FILTER) ââââââââââââââââââââââââââââââââââââ */
.careers-control-bar {
  border: 1.5px solid rgba(0, 82, 204, 0.12) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 8px 24px rgba(0, 82, 204, 0.08) !important;
}

/* âââ 15. ISLAND CAPSULE (HEADER) ââââââââââââââââââââââââââââââââââââââââââ */
.island-capsule {
  border: 1.5px solid rgba(0, 82, 204, 0.14) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85),
    0 16px 40px rgba(0, 82, 204, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

/* âââ 16. DOCK PILL ââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.dock-pill {
  border: 1.5px solid rgba(0, 82, 204, 0.13) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7),
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 82, 204, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

/* âââ 17. DOCK ITEMS â Hover ring ââââââââââââââââââââââââââââââââââââââââââ */
.dock-item:hover,
.dock-item.active {
  border: 1.5px solid rgba(0, 82, 204, 0.28) !important;
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1) !important;
}

/* âââ 18. SKILL CARDS ââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.skill-card {
  border: 1.5px solid rgba(0, 82, 204, 0.12) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.8),
    0 8px 24px rgba(0, 82, 204, 0.07) !important;
}
.skill-card:hover {
  border-color: rgba(0, 82, 204, 0.28) !important;
  box-shadow: 0 16px 40px rgba(0, 82, 204, 0.14) !important;
}

/* âââ 19. ABOUT FOUNDER PORTRAIT CARD âââââââââââââââââââââââââââââââââââââ */
.founder-portrait-card {
  border: 1.5px solid rgba(56, 189, 248, 0.2) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.08),
    0 24px 56px rgba(0, 0, 0, 0.3),
    0 8px 24px rgba(0, 82, 204, 0.15) !important;
}
.founder-portrait-card:hover {
  border-color: rgba(56, 189, 248, 0.38) !important;
  box-shadow:
    0 0 0 3px rgba(56, 189, 248, 0.12),
    0 32px 64px rgba(0, 0, 0, 0.35),
    0 12px 32px rgba(0, 82, 204, 0.2) !important;
}

/* âââ 20. CONTACT CARDS ââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.contact-card, .contact-info-block {
  border: 1.5px solid rgba(0, 82, 204, 0.12) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 30px rgba(0, 82, 204, 0.09) !important;
}
.contact-card:hover, .contact-info-block:hover {
  border-color: rgba(0, 82, 204, 0.26) !important;
}

/* âââ 21. BADGE TAGS (skill/role chips) âââââââââââââââââââââââââââââââââââ */
.badge-tag, .vertical-badge-tag, .job-tag {
  border: 1px solid rgba(0, 82, 204, 0.14) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* âââ 22. BTN-GLASS â Enhanced border âââââââââââââââââââââââââââââââââââââ */
.btn-glass {
  border: 1.5px solid rgba(0, 82, 204, 0.22) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.6),
    0 4px 14px rgba(0, 82, 204, 0.08) !important;
}
.btn-glass:hover {
  border-color: rgba(0, 82, 204, 0.4) !important;
  box-shadow:
    0 0 0 3px rgba(0, 82, 204, 0.1),
    0 8px 22px rgba(0, 82, 204, 0.16) !important;
}

/* âââ 23. VERTICAL BADGE TAG âââââââââââââââââââââââââââââââââââââââââââââââ */
.vertical-badge-tag {
  border: 1.5px solid rgba(0, 82, 204, 0.2) !important;
}

/* âââ 24. RECRUITER SUPPLY MODAL FORM CARD âââââââââââââââââââââââââââââââââ */
.recruiter-form-section, .modal-body .glass-card {
  border: 1.5px solid rgba(0, 82, 204, 0.12) !important;
}

/* âââ 25. SCROLLBAR THUMB â Brand-tinted ââââââââââââââââââââââââââââââââââ */
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, rgba(0, 82, 204, 0.4), rgba(2, 132, 199, 0.4));
  border: 2px solid rgba(255, 255, 255, 0.7);
}

/* ==============================================================================
   DARKER BORDER ENHANCEMENT - ALL PAGES (About, Contact, Careers)
   Increases border visibility to ~0.28-0.45 alpha for a crisp, premium feel.
   These rules deliberately override the base system with stronger values.
   ============================================================================== */

/* --- GLOBAL VARIABLE UPGRADE: Darker base borders --- */
:root {
  --border-glass:     1.5px solid rgba(0, 82, 204, 0.22);
  --border-blue-soft: 1.5px solid rgba(0, 82, 204, 0.28);
  --border-blue-glow: 1.5px solid rgba(0, 82, 204, 0.44);
  --border-cyan-soft: 1.5px solid rgba(56, 189, 248, 0.36);
}

/* 1. GLASS CARD - Darker, crisper border */
.glass-card:not(.hero-card) {
  border: 1.5px solid rgba(0, 82, 204, 0.22) !important;
  box-shadow:
    0 0 0 1px rgba(0, 82, 204, 0.08),
    0 12px 36px rgba(31, 38, 135, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
}
.glass-card:not(.hero-card):hover {
  border-color: rgba(0, 82, 204, 0.40) !important;
  box-shadow:
    0 0 0 2px rgba(0, 82, 204, 0.10),
    0 20px 48px rgba(0, 82, 204, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

/* 2. METRIC CARDS */
.metric-card {
  border: 1.5px solid rgba(0, 82, 204, 0.25) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.10),
    0 8px 28px rgba(0, 82, 204, 0.10) !important;
}
.metric-card:hover {
  border-color: rgba(0, 82, 204, 0.44) !important;
  box-shadow:
    0 0 0 2px rgba(56, 189, 248, 0.18),
    0 16px 40px rgba(0, 82, 204, 0.18) !important;
}

/* 3. VERTICAL SUPPLY CARDS */
.vertical-card {
  border: 1.5px solid rgba(0, 82, 204, 0.26) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.08),
    0 12px 36px rgba(0, 82, 204, 0.10) !important;
}

/* 4. PROCESS STEP CARDS */
.process-step-card {
  border: 1.5px solid rgba(0, 82, 204, 0.24) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.08),
    0 10px 30px rgba(0, 82, 204, 0.10) !important;
}

/* 5. TRUST BADGES BAR */
.trust-badges-bar:not(.hero-section .trust-badges-bar) {
  border: 1.5px solid rgba(0, 82, 204, 0.24) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.09),
    0 16px 40px rgba(0, 82, 204, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
}

/* 6. BADGE ICON WRAPS */
.badge-icon-wrap {
  border: 1.5px solid rgba(0, 82, 204, 0.32) !important;
  box-shadow: 0 3px 10px rgba(0, 82, 204, 0.14) !important;
}

/* 7. SECTION BADGE PILL */
.section-badge {
  border: 1.5px solid rgba(0, 82, 204, 0.32) !important;
  box-shadow: 0 2px 10px rgba(0, 82, 204, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

/* 8. PARTNER LOGO PILLS */
.partner-logo-pill {
  border: 1.5px solid rgba(0, 82, 204, 0.22) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.95),
    0 6px 16px rgba(0, 82, 204, 0.10) !important;
}
.partner-logo-pill:hover {
  border-color: rgba(0, 82, 204, 0.44) !important;
  box-shadow:
    0 0 0 2px rgba(0, 82, 204, 0.08),
    0 10px 28px rgba(0, 82, 204, 0.18) !important;
}

/* 9. DEPOT / MILESTONE CARDS */
.depot-card {
  border: 1.5px solid rgba(0, 82, 204, 0.24) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 8px 22px rgba(0, 82, 204, 0.10) !important;
}
.milestone-station:hover .depot-card {
  border-color: rgba(0, 82, 204, 0.42) !important;
  box-shadow: 0 12px 32px rgba(0, 82, 204, 0.20) !important;
}

/* 10. JOB CARDS */
.job-card-item {
  border: 1.5px solid rgba(0, 82, 204, 0.20) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.90),
    0 6px 20px rgba(0, 82, 204, 0.09) !important;
}
.job-card-item:hover {
  border-color: rgba(0, 82, 204, 0.42) !important;
  box-shadow:
    0 0 0 2px rgba(56, 189, 248, 0.16),
    0 16px 36px rgba(0, 82, 204, 0.18) !important;
}
.job-card-item.selected {
  border-color: var(--brand-primary) !important;
  box-shadow:
    0 0 0 3px rgba(0, 82, 204, 0.18),
    0 12px 32px rgba(0, 82, 204, 0.20) !important;
}

/* 11. JOB DETAIL CARD */
.job-detail-card {
  border: 1.5px solid rgba(0, 82, 204, 0.26) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 16px 44px rgba(0, 82, 204, 0.12) !important;
}

/* 12. DETAIL INFO GRID */
.detail-info-grid {
  border: 1.5px solid rgba(0, 82, 204, 0.16) !important;
  border-radius: var(--radius-md) !important;
}

/* 13. MODAL DIALOG */
.modal-dialog {
  border: 1.5px solid rgba(0, 82, 204, 0.28) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.14),
    0 40px 80px -20px rgba(0, 0, 0, 0.34),
    0 16px 40px rgba(0, 82, 204, 0.16) !important;
}

/* 14. FORM INPUTS & SELECTS */
.form-input, .form-textarea, .form-select {
  border: 1.5px solid rgba(0, 82, 204, 0.28) !important;
  box-shadow: inset 0 1px 3px rgba(0, 82, 204, 0.05) !important;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(0, 82, 204, 0.65) !important;
  box-shadow:
    0 0 0 3px rgba(0, 82, 204, 0.14),
    inset 0 1px 3px rgba(0, 82, 204, 0.07) !important;
}

/* 15. CAREERS FILTER CONTROLS */
.input-control, .select-control {
  border: 1.5px solid rgba(0, 82, 204, 0.24) !important;
  box-shadow: inset 0 1px 3px rgba(0, 82, 204, 0.04) !important;
}
.input-control:focus, .select-control:focus {
  border-color: rgba(0, 82, 204, 0.55) !important;
  box-shadow:
    0 0 0 3px rgba(0, 82, 204, 0.12),
    inset 0 1px 3px rgba(0, 82, 204, 0.06) !important;
}

/* 16. CAREERS CONTROL BAR */
.careers-control-bar {
  border: 1.5px solid rgba(0, 82, 204, 0.24) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 8px 28px rgba(0, 82, 204, 0.10) !important;
}

/* 17. FILE UPLOAD BOX */
.file-upload-box {
  border: 2px dashed rgba(0, 82, 204, 0.36) !important;
  background: rgba(239, 246, 255, 0.60) !important;
  box-shadow: inset 0 1px 4px rgba(0, 82, 204, 0.06) !important;
}
.file-upload-box:hover, .file-upload-box.dragover {
  border-color: rgba(0, 82, 204, 0.65) !important;
  background: rgba(219, 234, 255, 0.60) !important;
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.10) !important;
}

/* 18. MAP EMBED WRAPPER */
.map-embed-wrapper {
  border: 1.5px solid rgba(0, 82, 204, 0.26) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.10),
    0 8px 24px rgba(0, 82, 204, 0.10) !important;
}

/* 19. CONTACT TABS HEADER */
.contact-tabs-header {
  border: 1.5px solid rgba(0, 82, 204, 0.18) !important;
  background: rgba(226, 232, 240, 0.70) !important;
}
.contact-tab-btn.active {
  border: 1px solid rgba(0, 82, 204, 0.24) !important;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.10) !important;
}

/* 20. PAGINATION BUTTONS */
.page-btn {
  border: 1.5px solid rgba(0, 82, 204, 0.22) !important;
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.07) !important;
}
.page-btn:hover {
  border-color: rgba(0, 82, 204, 0.50) !important;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.16) !important;
}
.page-btn.active {
  border-color: var(--brand-primary) !important;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.32) !important;
}

/* 21. FOUNDER PORTRAIT CARD */
.founder-portrait-card {
  border: 1.5px solid rgba(56, 189, 248, 0.36) !important;
  box-shadow:
    0 0 0 2px rgba(56, 189, 248, 0.10),
    0 24px 56px rgba(0, 0, 0, 0.30),
    0 8px 24px rgba(0, 82, 204, 0.18) !important;
}
.founder-portrait-card:hover {
  border-color: rgba(56, 189, 248, 0.56) !important;
  box-shadow:
    0 0 0 4px rgba(56, 189, 248, 0.14),
    0 32px 64px rgba(0, 0, 0, 0.35),
    0 12px 32px rgba(0, 82, 204, 0.24) !important;
}

/* 22. FOUNDER QUOTE BOX */
.founder-quote-box {
  border: 1.5px solid rgba(0, 82, 204, 0.22) !important;
  border-left: 4px solid var(--brand-primary) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 4px 14px rgba(0, 82, 204, 0.08) !important;
  border-radius: var(--radius-md) !important;
}

/* ==============================================================================
   HERO — CENTERED TITLE & HEADING WITH FROSTED GLASS BLURRED CARD
   ============================================================================== */

/* 1. Hero Card Centered Flex Layout & Enhanced Background Exposure */
.hero-section {
  padding: 24px 0 36px 0 !important;
}

.hero-card {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 460px !important;
  padding: 40px 40px 30px 40px !important;
}

.hero-card > *:not(.hero-card-accent) {
  text-align: center !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Layer 1 — Background photo: maximum sharpness & natural visibility */
.hero-card::before {
  background-position: center 30% !important;
  filter: brightness(1.10) contrast(1.08) saturate(1.10) !important;
  transform: scale(1.01) !important;
}

/* Layer 2 — Gentle translucent gradient overlay: keeps background fully visible while preserving contrast */
.hero-card::after {
  background: linear-gradient(
    160deg,
    rgba(10, 20, 42, 0.35) 0%,
    rgba(0, 40, 95, 0.18) 45%,
    rgba(10, 20, 42, 0.36) 100%
  ) !important;
}

/* 2. White Glass Capsule for Logo Only (Hero Center Top) */
.hero-logo-glass-box {
  width: auto !important;
  max-width: fit-content !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 28px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(24px) saturate(1.8) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.8) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.98) !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: 
    0 16px 36px -8px rgba(0, 0, 0, 0.22),
    0 4px 14px rgba(0, 82, 204, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  margin: 0 auto !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-logo-glass-box:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(255, 255, 255, 1) !important;
  box-shadow: 
    0 20px 42px -8px rgba(0, 0, 0, 0.28),
    0 6px 18px rgba(0, 82, 204, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.hero-glass-logo {
  height: 48px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
  filter: none !important;
}

/* 3. Single-Color Dark Blue Headline Bar (No Gradient, Slim Profile) */
.hero-headline-banner-section {
  padding: 0 0 32px 0 !important;
  position: relative;
}

.hero-headline-bar {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  background: #082054 !important; /* Single color dark blue background */
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: 
    0 14px 32px -8px rgba(8, 32, 84, 0.4),
    0 4px 14px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  padding: 16px 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-headline-bar:hover {
  transform: translateY(-2px);
  background: #0a255f !important;
  box-shadow: 
    0 18px 38px -8px rgba(8, 32, 84, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.headline-bar-content {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  text-align: center !important;
  width: 100% !important;
}

.headline-bar-icon {
  color: #facc15 !important;
  font-size: 1.3rem !important;
  filter: none !important;
  text-shadow: none !important;
  flex-shrink: 0 !important;
}

.banner-bar-title {
  font-size: clamp(1.05rem, 1.85vw, 1.38rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.2px !important;
  display: inline-flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  text-shadow: none !important;
}

.banner-bar-title .title-lead {
  color: #ffffff !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

/* Solid high-contrast cyan with zero gradient and zero glow for clean sharp readability */
.banner-bar-title .title-sub,
.banner-bar-title span.gradient-text {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: #38bdf8 !important;
  font-weight: 800 !important;
  text-shadow: none !important;
  filter: none !important;
}

/* 3. Trust Badges Bar (Metrics in the hero) — Centered */
.hero-section .trust-badges-bar {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(18px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.5) !important;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.28) !important;
  border-radius: var(--radius-xl) !important;
  padding: 18px 24px !important;
}

.hero-section .trust-badge-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 0.88rem !important;
}

.hero-section .trust-badge-item span {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
  line-height: 1.35 !important;
}

.hero-section .badge-icon-wrap {
  width: 40px !important;
  height: 40px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #0052cc, #003580) !important;
  border: 1.5px solid rgba(0, 82, 204, 0.85) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 53, 128, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.hero-section .badge-icon-wrap i {
  color: #ffffff !important;
  font-size: 1.25rem !important;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35)) !important;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 768px) {
  .hero-card {
    padding: 30px 18px 24px 18px !important;
    min-height: 380px !important;
  }
  .hero-logo-glass-box {
    padding: 12px 22px !important;
    margin-bottom: 14px !important;
  }
  .hero-glass-logo {
    height: 44px !important;
  }
  .hero-headline-bar {
    padding: 14px 18px !important;
    border-radius: var(--radius-lg) !important;
  }
  .banner-bar-title {
    font-size: 1.02rem !important;
  }
  .headline-bar-icon {
    font-size: 1.15rem !important;
  }
  .hero-section .trust-badges-bar {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 16px 14px !important;
  }
}

@media (max-width: 480px) {
  .hero-card {
    padding: 24px 12px 20px 12px !important;
    min-height: 330px !important;
  }
  .hero-logo-glass-box {
    padding: 10px 18px !important;
  }
  .hero-glass-logo {
    height: 38px !important;
  }
  .hero-headline-bar {
    padding: 12px 14px !important;
    border-radius: var(--radius-md) !important;
  }
  .banner-bar-title {
    font-size: 0.92rem !important;
  }
  .headline-bar-icon {
    font-size: 1rem !important;
  }
  .hero-section .trust-badges-bar {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

/* ==============================================================================
   ADMIN UNIFIED TOP TABLE TOOLBAR, SEARCH & PAGINATION ENGINE
   ============================================================================== */
.admin-table-toolbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  padding: 10px 14px !important;
  background: rgba(248, 250, 252, 0.95) !important;
  border: 1.5px solid rgba(0, 82, 204, 0.22) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px !important;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.05) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.table-toolbar-left {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  flex: 1 1 auto !important;
  min-width: 260px !important;
}

.table-toolbar-right {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  flex-shrink: 0 !important;
}

.table-search-input-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  flex: 1 1 240px !important;
  max-width: 320px !important;
  min-width: 170px !important;
}

.table-search-input-wrap i.ri-search-line {
  position: absolute !important;
  left: 12px !important;
  color: var(--brand-primary) !important;
  font-size: 0.95rem !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.table-search-input {
  width: 100% !important;
  padding: 6px 30px 6px 34px !important;
  font-size: 0.84rem !important;
  border-radius: var(--radius-pill) !important;
  border: 1.5px solid rgba(0, 82, 204, 0.25) !important;
  background: #ffffff !important;
  color: var(--text-main) !important;
  transition: var(--transition-smooth) !important;
}

.table-search-input:focus {
  outline: none !important;
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.15) !important;
}

.table-search-clear {
  position: absolute !important;
  right: 8px !important;
  background: none !important;
  border: none !important;
  font-size: 1.15rem !important;
  color: var(--text-muted) !important;
  cursor: pointer !important;
  padding: 0 4px !important;
  line-height: 1 !important;
  z-index: 2 !important;
}

.table-search-clear:hover {
  color: var(--brand-rose) !important;
}

.table-limit-select,
.table-filter-extra {
  padding: 6px 12px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  border-radius: var(--radius-pill) !important;
  border: 1.5px solid rgba(0, 82, 204, 0.25) !important;
  background: #ffffff !important;
  color: var(--text-main) !important;
  cursor: pointer !important;
  width: auto !important;
  transition: var(--transition-smooth) !important;
}

.table-limit-select:focus,
.table-filter-extra:focus {
  outline: none !important;
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.12) !important;
}

.table-page-info {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--text-muted) !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.table-page-info strong {
  color: var(--brand-primary) !important;
}

.table-pagination-nav {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.table-page-nav-btn,
.table-page-pill {
  min-width: 30px !important;
  height: 30px !important;
  padding: 0 8px !important;
  border-radius: var(--radius-sm) !important;
  border: 1.5px solid rgba(0, 82, 204, 0.22) !important;
  background: #ffffff !important;
  color: var(--text-main) !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: var(--transition-smooth) !important;
  user-select: none !important;
}

.table-page-nav-btn:hover:not(:disabled),
.table-page-pill:hover:not(.active) {
  border-color: var(--brand-primary) !important;
  background: rgba(0, 82, 204, 0.08) !important;
  color: var(--brand-primary) !important;
}

.table-page-pill.active {
  background: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.3) !important;
}

.table-page-nav-btn:disabled {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  border-color: #cbd5e1 !important;
  background: #f8fafc !important;
  color: #94a3b8 !important;
}

.table-page-ellipsis {
  padding: 0 4px !important;
  color: var(--text-muted) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
}

@media (max-width: 768px) {
  .admin-table-toolbar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .table-toolbar-left,
  .table-toolbar-right {
    justify-content: space-between !important;
    width: 100% !important;
  }
  .table-search-input-wrap {
    max-width: 100% !important;
    flex: 1 1 100% !important;
  }
}

/* ── UNIVERSAL TABLE BULK ACTION BAR & SELECTION STYLES ── */
.table-bulk-action-bar {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 41, 59, 0.98) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #ffffff;
  border-radius: var(--radius-lg, 14px);
  margin: 10px 0 16px 0;
  box-shadow: 0 12px 30px -6px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: slideDownBulkBar 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.table-bulk-action-bar.is-visible {
  display: flex !important;
}

@keyframes slideDownBulkBar {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.table-bulk-info-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.table-bulk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0052cc 0%, #0284c7 100%);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 10px rgba(0, 82, 204, 0.4);
}

.table-bulk-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: -0.1px;
}

.table-bulk-btns-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-table-bulk-delete {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  border: 1px solid rgba(254, 202, 202, 0.4) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  padding: 7px 18px !important;
  border-radius: var(--radius-pill) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-table-bulk-delete:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.5) !important;
}

.btn-table-bulk-delete:active {
  transform: translateY(0) !important;
}

.btn-table-bulk-deselect {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #e2e8f0 !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  padding: 7px 16px !important;
  border-radius: var(--radius-pill) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-table-bulk-deselect:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.btn-table-bulk-deselect:active {
  transform: translateY(0) !important;
}

.table-master-check,
.table-row-check {
  cursor: pointer !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 4px !important;
  accent-color: var(--brand-primary) !important;
  vertical-align: middle !important;
}

.btn-table-delete-row {
  color: #ef4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.25) !important;
  background: rgba(239, 68, 68, 0.06) !important;
  padding: 5px 8px !important;
  border-radius: var(--radius-pill) !important;
  cursor: pointer !important;
  font-size: 0.85rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: var(--transition-smooth) !important;
}

.btn-table-delete-row:hover {
  background: #ef4444 !important;
  color: #ffffff !important;
  border-color: #ef4444 !important;
}

tr.table-row-selected {
  background-color: rgba(0, 82, 204, 0.045) !important;
}

/* ==============================================================================
   ADMIN HEADER DYNAMIC ISLAND & ATTRACTIVE BLUE BORDER
   ============================================================================== */
.admin-dynamic-header {
  position: sticky !important;
  top: 16px !important;
  z-index: 1000 !important;
  display: flex !important;
  justify-content: center !important;
  padding: 0 20px !important;
  pointer-events: none !important;
  width: 100% !important;
}

.admin-header-pill {
  pointer-events: auto !important;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1.5px solid rgba(0, 82, 204, 0.75) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.90),
    0 16px 40px rgba(0, 82, 204, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
  border-radius: var(--radius-pill) !important;
  padding: 10px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin: 0 auto !important;
  max-width: 1300px !important;
  width: 100% !important;
  transition: var(--transition-smooth) !important;
}

.admin-header-pill:hover {
  border-color: rgba(0, 82, 204, 0.95) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.95),
    0 20px 48px rgba(0, 82, 204, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
}

/* ==============================================================================
   PREMIUM DESIGNED TOAST & INTERACTIVE CONFIRMATION MODAL SYSTEM
   ============================================================================== */
#toast-container {
  position: fixed !important;
  top: 24px !important;
  right: 24px !important;
  z-index: 100000 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  pointer-events: none !important;
}

.toast {
  pointer-events: auto !important;
  min-width: 320px !important;
  max-width: 440px !important;
  padding: 14px 18px !important;
  border-radius: var(--radius-md) !important;
  background: linear-gradient(165deg, rgba(13, 27, 56, 0.95) 0%, rgba(7, 16, 38, 0.98) 100%) !important;
  backdrop-filter: blur(28px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(190%) !important;
  border: 1.5px solid #38bdf8 !important;
  box-shadow: 0 16px 40px -8px rgba(2, 6, 23, 0.8), 0 0 20px -2px rgba(0, 82, 204, 0.3) !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  font-size: 0.88rem !important;
  color: #ffffff !important;
  position: relative !important;
  overflow: hidden !important;
  animation: slideInToast 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.toast.toast-success,
.toast.success {
  border-left: 5px solid #10b981 !important;
}
.toast.toast-success i.toast-icon,
.toast.success i {
  color: #10b981 !important;
  font-size: 1.3rem !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}

.toast.toast-error,
.toast.toast-danger,
.toast.error {
  border-left: 5px solid #f43f5e !important;
}
.toast.toast-error i.toast-icon,
.toast.toast-danger i.toast-icon,
.toast.error i {
  color: #f43f5e !important;
  font-size: 1.3rem !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}

.toast.toast-warning,
.toast.warning {
  border-left: 5px solid #f59e0b !important;
}
.toast.toast-warning i.toast-icon,
.toast.warning i {
  color: #f59e0b !important;
  font-size: 1.3rem !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}

.toast.toast-info,
.toast.info {
  border-left: 5px solid #38bdf8 !important;
}
.toast.toast-info i.toast-icon,
.toast.info i {
  color: #38bdf8 !important;
  font-size: 1.3rem !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}

.toast-content {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}
.toast-title {
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  margin-bottom: 2px !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
}
.toast-message {
  font-size: 0.84rem !important;
  color: #cbd5e1 !important;
  line-height: 1.4 !important;
}
.toast span {
  color: #f8fafc !important;
}

.toast-close-btn {
  background: none !important;
  border: none !important;
  font-size: 1.25rem !important;
  color: #94a3b8 !important;
  cursor: pointer !important;
  padding: 0 4px !important;
  line-height: 1 !important;
  transition: var(--transition-smooth) !important;
  flex-shrink: 0 !important;
}
.toast-close-btn:hover {
  color: var(--brand-rose) !important;
}

.toast-progress {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, var(--brand-primary), #38bdf8) !important;
  width: 100% !important;
  animation: toastProgress 4s linear forwards !important;
}

@keyframes toastProgress {
  from { width: 100%; }
  to { width: 0%; }
}

/* Custom Interactive Confirmation Modal */
.confirm-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(10, 18, 38, 0.65) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 100000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.25s ease !important;
}

.confirm-modal-overlay.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.confirm-modal-card {
  background: #ffffff !important;
  border-radius: var(--radius-xl) !important;
  border: 1.5px solid rgba(0, 82, 204, 0.25) !important;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.35), 0 8px 24px rgba(0, 82, 204, 0.15) !important;
  max-width: 440px !important;
  width: 100% !important;
  padding: 32px 28px !important;
  text-align: center !important;
  transform: scale(0.92) translateY(10px) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.confirm-modal-overlay.open .confirm-modal-card {
  transform: scale(1) translateY(0) !important;
}

.confirm-icon-circle {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.9rem !important;
  margin: 0 auto 16px auto !important;
}
.confirm-icon-circle.danger {
  background: rgba(225, 29, 72, 0.1) !important;
  color: var(--brand-rose) !important;
  border: 1.5px solid rgba(225, 29, 72, 0.25) !important;
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.15) !important;
}
.confirm-icon-circle.warning {
  background: rgba(245, 158, 11, 0.1) !important;
  color: #f59e0b !important;
  border: 1.5px solid rgba(245, 158, 11, 0.25) !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15) !important;
}
.confirm-icon-circle.info {
  background: rgba(0, 82, 204, 0.1) !important;
  color: var(--brand-primary) !important;
  border: 1.5px solid rgba(0, 82, 204, 0.25) !important;
  box-shadow: 0 0 20px rgba(0, 82, 204, 0.15) !important;
}

.confirm-modal-title {
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: var(--text-main) !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
}

.confirm-modal-desc {
  font-size: 0.92rem !important;
  color: var(--text-muted) !important;
  line-height: 1.5 !important;
  margin-bottom: 24px !important;
}

.confirm-modal-actions {
  display: flex !important;
  gap: 12px !important;
  justify-content: center !important;
}

.btn-confirm-cancel {
  padding: 10px 22px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  border-radius: var(--radius-pill) !important;
  border: 1.5px solid #cbd5e1 !important;
  background: #f8fafc !important;
  color: #475569 !important;
  cursor: pointer !important;
  transition: var(--transition-smooth) !important;
}
.btn-confirm-cancel:hover {
  background: #f1f5f9 !important;
  border-color: #94a3b8 !important;
  color: #1e293b !important;
}

.btn-confirm-danger {
  padding: 10px 24px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  border-radius: var(--radius-pill) !important;
  background: linear-gradient(135deg, #e11d48, #be123c) !important;
  border: 1.5px solid rgba(225, 29, 72, 0.6) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: var(--transition-smooth) !important;
}
.btn-confirm-danger:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.45) !important;
}

.btn-confirm-primary {
  padding: 10px 24px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  border-radius: var(--radius-pill) !important;
  background: linear-gradient(135deg, var(--brand-primary), #0284c7) !important;
  border: 1.5px solid rgba(0, 82, 204, 0.6) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.3) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: var(--transition-smooth) !important;
}
.btn-confirm-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 82, 204, 0.45) !important;
}

/* ==============================================================================
   SYSTEM ARCHIVE VAULT & ENTITY BADGES
   ============================================================================== */
.entity-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 3px 10px !important;
  border-radius: var(--radius-pill) !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}
.entity-badge-job { background: #e0f2fe !important; color: #0284c7 !important; border: 1px solid rgba(2, 132, 199, 0.3) !important; }
.entity-badge-application { background: #ede9fe !important; color: #6366f1 !important; border: 1px solid rgba(99, 102, 241, 0.3) !important; }
.entity-badge-inquiry { background: #fef3c7 !important; color: #b45309 !important; border: 1px solid rgba(245, 158, 11, 0.3) !important; }
.entity-badge-lead { background: #fce7f3 !important; color: #db2777 !important; border: 1px solid rgba(219, 39, 119, 0.3) !important; }
.entity-badge-seeker { background: #ecfdf5 !important; color: #059669 !important; border: 1px solid rgba(16, 185, 129, 0.3) !important; }

/* ==============================================================================
   JOB POSTING 3-STEP GUIDED WIZARD & POSTER UPLOADER STYLES
   ============================================================================== */
.wizard-steps-track {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: rgba(241, 245, 249, 0.8) !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: var(--radius-pill) !important;
  padding: 6px !important;
  margin-bottom: 24px !important;
  position: relative !important;
  gap: 8px !important;
}

.wizard-step-pill {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-pill) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--text-muted) !important;
  background: transparent !important;
  transition: all 0.25s ease !important;
  user-select: none !important;
  cursor: default !important;
  text-align: center !important;
}

.wizard-step-pill.active {
  background: #ffffff !important;
  color: var(--brand-primary) !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.15) !important;
}

.wizard-step-pill.completed {
  color: #10b981 !important;
}

.wizard-step-pill .step-num {
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.75rem !important;
  font-weight: 900 !important;
  background: rgba(148, 163, 184, 0.2) !important;
  color: inherit !important;
}

.wizard-step-pill.active .step-num {
  background: var(--brand-primary) !important;
  color: #ffffff !important;
}

.wizard-step-pill.completed .step-num {
  background: #10b981 !important;
  color: #ffffff !important;
}

/* Poster Upload Box */
.poster-upload-zone {
  border: 2px dashed rgba(0, 82, 204, 0.35) !important;
  border-radius: var(--radius-lg) !important;
  padding: 24px !important;
  text-align: center !important;
  background: rgba(248, 250, 252, 0.7) !important;
  transition: var(--transition-smooth) !important;
  cursor: pointer !important;
  position: relative !important;
}

.poster-upload-zone:hover,
.poster-upload-zone.dragover {
  border-color: var(--brand-primary) !important;
  background: rgba(0, 82, 204, 0.04) !important;
  transform: scale(1.005) !important;
}

.poster-preview-card {
  position: relative !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden !important;
  border: 1.5px solid rgba(0, 82, 204, 0.25) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
  max-width: 320px !important;
  margin: 0 auto !important;
  background: #000000 !important;
}

.poster-preview-img {
  width: 100% !important;
  max-height: 220px !important;
  object-fit: cover !important;
  display: block !important;
}

.poster-remove-btn {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  background: rgba(225, 29, 72, 0.9) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50% !important;
  width: 28px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 0.9rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  transition: var(--transition-smooth) !important;
}
.poster-remove-btn:hover {
  transform: scale(1.1) !important;
  background: #be123c !important;
}

/* Job Table Poster Micro-Thumbnail */
.job-table-thumb {
  width: 44px !important;
  height: 44px !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  border: 1.5px solid rgba(0, 82, 204, 0.2) !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  background: #f1f5f9 !important;
}
.job-table-thumb:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3) !important;
  z-index: 10 !important;
}

/* Lightbox Modal Overlay */
.lightbox-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(10, 18, 38, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  z-index: 200000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
}
.lightbox-modal-overlay.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.lightbox-card {
  max-width: 600px !important;
  max-height: 90vh !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5) !important;
  position: relative !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
}
.lightbox-card img {
  width: 100% !important;
  height: auto !important;
  max-height: 80vh !important;
  object-fit: contain !important;
  display: block !important;
}

/* ==============================================================================
   JOB DETAIL SPLIT GLASS MODAL & POSTER PREVIEW
   ============================================================================== */
.job-detail-split-layout {
  display: grid !important;
  grid-template-columns: 380px 1fr !important;
  min-height: 520px !important;
  max-height: 85vh !important;
}

@media (max-width: 820px) {
  .job-detail-split-layout {
    grid-template-columns: 1fr !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
  }
}

.job-detail-poster-col {
  background: #0b1329 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  position: relative !important;
  overflow: hidden !important;
}

.job-detail-poster-col::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at center, rgba(0, 82, 204, 0.3) 0%, transparent 70%) !important;
  pointer-events: none !important;
}

.job-detail-poster-img {
  width: 100% !important;
  max-height: 420px !important;
  object-fit: contain !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: zoom-in !important;
  position: relative !important;
  z-index: 2 !important;
}

.job-detail-poster-img:hover {
  transform: scale(1.05) !important;
}

.job-detail-body-col {
  padding: 32px 28px !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  background: #ffffff !important;
}

.job-card-poster-thumb {
  width: 52px !important;
  height: 52px !important;
  border-radius: 10px !important;
  object-fit: cover !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  border: 1.5px solid rgba(0, 82, 204, 0.2) !important;
  flex-shrink: 0 !important;
}

/* ==============================================================================
   CLIENT & B2B ERP ENTERPRISE MANAGEMENT SYSTEM (ADMIN)
   ============================================================================== */
.client-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.client-manage-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.client-manage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -8px rgba(0, 82, 204, 0.12);
  border-color: rgba(0, 82, 204, 0.4);
}

.client-manage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0052cc, #0284c7);
}

.client-card-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.client-card-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
  background: #ffffff;
  padding: 4px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  flex-shrink: 0;
}

/* ==============================================================================
   CLIENT WORKSPACE HEADER BANNER (Refined & Neatly Styled)
   ============================================================================== */
.client-workspace-banner {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 82, 204, 0.12);
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.05), 0 1px 4px rgba(0, 0, 0, 0.02);
}

.client-workspace-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0052cc, #0284c7);
}

.client-workspace-banner::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.ws-stat-mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.ws-stat-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 82, 204, 0.08);
  border-color: rgba(0, 82, 204, 0.3);
}

.ws-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 82, 204, 0.08);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ws-stat-num {
  font-size: 1.55rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
}

.ws-stat-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ==============================================================================
   EVENTS GALLERY & GLASSMORPHIC LIGHTBOX STYLES
   ============================================================================== */
.gallery-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0 70px 0;
}

.gallery-tabs-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 4px 18px 4px;
  margin-bottom: 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery-tabs-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
  white-space: nowrap;
}

.gallery-tab-pill:hover {
  color: var(--brand-primary);
  border-color: rgba(0, 82, 204, 0.4);
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 82, 204, 0.12);
}

.gallery-tab-pill.active {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.32);
  transform: translateY(-2px);
}

.gallery-tab-pill .tab-count {
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.06);
  font-weight: 800;
  transition: var(--transition-smooth);
}

.gallery-tab-pill.active .tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Responsive Masonry / Photo Cards Grid */
.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.gallery-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0f172a;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  cursor: pointer;
  height: 270px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 82, 204, 0.25), 0 0 0 1.5px rgba(56, 189, 248, 0.4);
}

.gallery-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-photo-card:hover .gallery-photo-img {
  transform: scale(1.08);
}

.gallery-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.1) 0%, rgba(15,23,42,0.4) 40%, rgba(15,23,42,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: #ffffff;
  transition: background 0.3s ease;
}

.gallery-photo-card:hover .gallery-photo-overlay {
  background: linear-gradient(180deg, rgba(0,82,204,0.15) 0%, rgba(15,23,42,0.6) 40%, rgba(15,23,42,0.96) 100%);
}

.gallery-photo-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-zoom-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-photo-card:hover .gallery-zoom-btn {
  opacity: 1;
  transform: scale(1);
}

.gallery-photo-meta {
  transform: translateY(6px);
  transition: transform 0.3s ease;
}

.gallery-photo-card:hover .gallery-photo-meta {
  transform: translateY(0);
}

.gallery-photo-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 4px 0;
  color: #ffffff;
}

.gallery-photo-sub {
  font-size: 0.78rem;
  color: #93c5fd;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Glassmorphic Full-Screen Lightbox Viewer */
.gallery-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox-modal.open {
  display: flex;
  opacity: 1;
}

.gallery-lightbox-frame {
  max-width: 1080px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(30, 41, 59, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox-modal.open .gallery-lightbox-frame {
  transform: scale(1);
}

.gallery-lightbox-stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #090d16;
  min-height: 400px;
  max-height: 68vh;
  overflow: hidden;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.gallery-lightbox-nav-btn:hover {
  background: var(--brand-primary);
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-prev {
  left: 16px;
}

.gallery-lightbox-next {
  right: 16px;
}

.gallery-lightbox-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 20;
}

.gallery-lightbox-close-btn:hover {
  background: var(--brand-rose);
  transform: scale(1.1);
}

.gallery-lightbox-footer {
  padding: 16px 24px;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .gallery-masonry-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  .gallery-photo-card {
    height: 220px;
  }
  .gallery-lightbox-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
  .gallery-lightbox-modal {
    padding: 12px;
  }
}


/* ==============================================================================
   FULL-WIDTH LIQUID GLASS BLUR RAIL BEHIND NAV DOCK (FRONTEND & BACKENDS)
   ============================================================================== */
.macos-dock-wrapper::before,
.client-dock-wrapper::before {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 96px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(244, 247, 251, 0.55) 20%, rgba(244, 247, 251, 0.88) 100%);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 -12px 36px rgba(0, 82, 204, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  pointer-events: none;
  z-index: -1;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.client-dock-wrapper::before {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.65) 25%, rgba(15, 23, 42, 0.92) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -14px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .macos-dock-wrapper::before,
  .client-dock-wrapper::before {
    height: 84px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
}

/* ==============================================================================
   FIXED RESPONSIVE DEVELOPER DYNAMIC ISLAND (LOGIN & CLIENT LOGIN)
   ============================================================================== */
.dev-dynamic-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10000;
  padding: 0 16px;
  pointer-events: none;
  width: 100%;
}

.dev-dynamic-island {
  pointer-events: auto;
  position: relative;
  background: linear-gradient(165deg, rgba(13, 27, 56, 0.94) 0%, rgba(7, 16, 38, 0.98) 100%);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1.5px solid #38bdf8;
  box-shadow: none;
  border-radius: var(--radius-pill);
  padding: 8px 18px 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 680px;
  width: auto;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.dev-dynamic-island:hover {
  background: linear-gradient(165deg, rgba(17, 34, 72, 0.96) 0%, rgba(9, 20, 48, 0.99) 100%);
  border-color: #7dd3fc;
  box-shadow: none;
}

.dev-island-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s ease;
}

.dev-island-brand:hover {
  opacity: 0.95;
}

/* White background container for logo like in login card */
.dev-island-logo-wrap {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: #ffffff;
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.dev-island-brand:hover .dev-island-logo-wrap {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(56, 189, 248, 0.4);
}

.dev-island-logo {
  max-height: 24px;
  max-width: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Fallback if logo is rendered without wrapper */
.dev-island-brand > img.dev-island-logo {
  width: 36px;
  height: 36px;
  padding: 4px;
  background: #ffffff;
  border-radius: 10px;
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.25);
  object-fit: contain;
}

.dev-island-company {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.dev-island-brand:hover .dev-island-company {
  color: #38bdf8;
}

/* Developer badge with dark theme */
.dev-island-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: #f1f5f9;
  font-size: 0.78rem;
  box-shadow: 0 2px 8px rgba(2, 6, 23, 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.dev-badge-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.dev-island-badge:hover .dev-badge-logo {
  transform: scale(1.15);
}

.dev-island-badge:hover {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.75), rgba(2, 132, 199, 0.85));
  border-color: rgba(56, 189, 248, 0.7);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 82, 204, 0.45);
  transform: scale(1.02);
}

.dev-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

.dev-label {
  color: #94a3b8;
  font-weight: 600;
  transition: color 0.2s;
}

.dev-island-badge:hover .dev-label {
  color: rgba(255, 255, 255, 0.9);
}

.dev-name {
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.dev-island-badge:hover .dev-name {
  color: #ffffff;
}

.dev-link-icon {
  font-size: 0.85rem;
  color: #38bdf8;
  opacity: 0.9;
  transition: transform 0.2s, color 0.2s;
}

.dev-island-badge:hover .dev-link-icon {
  transform: translate(2px, -2px);
  color: #ffffff;
  opacity: 1;
}

/* Liquid Glass Background for Login Portals */
.liquid-glass-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.liquid-glass-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  -webkit-filter: blur(80px);
  opacity: 0.45;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.45) 0%, rgba(2, 132, 199, 0.15) 70%, transparent 100%);
  top: -100px;
  left: -100px;
  animation-duration: 22s;
}

.orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.4) 0%, rgba(13, 148, 136, 0.2) 70%, transparent 100%);
  bottom: -120px;
  right: -100px;
  animation-duration: 26s;
  animation-delay: -5s;
}

.orb-3 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(168, 85, 247, 0.15) 70%, transparent 100%);
  top: 40%;
  left: 60%;
  animation-duration: 20s;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

@media (max-width: 640px) {
  .dev-island-company {
    display: none;
  }
  .dev-label {
    display: none;
  }
  .dev-dynamic-island {
    padding: 6px 12px;
    gap: 8px;
  }
}


/* ==============================================================================
   FULL-WIDTH LIQUID GLASS BLUR RAIL BEHIND NAV DOCK (FRONTEND & BACKENDS)
   ============================================================================== */
.macos-dock-wrapper::before,
.client-dock-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border-top: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 -8px 24px rgba(0, 82, 204, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  pointer-events: none;
  z-index: -1;
}

.client-dock-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  pointer-events: none;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.client-dock-wrapper::before {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border-top: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .macos-dock-wrapper,
  .client-dock-wrapper {
    bottom: 0 !important;
    height: 76px;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
}

/* ── MODERN TOGGLE SWITCH ── */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--brand-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

/* ==========================================================================
   UNIVERSAL HARD REFRESH BUTTON & SPIN ANIMATION
   ========================================================================== */
.btn-frontend-refresh,
.btn-page-refresh,
.btn-header-refresh {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-frontend-refresh:hover,
.btn-page-refresh:hover,
.btn-header-refresh:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.12);
}

.btn-frontend-refresh i.spinning,
.btn-page-refresh i.spinning,
.btn-header-refresh i.spinning {
  display: inline-block;
  animation: spinRefresh 0.75s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spinRefresh {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==============================================================================
   ENTERPRISE CONTENT PROTECTION & ANTI-SCRAPING ASSET INTEGRITY
   ============================================================================== */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* Maintain full form input accessibility so candidates can type, edit & paste */
input,
textarea,
select,
[contenteditable="true"],
.allow-select,
.input-control,
.form-input {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* Prevent image dragging and ghost saving */
img,
svg,
.gallery-photo-img,
.login-brand-logo,
.brand-logo,
.hero-img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}
