/* ================================================================
   KAIZEN BMS — GOOGLE ONE DESIGN SYSTEM
   Complete visual transformation matching Google One aesthetic
   ================================================================ */

/* NEW — Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;600;700&family=Google+Sans+Display:wght@700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ================================================================
   1. DESIGN TOKENS — GOOGLE ONE PALETTE
================================================================ */
:root {
  /* Google Brand Colors */
  --g-blue:          #4285F4;
  --g-blue-light:    #7BAAF7;
  --g-blue-dark:     #1967D2;
  --g-green:         #34A853;
  --g-green-light:   #81C995;
  --g-yellow:        #FBBC05;
  --g-red:           #EA4335;
  --g-red-light:     #F28B82;

  /* Gradients */
  --gradient-primary:   linear-gradient(135deg, #4285F4 0%, #7BAAF7 100%);
  --gradient-google:    linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 75%, #EA4335 100%);
  --gradient-blue:      linear-gradient(135deg, #4285F4 0%, #8AB4F8 100%);
  --gradient-teal:      linear-gradient(135deg, #00BCD4 0%, #26C6DA 100%);
  --gradient-purple:    linear-gradient(135deg, #7C4DFF 0%, #B39DDB 100%);
  --gradient-warm:      linear-gradient(135deg, #FBBC05 0%, #F9AB00 100%);
  --gradient-hero:      linear-gradient(160deg, #f8f9ff 0%, #eff4ff 40%, #f5f9f5 100%);
  --gradient-card-hover:linear-gradient(135deg, rgba(66,133,244,0.04) 0%, rgba(52,168,83,0.04) 100%);

  /* Accent (replaces old --accent) */
  --accent:          #4285F4;
  --accent-light:    #7BAAF7;
  --accent-dark:     #1967D2;
  --accent-glow:     rgba(66, 133, 244, 0.15);

  /* Backgrounds — soft Google-style */
  --bg-primary:      #ffffff;
  --bg-secondary:    #f8f9fb;
  --bg-tertiary:     #f1f3f6;
  --bg-elevated:     #ffffff;
  --bg-soft:         #f8f9fa;
  --bg-hero:         #f8f9ff;
  --bg-card:         #ffffff;

  /* Blob colors for animated background */
  --blob-color-1:    rgba(66, 133, 244, 0.12);
  --blob-color-2:    rgba(52, 168, 83, 0.10);
  --blob-color-3:    rgba(251, 188, 5, 0.08);
  --blob-color-4:    rgba(234, 67, 53, 0.08);

  /* Text */
  --text-primary:    #202124;
  --text-secondary:  #5f6368;
  --text-muted:      #9aa0a6;
  --text-light:      #bdc1c6;

  /* Borders */
  --border-color:    #e8eaed;
  --border-focus:    #4285F4;

  /* Shadows — Google's clean shadow system */
  --shadow-sm:       0 1px 2px rgba(60,64,67,0.08), 0 1px 3px rgba(60,64,67,0.10);
  --shadow-md:       0 2px 6px rgba(60,64,67,0.05), 0 4px 12px rgba(60,64,67,0.10);
  --shadow-lg:       0 4px 16px rgba(60,64,67,0.06), 0 8px 32px rgba(60,64,67,0.12);
  --shadow-xl:       0 8px 24px rgba(60,64,67,0.06), 0 16px 48px rgba(60,64,67,0.14);
  --shadow-accent:   0 4px 20px rgba(66,133,244,0.25);
  --shadow-blue:     0 0 0 4px rgba(66,133,244,0.15);

  /* Typography */
  --font-sans:       'Plus Jakarta Sans', 'Google Sans', system-ui, sans-serif;
  --font-display:    'Plus Jakarta Sans', 'Google Sans Display', sans-serif;

  /* Layout */
  --nav-height:      64px;
  --sidebar-width:   260px;

  /* Border radius — Google style: rounder */
  --radius-xs:       4px;
  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-xl:       28px;
  --radius-pill:     999px;
  --radius-full:     999px;

  /* Motion */
  --ease-google:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:      0.2s var(--ease-google);
  --transition-slow: 0.4s var(--ease-google);
}

/* UPDATED — Dark mode */
[data-theme="dark"] {
  --bg-primary:      #1a1c20;
  --bg-secondary:    #202124;
  --bg-tertiary:     #28292d;
  --bg-elevated:     #2d2f33;
  --bg-soft:         #202124;
  --bg-hero:         #1a1c20;
  --bg-card:         #28292d;

  --text-primary:    #e8eaed;
  --text-secondary:  #9aa0a6;
  --text-muted:      #5f6368;
  --text-light:      #3c4043;

  --border-color:    #3c4043;
  --shadow-sm:       0 1px 2px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:       0 4px 12px rgba(0,0,0,0.3), 0 2px 6px rgba(0,0,0,0.2);
  --shadow-lg:       0 8px 32px rgba(0,0,0,0.4);
  --shadow-xl:       0 16px 48px rgba(0,0,0,0.5);

  --blob-color-1:    rgba(66, 133, 244, 0.08);
  --blob-color-2:    rgba(52, 168, 83, 0.07);
}

/* ================================================================
   2. RESET & BASE
================================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background var(--transition-slow), color var(--transition-slow);
}

/* NEW — Noise texture overlay (very subtle) */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.4;
}

a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { display:block; max-width:100%; }
button { font-family: var(--font-sans); }
::selection { background: rgba(66,133,244,0.2); }

/* ================================================================
   3. NAVBAR — Google Glass style
================================================================ */
/* UPDATED */
.navbar{
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(232,234,237,0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: background 0.3s var(--ease-google), box-shadow 0.3s var(--ease-google);
}
[data-theme="dark"] .navbar {
  background: rgba(26,28,32,0.92);
  border-bottom-color: rgba(60,64,67,0.8);
}
.navbar.scrolled{
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1320px; margin: 0 auto;
  height: 100%; padding: 0 24px;
  display: flex; align-items: center; gap: 0;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
/* Logo */
.nav-brand a,
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary); text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-brand i, .nav-logo i { color: var(--g-blue); font-size: 1.2rem; }

/* NEW — Logo mark pill */
.nav-logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gradient-primary);
  display: grid; place-items: center;
  color: #fff; font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(66,133,244,0.3);
}

/* Nav links */
.nav-links,
.nav-center {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 40px;   /* instead of padding */
}
.nav-right {
  margin-left: auto;
}
.nav-link,
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s var(--ease-google);
  white-space: nowrap;
}
.nav-link:hover,
.nav-links a:hover,
.nav-link.active,
.nav-links a.active {
  color: var(--g-blue);
  background: rgba(66,133,244,0.08);
}

/* Nav right controls */
.nav-right,
.nav-cta {
  display: flex; align-items: center; gap: 8px;
}

/* Auth buttons */
.auth-buttons { display: flex; gap: 8px; align-items: center; }

/* Mobile hamburger */
.mobile-menu-toggle,
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: transparent;
  align-items: center; justify-content: center; cursor: pointer;
}
.mobile-menu-toggle span,
.hamburger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--text-secondary); border-radius: 2px;
  transition: all 0.25s var(--ease-google);
}

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px; border-radius: var(--radius-pill);
  background: transparent; border: 1px solid var(--border-color);
  color: var(--text-secondary); cursor: pointer;
  display: grid; place-items: center; font-size: 0.9rem;
  transition: all 0.2s var(--ease-google);
}
.theme-toggle:hover {
  background: rgba(66,133,244,0.08); color: var(--g-blue);
  border-color: rgba(66,133,244,0.3);
}

/* Language selector */
.language-selector select {
  padding: 7px 10px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  background: transparent; color: var(--text-secondary);
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500;
  cursor: pointer; outline: none;
  transition: border-color 0.2s;
}
.language-selector select:hover { border-color: var(--g-blue); }

/* User menu */
.user-menu-wrapper,
.user-menu-wrapper { position: relative; }

.user-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px; border-radius: var(--radius-pill);
  background: transparent; border: 1px solid var(--border-color);
  color: var(--text-primary); cursor: pointer;
  font-size: 0.875rem; font-weight: 500;
  transition: all 0.2s var(--ease-google);
}
.user-btn:hover {
  border-color: var(--g-blue);
  background: rgba(66,133,244,0.05);
}

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 220px; background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transition: all 0.2s var(--ease-google);
  z-index: 999;
}
.dropdown-menu.active,
.dropdown.active .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0) scale(1);
}
.dropdown-item,
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-md);
  font-size: 0.875rem; color: var(--text-secondary);
  text-decoration: none; cursor: pointer;
  transition: all 0.15s var(--ease-google);
}
.dropdown-item:hover,
.dropdown-menu a:hover {
  background: rgba(66,133,244,0.08); color: var(--g-blue);
  transform: none; /* override old translateX */
}
.dropdown-item i { width: 16px; text-align:center; color: var(--text-muted); font-size: 0.85rem; }
.dropdown-item:hover i { color: var(--g-blue); }
.dropdown-divider {
  border: none; border-top: 1px solid var(--border-color); margin: 6px 4px;
}
/* UPDATED — dropdown toggle */
.dropdown-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  text-decoration: none; transition: all 0.2s var(--ease-google);
}
.dropdown-toggle:hover { background: rgba(66,133,244,0.08); color: var(--g-blue); }
.dropdown-toggle i { font-size: 0.7rem; transition: transform 0.3s var(--ease-google); }
.dropdown.active .dropdown-toggle i { transform: rotate(180deg); }

.notification-bell{
    position:relative;
    margin-left:20px;
}

.notification-bell a{
    color:#333;
    font-size:20px;
    position:relative;
}

.notification-count{
    position:absolute;
    top:-8px;
    right:-10px;
    background:#EA4335;
    color:#fff;
    min-width:18px;
    height:18px;
    border-radius:50%;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}


/* ================================================================
   4. BUTTONS — Google pill style
================================================================ */
/* UPDATED */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: var(--radius-pill);
  font-family: var(--font-sans); font-size: 0.875rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none; white-space: nowrap;
  letter-spacing: 0.01em;
  transition: all 0.2s var(--ease-google);
  position: relative; overflow: hidden;
}
/* Ripple effect */
.btn::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,0);
  transition: background 0.3s var(--ease-google);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(66,133,244,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66,133,244,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent; color: var(--g-blue);
  border: 1.5px solid rgba(66,133,244,0.4);
}
.btn-outline:hover {
  background: rgba(66,133,244,0.08);
  border-color: var(--g-blue);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-secondary); color: var(--text-secondary);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background: rgba(66,133,244,0.06); color: var(--g-blue);
  border-color: rgba(66,133,244,0.3);
}

.btn-ghost {
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border-color);
}
.btn-ghost:hover { border-color: var(--text-secondary); color: var(--text-primary); }

.btn-fill {
  background: var(--text-primary); color: #fff;
}
.btn-fill:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn-accent {
  background: var(--gradient-primary); color: #fff;
  box-shadow: 0 2px 12px rgba(66,133,244,0.35);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66,133,244,0.45);
}

.btn-light {
  background: #fff; color: var(--g-blue);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-sm  { padding: 7px 16px; font-size: 0.8rem; }
.btn-lg  { padding: 13px 32px; font-size: 0.95rem; }
.btn-block { width: 100%; justify-content: center; }

/* Small buttons in tables */
.btn-xs {
  padding: 5px 12px; font-size: 0.75rem; border-radius: var(--radius-pill);
}
.btn-success { background: var(--g-green); color: #fff; }
.btn-warning { background: var(--g-yellow); color: #202124; }
.btn-danger  { background: var(--g-red); color: #fff; }
.btn-gold    { background: var(--gradient-warm); color: #fff; }

/* ================================================================
   5. FORMS — Google material style
================================================================ */
/* UPDATED */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; margin-bottom: 8px;
  font-size: 0.875rem; font-weight: 600; color: var(--text-primary);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea,
.form-group .form-control {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid var(--border-color); border-radius: var(--radius-md);
  background: var(--bg-primary); color: var(--text-primary);
  font-family: var(--font-sans); font-size: 0.9rem;
  transition: border-color 0.2s var(--ease-google), box-shadow 0.2s var(--ease-google);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-group .form-control:focus {
  border-color: var(--g-blue);
  box-shadow: 0 0 0 3px rgba(66,133,244,0.15);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group small { font-size: 0.78rem; color: var(--text-muted); margin-top: 5px; display: block; }

/* ================================================================
   6. ALERTS
================================================================ */
/* UPDATED */
.alert {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius-md);
  font-size: 0.875rem; margin-bottom: 16px; font-weight: 500;
}
.alert-success { background: rgba(52,168,83,0.08); color: #1a7f37; border: 1px solid rgba(52,168,83,0.2); }
.alert-error   { background: rgba(234,67,53,0.08);  color: #c5221f; border: 1px solid rgba(234,67,53,0.2); }
.alert-warning { background: rgba(251,188,5,0.1);   color: #b06000; border: 1px solid rgba(251,188,5,0.3); }
.alert-info    { background: rgba(66,133,244,0.08); color: #1967D2; border: 1px solid rgba(66,133,244,0.2); }
.alert-danger  { background: rgba(234,67,53,0.08);  color: #c5221f; border: 1px solid rgba(234,67,53,0.2); }

/* ================================================================
   7. BADGES / STATUS
================================================================ */
/* UPDATED */
.badge, .role-pill, .status-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
}
.badge-pending,   .status-pending    { background: rgba(251,188,5,0.12);  color: #b06000; }
.badge-shortlisted,.status-shortlisted{ background: rgba(52,168,83,0.1);  color: #1a7f37; }
.badge-rejected,  .status-rejected   { background: rgba(234,67,53,0.1);   color: #c5221f; }
.badge-interview, .status-interview  { background: rgba(66,133,244,0.1);  color: #1967D2; }
.badge-applied,   .status-applied    { background: rgba(66,133,244,0.1);  color: #1967D2; }
.badge-active,    .status-active     { background: rgba(52,168,83,0.1);   color: #1a7f37; }
.badge-inactive,  .status-inactive   { background: rgba(95,99,104,0.1);   color: #5f6368; }
.badge-premium    { background: linear-gradient(135deg,rgba(251,188,5,0.15),rgba(249,171,0,0.15)); color: #b06000; border: 1px solid rgba(251,188,5,0.3); }
.badge-verified   { background: rgba(52,168,83,0.1); color: #1a7f37; border: 1px solid rgba(52,168,83,0.2); }
.badge-featured   { background: linear-gradient(135deg,rgba(66,133,244,0.12),rgba(123,170,247,0.12)); color: #1967D2; }
.badge-expired    { background: rgba(95,99,104,0.1); color: #5f6368; }
.role-pill.role-candidate { background: rgba(52,168,83,0.1);  color: #1a7f37; }
.role-pill.role-employer  { background: rgba(66,133,244,0.1); color: #1967D2; }
.role-pill.role-admin     { background: rgba(234,67,53,0.1);  color: #c5221f; }

/* ================================================================
   8. HERO SECTION — Google One big type style
================================================================ */
/* UPDATED */
.hero,
.hero-section {
  min-height: 92vh;
  display: grid; place-items: center;
  padding: 120px clamp(16px, 5vw, 80px) 80px;
  position: relative; overflow: hidden;
  background: var(--bg-hero);
}
/* NEW — animated mesh background */
.hero::before,
.hero-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 70% at 20% 20%, var(--blob-color-1) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 80% 80%, var(--blob-color-2) 0%, transparent 55%),
              radial-gradient(ellipse 50% 50% at 50% 50%, var(--blob-color-3) 0%, transparent 50%);
  animation: heroMesh 16s ease-in-out infinite alternate;
}
@keyframes heroMesh {
  0%   { transform: scale(1) rotate(0deg); opacity: 1; }
  50%  { transform: scale(1.05) rotate(1deg); opacity: 0.85; }
  100% { transform: scale(1.02) rotate(-1deg); opacity: 1; }
}

.hero-inner,
.hero-content {
  position: relative; z-index: 1;
  max-width: 860px; text-align: center;
}

/* NEW — Google-style hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: var(--radius-pill);
  background: rgba(66,133,244,0.08);
  border: 1px solid rgba(66,133,244,0.2);
  font-size: 0.8rem; font-weight: 600; color: var(--g-blue);
  margin-bottom: 28px;
  animation: badgeFadeIn 0.6s var(--ease-google) both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--g-blue); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
@keyframes badgeFadeIn { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }

/* NEW — huge Google-style heading */
.hero-title,
.hero h1,
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--text-primary);
  margin-bottom: 20px;
  animation: titleReveal 0.7s 0.1s var(--ease-google) both;
}
@keyframes titleReveal { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* NEW — gradient text highlight */
.hero-title em,
.text-gradient,
.hero-text-highlight,
.gradient-text {
  font-style: normal;
  background: var(--gradient-google);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub,
.hero p,
.hero-content p,
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary); font-weight: 400;
  max-width: 560px; margin: 0 auto 36px;
  line-height: 1.7;
  animation: titleReveal 0.7s 0.2s var(--ease-google) both;
}

.hero-actions,
.hero-buttons {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
  animation: titleReveal 0.7s 0.3s var(--ease-google) both;
}

/* Floating cards in hero */
.hero-float,
.float-card {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(232,234,237,0.8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 500; color: var(--text-primary);
  animation: floatCard 7s ease-in-out infinite;
  white-space: nowrap;
}
.hero-float-1, .float-card:nth-child(1) { top: 22%; left: 4%; animation-delay: 0s; }
.hero-float-2, .float-card:nth-child(2) { top: 32%; right: 4%; animation-delay: -2.5s; }
.hero-float-3, .float-card:nth-child(3) { bottom: 20%; left: 8%; animation-delay: -5s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* Hero stats bar */
.hero-stats {
  display: flex; max-width: 640px; margin: 48px auto 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232,234,237,0.8);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
  animation: titleReveal 0.7s 0.4s var(--ease-google) both;
}
.hero-stat { flex: 1; padding: 18px 16px; text-align: center; border-right: 1px solid var(--border-color); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.hero-stat-lbl { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ================================================================
   9. SECTION SHARED
================================================================ */
/* UPDATED */
.section {
  padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 80px);
}
.section-label, .section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--g-blue);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.15;
  color: var(--text-primary); margin-bottom: 16px;
}
.section-title span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-sub, .section-header p {
  font-size: 1.05rem; color: var(--text-secondary); font-weight: 400;
  max-width: 600px; line-height: 1.7;
}
.section-header { margin-bottom: clamp(36px, 5vw, 56px); }

.services-header, .stats-inner, .features-inner, .testimonials-inner {
  max-width: 1200px; margin: 0 auto;
}

/* Page hero (sub-pages) */
.page-hero {
  background: linear-gradient(135deg, var(--g-blue) 0%, var(--g-blue-dark) 100%);
  color: #fff; padding: 100px 20px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 60%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.page-hero p { opacity: 0.88; position: relative; z-index: 1; font-size: 1.1rem; }

/* ================================================================
   10. CARDS & SERVICES — Google One card style
================================================================ */
/* UPDATED */
.card,
.dashboard-card,
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: transform 0.3s var(--ease-google), box-shadow 0.3s var(--ease-google), border-color 0.3s var(--ease-google);
  position: relative; overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(66,133,244,0.2);
  transform: translateY(-4px);
}

/* Service cards */
.svc-card {
  cursor: pointer; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(66,133,244,0.15);
}
.svc-card-thumb {
  height: 180px; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.svc-card-thumb-icon {
  font-size: 3.5rem; opacity: 0.85;
  transition: transform 0.4s var(--ease-spring);
}
.svc-card:hover .svc-card-thumb-icon { transform: scale(1.15) rotate(-3deg); }
.svc-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc-card-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.svc-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.svc-card-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.svc-card-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; transition: gap 0.2s var(--ease-spring); }
.svc-card:hover .svc-card-cta { gap: 10px; }
.svc-card-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}

/* Card colour themes */
.svc-placement .svc-card-thumb { background: linear-gradient(135deg, #fff7ed, #fed7aa); }
.svc-placement .svc-card-tag, .svc-placement .svc-card-cta { color: #ea580c; }
.svc-medical .svc-card-thumb { background: linear-gradient(135deg, #f0fdf4, #bbf7d0); }
.svc-medical .svc-card-tag, .svc-medical .svc-card-cta { color: #16a34a; }
.svc-education .svc-card-thumb { background: linear-gradient(135deg, #eff6ff, #bfdbfe); }
.svc-education .svc-card-tag, .svc-education .svc-card-cta { color: var(--g-blue); }
.svc-shopping .svc-card-thumb { background: linear-gradient(135deg, #fefce8, #fef08a); }
.svc-shopping .svc-card-tag, .svc-shopping .svc-card-cta { color: #d97706; }
.svc-consulting .svc-card-thumb { background: linear-gradient(135deg, #fdf2f8, #f9a8d4); }
.svc-consulting .svc-card-tag, .svc-consulting .svc-card-cta { color: #db2777; }
.svc-training .svc-card-thumb { background: linear-gradient(135deg, #eff6ff, #bfdbfe); }
.svc-training .svc-card-tag, .svc-training .svc-card-cta { color: #2563eb; }

.badge-live    { background: #dcfce7; color: #15803d; }
.badge-coming  { background: #f1f5f9; color: #64748b; }
.badge-new     { background: rgba(66,133,244,0.12); color: var(--g-blue); }

/* ================================================================
   11. DASHBOARD LAYOUT
================================================================ */
/* UPDATED */
.dashboard-container {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: 24px;
  max-width: 1320px; margin: 0 auto;
  padding: 24px;
  min-height: calc(100vh - var(--nav-height));
}

/* Sidebar */
.sidebar {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 20px 14px;
  height: fit-content;
  position: sticky; top: calc(var(--nav-height) + 16px);
  box-shadow: var(--shadow-sm);
}

.sidebar-menu { display: flex; flex-direction: column; gap: 2px; }
.sidebar-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-md);
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  text-decoration: none; transition: all 0.2s var(--ease-google);
}
.sidebar-menu a i { width: 16px; text-align: center; font-size: 0.85rem; color: var(--text-muted); }
.sidebar-menu a:hover { background: rgba(66,133,244,0.06); color: var(--text-primary); }
.sidebar-menu a:hover i { color: var(--g-blue); }
.sidebar-menu a.active {
  background: rgba(66,133,244,0.1); color: var(--g-blue); font-weight: 600;
}
.sidebar-menu a.active i { color: var(--g-blue); }

/* Dashboard stat cards */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-bottom: 28px;
}
.dashboard-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 24px 20px; text-align: center;
  transition: all 0.3s var(--ease-google);
  box-shadow: var(--shadow-sm);
}
.dashboard-card:hover {
  border-color: rgba(66,133,244,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.dashboard-card .number {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 800; line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.dashboard-card .number.green {
  background: linear-gradient(135deg, var(--g-green), var(--g-green-light));
  -webkit-background-clip: text; background-clip: text;
}
.dashboard-card .label {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted);
}

/* ================================================================
   12. TABLES
================================================================ */
/* UPDATED */
.data-table, table {
  width: 100%; border-collapse: collapse; font-size: 0.875rem;
}
.data-table thead tr, table thead tr {
  background: var(--bg-secondary);
}
.data-table th, table th {
  padding: 11px 16px; text-align: left;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}
.data-table td, table td {
  padding: 13px 16px; border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}
.data-table tbody tr, table tbody tr {
  transition: background 0.15s var(--ease-google);
}
.data-table tbody tr:hover, table tbody tr:hover { background: rgba(66,133,244,0.03); }
.data-table tbody tr:last-child td, table tbody tr:last-child td { border-bottom: none; }

/* ================================================================
   13. STATS SECTION
================================================================ */
/* UPDATED */
.stats-section { background: var(--bg-secondary); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.stat-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl); padding: 32px 24px;
  text-align: center;
  transition: all 0.3s var(--ease-google);
  position: relative; overflow: hidden;
}
.stat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-google);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stat-card:hover::after { transform: scaleX(1); }
.stat-num, .stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 800; line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.stat-num span { background: none; -webkit-text-fill-color: inherit; }
.stat-lbl, .stat-label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 4px; }
.stat-desc, .stat-description { font-size: 0.75rem; color: var(--text-muted); }

/* Stats strip (homepage) */
.stats-strip { padding: 40px 20px; background: var(--bg-primary); }
.stats-strip-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.stat-pill {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 20px; border-radius: var(--radius-xl);
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  transition: all 0.3s var(--ease-google);
  text-align: center;
}
.stat-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-pill i { font-size: 1.5rem; margin-bottom: 10px; color: var(--g-blue); }
.stat-pill strong { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--text-primary); }
.stat-pill span { font-size: 0.85rem; color: var(--text-muted); margin-top: 3px; }

/* ================================================================
   14. FEATURES
================================================================ */
/* UPDATED */
.features-section { background: var(--bg-primary); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feat-card, .feature-card, .value-card {
  padding: 32px 28px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  background: var(--bg-primary);
  transition: all 0.3s var(--ease-google);
  position: relative; overflow: hidden;
}
.feat-card::before, .feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-google);
}
.feat-card:hover, .feature-card:hover, .value-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-5px);
  border-color: rgba(66,133,244,0.2);
}
.feat-card:hover::before, .feature-card:hover::before { transform: scaleX(1); }
.feat-icon, .feature-icon, .value-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: grid; place-items: center; font-size: 1.3rem;
  background: rgba(66,133,244,0.08); color: var(--g-blue);
  margin-bottom: 18px;
}
.feat-title, .feature-card h3, .value-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  margin-bottom: 10px; color: var(--text-primary); letter-spacing: -0.01em;
}
.feat-desc, .feature-card p, .value-card p {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.65;
}

/* ================================================================
   15. TESTIMONIALS
================================================================ */
/* UPDATED */
.testimonials-section { background: var(--bg-secondary); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testi-card, .testimonial-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl); padding: 28px;
  transition: all 0.3s var(--ease-google);
}
.testi-card:hover, .testimonial-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.testi-stars, .stars { display: flex; gap: 3px; color: var(--g-yellow); font-size: 0.85rem; margin-bottom: 14px; }
.testi-text, .testimonial-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testi-author, .testimonial-author { font-weight: 600; font-size: 0.875rem; }
.testi-role, .testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

/* ================================================================
   16. TAGLINE SECTION
================================================================ */
/* UPDATED */
.tagline-section {
  background: var(--accent-light);
  padding: clamp(60px,8vw,100px) clamp(16px,5vw,80px);
  position: relative; overflow: hidden;
  color:bla;
}
.tagline-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201, 208, 220, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse 50% 60% at 80% 30%, rgba(52,168,83,0.08) 0%, transparent 50%);
}
.tagline-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.tagline-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem); font-weight: 700;
  line-height: 1.4; color: #fff; font-style: italic;
  letter-spacing: -0.01em; margin-bottom: 20px;
}
.tagline-author { font-size: 0.9rem; color: rgba(255,255,255,0.4); font-weight: 400; }

/* ================================================================
   17. CTA SECTION
================================================================ */
/* UPDATED */
.cta-section {
  background: linear-gradient(160deg, #1a1c20 0%, #1e3a5f 100%);
  padding: clamp(60px,8vw,100px) clamp(16px,5vw,80px);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(66,133,244,0.18) 0%, transparent 60%),
              radial-gradient(ellipse 40% 60% at 20% 80%, rgba(52,168,83,0.12) 0%, transparent 50%);
}
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: #fff; margin-bottom: 16px; letter-spacing: -0.025em;
}
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); margin-bottom: 36px; line-height: 1.6; }
.cta-actions, .cta-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 860px; margin: 0 auto;
  position: relative; z-index: 1;
}
.cta-card {
  padding: 44px 36px; border-radius: var(--radius-xl); text-align: center;
  color: #fff;
}
.cta-candidate { background: linear-gradient(135deg, #1967D2, #4285F4); }
.cta-employer  { background: linear-gradient(135deg, #0d7a3e, #34A853); }
.cta-seeker    { background: linear-gradient(135deg, #1967D2, #4285F4); }
.cta-card i    { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.cta-card h3   { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.cta-card p    { font-size: 0.95rem; opacity: 0.88; margin-bottom: 22px; line-height: 1.6; }
.btn-white     { background: #fff; color: var(--text-primary); border-radius: var(--radius-pill); padding: 11px 24px; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; transition: all 0.2s var(--ease-google); text-decoration: none; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ================================================================
   18. JOBS GRID (HOMEPAGE)
================================================================ */
/* UPDATED */
.jobs-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.job-card {
  background: var(--bg-primary); border: 1px solid var(--border-color);
  border-radius: var(--radius-xl); padding: 22px;
  transition: all 0.3s var(--ease-google); position: relative;
}
.job-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(66,133,244,0.2); }
.job-card-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.company-initial, .company-logo-placeholder {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--gradient-primary); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.job-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.job-card p  { font-size: 0.85rem; color: var(--text-muted); }
.job-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.job-chips span {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--bg-secondary); color: var(--text-secondary);
  font-size: 0.75rem; font-weight: 500;
  border: 1px solid var(--border-color);
}
.job-chips span i { color: var(--g-blue); font-size: 0.7rem; }
.job-excerpt { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.job-card-foot { display: flex; justify-content: space-between; align-items: center; }
.job-age { font-size: 0.78rem; color: var(--text-muted); }

/* ================================================================
   19. AUTH PAGES
================================================================ */
/* UPDATED */
.auth-page, .auth-wrapper {
  min-height: calc(100vh - var(--nav-height));
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(160deg, #f8f9ff 0%, #eff4ff 50%, #f5f9f5 100%);
  position: relative; overflow: hidden;
}
.auth-page::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 20% 20%, rgba(66,133,244,0.1) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 80% 80%, rgba(52,168,83,0.07) 0%, transparent 55%);
}
.auth-card {
  background: var(--bg-primary); border-radius: var(--radius-xl);
  padding: 44px 40px; max-width: 480px; width: 100%;
  box-shadow: var(--shadow-xl); border: 1px solid var(--border-color);
  position: relative; z-index: 1;
  animation: cardSlideUp 0.5s var(--ease-google) both;
}
@keyframes cardSlideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.auth-logo-wrap { text-align: center; margin-bottom: 30px; }
.auth-logo-icon {
  width: 56px; height: 56px; border-radius: var(--radius-xl);
  background: var(--gradient-primary);
  display: grid; place-items: center; margin: 0 auto 14px;
  font-size: 1.4rem; color: #fff;
  box-shadow: 0 4px 16px rgba(66,133,244,0.35);
}
.auth-logo-wrap h1 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.auth-logo-wrap p { font-size: 0.9rem; color: var(--text-muted); }
.auth-switch { text-align: center; margin-top: 16px; font-size: 0.875rem; color: var(--text-muted); }
.auth-switch a, .link { color: var(--g-blue); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }

/* Role selector */
.role-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.role-option {
  padding: 14px; border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg); background: var(--bg-secondary);
  cursor: pointer; text-align: center; font-weight: 600;
  transition: all 0.2s var(--ease-google);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.role-option i { font-size: 1.3rem; color: var(--text-muted); }
.role-option span { font-size: 0.875rem; }
.role-option small { font-size: 0.73rem; color: var(--text-muted); font-weight: 400; }
.role-option:hover, .role-option.selected, .role-option.active {
  border-color: var(--g-blue); background: rgba(66,133,244,0.06);
  color: var(--g-blue);
}
.role-option:hover i, .role-option.selected i, .role-option.active i { color: var(--g-blue); }

/* Password field */
.input-pw-wrap { position: relative; }
.input-pw-wrap input { padding-right: 44px; }
.pw-eye {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--text-muted);
  font-size: 0.95rem; padding: 0;
  transition: color 0.2s;
}
.pw-eye:hover { color: var(--g-blue); }

/* Password strength */
.pw-strength-bar {
  height: 4px; border-radius: 2px; background: var(--border-color);
  margin-top: 8px; overflow: hidden;
}
.pw-strength-bar > div { height: 100%; border-radius: 2px; transition: width 0.4s, background 0.4s; }
.pw-checklist { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.pw-checklist span {
  font-size: 0.75rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 4px;
  transition: color 0.2s;
}
.pw-checklist span.met { color: var(--g-green); }
.pw-checklist span i { font-size: 0.65rem; }

/* Input prefix (phone code) */
.input-prefix-wrap { display: flex; }
.input-prefix {
  padding: 11px 12px; border: 1.5px solid var(--border-color);
  border-right: none; border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: var(--bg-secondary); color: var(--text-secondary);
  font-size: 0.9rem; font-weight: 500; white-space: nowrap;
}
.input-prefix-wrap input { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

/* Demo credentials */
.demo-creds {
  margin-top: 20px; padding: 16px; background: var(--bg-secondary);
  border-radius: var(--radius-lg); border: 1px solid var(--border-color);
}
.demo-title { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); margin-bottom: 10px; }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.demo-btn {
  padding: 8px 10px; border-radius: var(--radius-md); border: 1px solid var(--border-color);
  background: var(--bg-primary); color: var(--text-secondary);
  cursor: pointer; font-size: 0.78rem; font-weight: 500;
  transition: all 0.2s var(--ease-google);
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.demo-btn:hover { border-color: var(--g-blue); color: var(--g-blue); background: rgba(66,133,244,0.05); }

/* ================================================================
   20. SEARCH PAGE
================================================================ */
/* UPDATED */
.search-layout,
.search-container {
  display: grid; grid-template-columns: 260px 1fr 340px;
  gap: 20px; max-width: 1320px; margin: 24px auto; padding: 0 24px;
}
.filter-sidebar,
.filter-section {
  background: var(--bg-primary);
  border: 1px solid var(--border-color); border-radius: var(--radius-xl);
  padding: 20px; height: fit-content;
  position: sticky; top: calc(var(--nav-height) + 16px);
  box-shadow: var(--shadow-sm);
}
.filter-sidebar h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.filter-group { margin-bottom: 20px; }
.filter-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 7px; }

/* Job list items */
.job-list { display: flex; flex-direction: column; gap: 0; }
.job-list-item, .jli-body {
  display: flex; gap: 14px; padding: 18px 20px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer; transition: background 0.15s var(--ease-google);
  text-decoration: none; color: inherit;
}
.job-list-item:hover, .job-list-item.active { background: rgba(66,133,244,0.04); }
.job-list-item.active { border-left: 2px solid var(--g-blue); }
.jli-logo, .company-logo-sm {
  width: 42px; height: 42px; border-radius: var(--radius-md); flex-shrink: 0;
  background: var(--gradient-primary); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.jli-body { flex-direction: column; gap: 5px; flex: 1; padding: 0; }
.jli-body h3 { font-size: 0.9rem; font-weight: 700; }
.jli-company { font-size: 0.8rem; color: var(--text-muted); }
.jli-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.jli-chips span { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.jli-meta { text-align: right; flex-shrink: 0; }
.jli-meta small { font-size: 0.75rem; color: var(--text-muted); }

/* Job detail panel */
.job-detail-panel {
  background: var(--bg-primary); border: 1px solid var(--border-color);
  border-radius: var(--radius-xl); padding: 24px;
  height: fit-content; position: sticky; top: calc(var(--nav-height) + 16px);
  box-shadow: var(--shadow-sm);
}
.jdp-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.jdp-logo { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--gradient-primary); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.3rem; flex-shrink: 0; }
.jdp-company { font-size: 0.85rem; color: var(--text-muted); }
.jdp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.meta-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: var(--bg-secondary); color: var(--text-secondary);
  font-size: 0.78rem; font-weight: 500; border: 1px solid var(--border-color);
}
.meta-chip i { color: var(--g-blue); }
.jdp-body { margin-bottom: 20px; }
.jdp-body h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.jdp-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.jdp-actions { display: flex; flex-direction: column; gap: 8px; }
.jdp-empty { text-align: center; padding: 48px 20px; color: var(--text-muted); }
.jdp-empty i { font-size: 2rem; margin-bottom: 10px; display: block; }

/* Search results */
.search-results { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); overflow: hidden; }
.results-bar { padding: 14px 20px; border-bottom: 1px solid var(--border-color); background: var(--bg-secondary); font-size: 0.875rem; color: var(--text-muted); }
.results-bar strong { color: var(--text-primary); }

/* ================================================================
   21. PROFILE PAGE
================================================================ */
/* UPDATED */
.dashboard-wrap {
  display: grid; grid-template-columns: var(--sidebar-width) 1fr;
  gap: 24px; max-width: 1320px; margin: 0 auto; padding: 24px;
  min-height: calc(100vh - var(--nav-height));
}
.dash-sidebar {
  background: var(--bg-primary); border: 1px solid var(--border-color);
  border-radius: var(--radius-xl); padding: 20px 14px;
  height: fit-content;
  position: sticky; top: calc(var(--nav-height) + 16px);
  box-shadow: var(--shadow-sm);
}
.sidebar-profile {
  text-align: center; padding: 16px 0 20px;
  border-bottom: 1px solid var(--border-color); margin-bottom: 12px;
}
.sidebar-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient-primary); color: #fff;
  display: grid; place-items: center; margin: 0 auto 10px;
  font-size: 1.3rem; font-weight: 700;
  box-shadow: 0 4px 12px rgba(66,133,244,0.3);
}
.snav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-md);
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  text-decoration: none; transition: all 0.2s var(--ease-google);
}
.snav-link i { width: 16px; text-align: center; font-size: 0.85rem; color: var(--text-muted); }
.snav-link:hover { background: rgba(66,133,244,0.06); color: var(--text-primary); }
.snav-link:hover i { color: var(--g-blue); }
.snav-link.active { background: rgba(66,133,244,0.1); color: var(--g-blue); font-weight: 600; }
.snav-link.active i { color: var(--g-blue); }
.snav-premium { color: var(--g-yellow) !important; }
.snav-premium i { color: var(--g-yellow) !important; }
.snav-count {
  margin-left: auto; background: var(--g-red); color: #fff;
  border-radius: var(--radius-pill); padding: 2px 7px;
  font-size: 0.7rem; font-weight: 700;
}
.dash-main { flex: 1; min-width: 0; }
.page-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.page-top h1 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.page-top p { font-size: 0.875rem; color: var(--text-muted); }

/* Profile completion meter */
.completion-wrap { margin-top: 12px; }
.completion-label { display: flex; justify-content: space-between; font-size: 0.78rem; font-weight: 600; margin-bottom: 7px; }
.progress-track { height: 6px; background: var(--border-color); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient-primary); border-radius: 3px; transition: width 0.6s var(--ease-google); }

/* Stat cards */
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 24px; }
.stat-card { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 20px; display: flex; gap: 14px; align-items: center; transition: all 0.3s var(--ease-google); }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sc-icon { width: 44px; height: 44px; border-radius: var(--radius-md); display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.sc-info h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; line-height: 1; }
.sc-info p { font-size: 0.78rem; color: var(--text-muted); margin-top: 3px; }
.stat-card.blue  .sc-icon { background: rgba(66,133,244,0.1); color: var(--g-blue); }
.stat-card.blue  .sc-info h3 { background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-card.green .sc-icon { background: rgba(52,168,83,0.1); color: var(--g-green); }
.stat-card.green .sc-info h3 { color: var(--g-green); }
.stat-card.purple .sc-icon { background: rgba(124,77,255,0.1); color: #7C4DFF; }
.stat-card.purple .sc-info h3 { color: #7C4DFF; }
.stat-card.orange .sc-icon { background: rgba(234,67,53,0.1); color: var(--g-red); }
.stat-card.orange .sc-info h3 { color: var(--g-red); }

/* Dash section */
.dash-section { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.ds-header { padding: 18px 22px 14px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); }
.ds-header h2 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.ds-header h2 i { color: var(--g-blue); font-size: 0.9rem; }

/* Card panel */
.card-panel { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 24px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.card-panel h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; gap: 8px; }
.card-panel h3 i { color: var(--g-blue); }

/* Form sections in profile */
.form-section { margin-bottom: 4px; }
.form-section.card-panel h3 { color: var(--text-primary); }
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-actions { display: flex; gap: 12px; padding-top: 8px; }
.field-error { font-size: 0.78rem; color: var(--g-red); margin-top: 5px; display: block; }
.is-invalid { border-color: var(--g-red) !important; }

/* Skills chips */
.skill-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: var(--radius-pill);
  background: rgba(66,133,244,0.1); color: var(--g-blue);
  font-size: 0.78rem; font-weight: 600; border: 1px solid rgba(66,133,244,0.2);
}
.skill-chip-sm {
  display: inline-flex; align-items: center;
  padding: 3px 9px; border-radius: var(--radius-pill);
  background: rgba(66,133,244,0.08); color: var(--g-blue);
  font-size: 0.72rem; font-weight: 600;
}
.skills-preview { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; min-height: 10px; }

/* ================================================================
   22. APPLICATIONS LIST
================================================================ */
/* UPDATED */
.applications-list { display: flex; flex-direction: column; }
.application-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px; border-bottom: 1px solid var(--border-color);
  transition: background 0.15s var(--ease-google);
}
.application-item:hover { background: rgba(66,133,244,0.03); }
.application-item:last-child { border-bottom: none; }
.app-logo, .app-avatar {
  width: 40px; height: 40px; border-radius: var(--radius-md); flex-shrink: 0;
  background: var(--gradient-primary); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.app-info { flex: 1; min-width: 0; }
.app-info h3, .app-info h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.app-company { font-size: 0.8rem; color: var(--text-muted); }
.app-meta { display: flex; gap: 12px; font-size: 0.75rem; color: var(--text-muted); flex-wrap: wrap; margin-top: 4px; }
.app-meta i { color: var(--g-blue); font-size: 0.7rem; }

/* ================================================================
   23. TABS
================================================================ */
/* UPDATED */
.tab-bar { display: flex; gap: 0; border-bottom: 1px solid var(--border-color); margin-bottom: 20px; overflow-x: auto; }
.tab {
  padding: 11px 20px; font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted); text-decoration: none; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s var(--ease-google);
  display: flex; align-items: center; gap: 7px;
}
.tab:hover { color: var(--g-blue); }
.tab.active { color: var(--g-blue); border-bottom-color: var(--g-blue); font-weight: 600; }
.tab-count { background: rgba(66,133,244,0.1); color: var(--g-blue); border-radius: var(--radius-pill); padding: 2px 7px; font-size: 0.72rem; font-weight: 700; }

/* ================================================================
   24. PAGINATION
================================================================ */
/* UPDATED */
.pagination { display: flex; justify-content: center; gap: 5px; padding: 20px; flex-wrap: wrap; }
.pagination a, .page-btn {
  padding: 7px 13px; border: 1px solid var(--border-color);
  border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 500;
  color: var(--text-secondary); cursor: pointer;
  transition: all 0.2s var(--ease-google); text-decoration: none;
  background: var(--bg-primary);
}
.pagination a:hover, .page-btn:hover { border-color: var(--g-blue); color: var(--g-blue); background: rgba(66,133,244,0.06); }
.pagination a.active, .page-btn.active { background: var(--g-blue); border-color: var(--g-blue); color: #fff; }

/* ================================================================
   25. FLASH MESSAGES
================================================================ */
/* UPDATED */
.flash-banner, .flash-message {
  position: fixed; top: 80px; right: 20px; z-index: 9998;
  padding: 14px 18px; border-radius: var(--radius-xl);
  font-size: 0.875rem; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-xl); max-width: 380px;
  animation: flashSlideIn 0.35s var(--ease-spring) both;
}
@keyframes flashSlideIn { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }
.flash-success { background: rgba(52,168,83,0.95); color: #fff; backdrop-filter: blur(12px); }
.flash-error   { background: rgba(234,67,53,0.95);  color: #fff; backdrop-filter: blur(12px); }
.flash-close   { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.8); cursor: pointer; font-size: 1rem; }

/* ================================================================
   26. MODALS
================================================================ */
/* UPDATED */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(32,33,36,0.6);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-box {
  background: var(--bg-primary); border-radius: var(--radius-xl);
  padding: 32px; max-width: 500px; width: 90%;
  box-shadow: var(--shadow-xl); border: 1px solid var(--border-color);
  animation: cardSlideUp 0.3s var(--ease-google) both;
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-header h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.modal-close { background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--text-muted); padding: 4px; border-radius: var(--radius-sm); transition: color 0.2s; }
.modal-close:hover { color: var(--g-red); }
.modal-actions { display: flex; gap: 10px; margin-top: 20px; }
.modal-form .form-group { margin-bottom: 16px; }

/* ================================================================
   27. ADMIN PANEL SPECIFICS
================================================================ */
/* UPDATED */
.admin-wrap { display: flex; gap: 24px; max-width: 1320px; margin: 0 auto; padding: 24px; min-height: calc(100vh - var(--nav-height)); }
.admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 14px; margin-bottom: 22px; }
.ast-card { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 20px; display: flex; gap: 14px; align-items: center; transition: all 0.3s var(--ease-google); box-shadow: var(--shadow-sm); }
.ast-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ast-icon { width: 44px; height: 44px; border-radius: var(--radius-md); display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.ast-info h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; line-height: 1; }
.ast-info p { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; }
.ast-card.blue   .ast-icon { background: rgba(66,133,244,0.1); color: var(--g-blue); }  .ast-card.blue   .ast-info h3 { color: var(--g-blue); }
.ast-card.green  .ast-icon { background: rgba(52,168,83,0.1);  color: var(--g-green); } .ast-card.green  .ast-info h3 { color: var(--g-green); }
.ast-card.purple .ast-icon { background: rgba(124,77,255,0.1); color: #7C4DFF; }         .ast-card.purple .ast-info h3 { color: #7C4DFF; }
.ast-card.orange .ast-icon { background: rgba(234,67,53,0.1);  color: var(--g-red); }   .ast-card.orange .ast-info h3 { color: var(--g-red); }
.ast-card.teal   .ast-icon { background: rgba(0,188,212,0.1);  color: #00BCD4; }         .ast-card.teal   .ast-info h3 { color: #00BCD4; }
.ast-card.red    .ast-icon { background: rgba(234,67,53,0.1);  color: var(--g-red); }   .ast-card.red    .ast-info h3 { color: var(--g-red); }
.ast-card.gold   .ast-icon { background: rgba(251,188,5,0.12); color: var(--g-yellow); } .ast-card.gold   .ast-info h3 { color: #b06000; }
.ast-card.indigo .ast-icon { background: rgba(66,133,244,0.08);color: var(--g-blue); }   .ast-card.indigo .ast-info h3 { color: var(--g-blue); }

.admin-mini-stats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.ams-item { display: flex; flex-direction: column; align-items: center; padding: 10px 18px; border-radius: var(--radius-xl); text-decoration: none; background: var(--bg-primary); border: 1px solid var(--border-color); font-size: 0.8rem; color: var(--text-secondary); transition: all 0.2s var(--ease-google); }
.ams-item strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.ams-item:hover, .ams-item.active { border-color: var(--g-blue); color: var(--g-blue); background: rgba(66,133,244,0.06); }
.ams-item.active strong { color: var(--g-blue); }
.ams-item.gold strong { color: #b06000; }
.ams-item.red strong { color: var(--g-red); }

/* Quick action buttons */
.qa-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.qa-btn { padding: 10px 18px; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; border: 1px solid; transition: all 0.2s var(--ease-google); }
.qa-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.qa-blue   { background: rgba(66,133,244,0.1);  color: var(--g-blue);  border-color: rgba(66,133,244,0.2); }
.qa-green  { background: rgba(52,168,83,0.1);   color: var(--g-green); border-color: rgba(52,168,83,0.2); }
.qa-purple { background: rgba(124,77,255,0.1);  color: #7C4DFF;        border-color: rgba(124,77,255,0.2); }
.qa-orange { background: rgba(234,67,53,0.1);   color: var(--g-red);   border-color: rgba(234,67,53,0.2); }
.qa-gold   { background: rgba(251,188,5,0.12);  color: #b06000;        border-color: rgba(251,188,5,0.25); }
.qa-gray   { background: var(--bg-secondary);   color: var(--text-secondary); border-color: var(--border-color); }

/* Search bar in admin */
.search-bar-form, .filter-bar { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; align-items: center; }
.search-bar-form .flex-1 { flex: 1; min-width: 220px; }
.filter-inline-form, .filter-inline { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; flex: 1; }

/* Inline actions */
.actions-cell { white-space: nowrap; }
.td-name { display: flex; align-items: center; gap: 10px; }
.td-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--gradient-primary); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.td-name > div > strong { display: block; font-size: 0.875rem; font-weight: 600; }
.td-name > div > small { font-size: 0.75rem; color: var(--text-muted); }

/* Info rows */
.info-rows { display: flex; flex-direction: column; gap: 0; }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--border-color); font-size: 0.875rem; }
.info-row:last-child { border-bottom: none; }
.info-row span { color: var(--text-muted); }
.info-row strong { font-weight: 600; }

/* Danger zone */
.card-danger-zone, .card-danger { border-color: rgba(234,67,53,0.2) !important; background: rgba(234,67,53,0.02) !important; }
.card-danger-zone h3 { color: var(--g-red); }

/* Log items */
.logs-list { display: flex; flex-direction: column; }
.log-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-color); align-items: flex-start; }
.log-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(66,133,244,0.1); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.log-icon i { font-size: 0.75rem; color: var(--g-blue); }
.log-info { flex: 1; }
.log-info strong { font-size: 0.875rem; display: block; }
.log-info span { font-size: 0.8rem; color: var(--text-muted); }
.log-info small { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 2px; }

/* Jobs compact list */
.jobs-compact-list, .jobs-list-compact { display: flex; flex-direction: column; }
.jcl-item { display: flex; align-items: center; gap: 12px; padding: 12px 22px; border-bottom: 1px solid var(--border-color); }
.jcl-logo { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--gradient-primary); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.jcl-info { flex: 1; }
.jcl-info h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 2px; }
.jcl-info span { font-size: 0.78rem; color: var(--text-muted); }
.jcl-stats { display: flex; align-items: center; gap: 8px; }

/* Employer application cards */
.applications-employer-list { display: flex; flex-direction: column; gap: 12px; padding: 16px; }
.app-employer-card { display: flex; gap: 18px; padding: 20px; background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); transition: all 0.3s var(--ease-google); align-items: flex-start; }
.app-employer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.aec-left { display: flex; gap: 14px; flex: 1; min-width: 0; }
.aec-avatar { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--gradient-primary); color: #fff; display: grid; place-items: center; font-weight: 700; flex-shrink: 0; }
.aec-info h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.aec-title { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; }
.aec-meta { display: flex; gap: 12px; font-size: 0.75rem; color: var(--text-muted); flex-wrap: wrap; margin-bottom: 8px; }
.aec-meta i { color: var(--g-blue); }
.aec-mid { display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 120px; }
.aec-mid small { font-size: 0.75rem; color: var(--text-muted); }
.aec-mid strong { font-size: 0.875rem; font-weight: 600; }
.aec-right { display: flex; flex-direction: column; gap: 8px; min-width: 160px; }
.status-update-form { display: flex; gap: 5px; }
.skills-chips-sm { display: flex; flex-wrap: wrap; gap: 5px; }

/* Candidate card grid */
.candidates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.candidate-card { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 22px; position: relative; transition: all 0.3s var(--ease-google); }
.candidate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cc-top { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.cc-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-primary); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.cc-header-info h3 { font-size: 0.9rem; font-weight: 700; }
.cc-header-info p { font-size: 0.8rem; color: var(--text-muted); }
.cc-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; font-size: 0.78rem; color: var(--text-muted); }
.cc-meta span { display: flex; align-items: center; gap: 4px; }
.cc-meta i { color: var(--g-blue); font-size: 0.7rem; }
.cc-edu { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.cc-actions { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* Recruiter list */
.recruiters-list { display: flex; flex-direction: column; gap: 12px; }
.recruiter-card { display: flex; gap: 16px; padding: 20px; background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); transition: all 0.3s var(--ease-google); }
.recruiter-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.recruiter-logo { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--gradient-primary); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.2rem; flex-shrink: 0; }
.recruiter-info { flex: 1; }
.recruiter-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.recruiter-msg { font-size: 0.8rem; color: var(--text-muted); font-style: italic; margin-top: 6px; padding-left: 8px; border-left: 2px solid var(--border-color); }
.recruiter-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }

/* Meetings */
.meetings-list { display: flex; flex-direction: column; gap: 12px; }
.meeting-card { display: flex; gap: 18px; padding: 20px; background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); transition: all 0.3s var(--ease-google); }
.meeting-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.meeting-date-block { min-width: 80px; text-align: center; }
.md-day { font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; color: var(--g-blue); }
.md-month { font-size: 0.75rem; color: var(--text-muted); }
.md-time { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; display: flex; align-items: center; gap: 4px; justify-content: center; }
.meeting-info { flex: 1; }
.meeting-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; }
.meeting-info p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.meeting-info p small { color: var(--text-muted); }
.meeting-notes { font-size: 0.8rem; color: var(--text-muted); font-style: italic; }
.meeting-pending { border-color: rgba(251,188,5,0.3); background: rgba(251,188,5,0.02); }
.meeting-approved { border-color: rgba(52,168,83,0.3); }
.meeting-cancelled { opacity: 0.5; }
.meeting-status-col { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; min-width: 120px; }

/* Premium pages */
.premium-page { max-width: 1000px; margin: 0 auto; padding: 32px 24px; }
.text-center { text-align: center; }
.text-gold { color: var(--g-yellow); }
.tier-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 28px; }
.tier-card { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 28px; text-align: center; position: relative; transition: all 0.3s var(--ease-google); }
.tier-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tier-highlight { border-color: var(--g-blue); box-shadow: 0 0 0 2px rgba(66,133,244,0.2); }
.tier-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient-primary); color: #fff; padding: 4px 16px; border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 700; white-space: nowrap; }
.tier-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.tier-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--g-blue); line-height: 1; margin-bottom: 4px; }
.tier-price small { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.tier-duration { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 18px; }
.tier-features { list-style: none; text-align: left; margin-bottom: 20px; }
.tier-features li { font-size: 0.875rem; color: var(--text-secondary); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.tier-features li i { color: var(--g-green); }
.compare-table { padding: 24px; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.compare-col { border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 24px; }
.compare-premium { border-color: var(--g-blue); background: rgba(66,133,244,0.03); }
.popular-badge { background: var(--gradient-primary); color: #fff; padding: 4px 14px; border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 700; display: inline-block; margin-bottom: 10px; }
.compare-price { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--g-blue); margin: 10px 0 16px; }
.feature-list { list-style: none; margin-bottom: 20px; }
.feature-list li { padding: 6px 0; font-size: 0.875rem; display: flex; align-items: center; gap: 8px; }
.feat-yes i { color: var(--g-green); }
.feat-no { color: var(--text-muted); }
.feat-no i { color: var(--border-color); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 16px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border-radius: var(--radius-lg); background: var(--bg-secondary); }
.benefit-item i { font-size: 1.5rem; flex-shrink: 0; }
.benefit-item strong { font-size: 0.875rem; font-weight: 700; display: block; margin-bottom: 4px; }
.benefit-item p { font-size: 0.8rem; color: var(--text-muted); }

/* Search candidate bar */
.candidate-search-bar { margin-bottom: 20px; }
.csb-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.csb-grid .input-icon-wrap { flex: 1; min-width: 180px; position: relative; }
.input-icon-wrap { position: relative; }
.input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.85rem; pointer-events: none; }
.input-icon-wrap input { padding-left: 36px !important; }

/* Filter tags / tabs for candidate pages */
.filter-bar.card-panel { padding: 16px 20px; }
.verified-badge { background: rgba(52,168,83,0.1); color: #1a7f37; padding: 4px 12px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600; border: 1px solid rgba(52,168,83,0.2); display: inline-flex; align-items: center; gap: 5px; }
.unverified-badge { background: rgba(251,188,5,0.1); color: #b06000; padding: 4px 12px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600; border: 1px solid rgba(251,188,5,0.2); display: inline-flex; align-items: center; gap: 5px; }
.badge-premium { background: linear-gradient(135deg,rgba(251,188,5,0.12),rgba(249,171,0,0.12)); color: #b06000 !important; border: 1px solid rgba(251,188,5,0.3) !important; }
.company-av { font-size: 1.1rem !important; }

/* Empty states */
.empty-state { text-align: center; padding: 56px 20px; color: var(--text-muted); }
.empty-state i { font-size: 2.5rem; margin-bottom: 14px; display: block; opacity: 0.4; }
.empty-state h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: var(--text-secondary); }
.empty-state p { font-size: 0.875rem; margin-bottom: 16px; }
.empty-state a { color: var(--g-blue); font-weight: 600; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-detail { display: flex; gap: 15px; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; background: var(--gradient-primary); color: #fff; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(66,133,244,0.3); }
.contact-form-card { background: var(--bg-primary); padding: 30px; border-radius: var(--radius-xl); border: 1px solid var(--border-color); box-shadow: var(--shadow-md); }
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }

/* Services main page */
.services-section { background: var(--bg-primary); }
.services-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.service-card { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s var(--ease-google); cursor: pointer; position: relative; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(66,133,244,0.2); }
.service-card-image { height: 200px; overflow: hidden; }
.service-card-image.no-image { display: flex; align-items: center; justify-content: center; font-size: 56px; color: rgba(255,255,255,0.8); }
.service-card-content { padding: 22px; }
.service-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.service-card-description { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 14px; }
.service-card-link { display: inline-flex; align-items: center; gap: 7px; color: var(--g-blue); font-weight: 600; font-size: 0.875rem; transition: gap 0.2s var(--ease-spring); }
.service-card-link:hover { gap: 11px; }

/* ================================================================
   28. FOOTER
================================================================ */
/* UPDATED */
.site-footer, footer {
  background: var(--text-primary); color: rgba(255,255,255,0.85);
  padding: 56px 0 0;
}
[data-theme="dark"] .site-footer,
[data-theme="dark"] footer { background: #0d0f14; }
.footer-top, .footer-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-col, .footer-section { }
.footer-col h4, .footer-section h4 {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: rgba(255,255,255,0.9); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-logo i { color: var(--g-blue); }
.footer-col p, .footer-brand-col p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 20px; }
.footer-col ul, .footer-section ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a, .footer-section ul li a,
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover, .footer-links a:hover { color: rgba(255,255,255,0.85); }
.social-links { display: flex; gap: 8px; }
.social-link, .social-links a {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center; color: rgba(255,255,255,0.45);
  font-size: 0.85rem; text-decoration: none;
  transition: all 0.2s var(--ease-google);
}
.social-links a:hover, .social-link:hover {
  background: var(--g-blue); border-color: var(--g-blue); color: #fff;
}
.footer-bottom, .footer-bottom-inner {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links, .footer-links { display: flex; gap: 16px; }

/* ================================================================
   29. SCROLL ANIMATIONS (Intersection Observer)
================================================================ */
/* NEW */
.fade-up, .reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--ease-google), transform 0.6s var(--ease-google);
}
.fade-up.visible, .reveal.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease-google);
}
.fade-in.visible { opacity: 1; }

.stagger-children > *, .reveal-stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s var(--ease-google), transform 0.5s var(--ease-google);
}
.stagger-children.visible > *:nth-child(1),.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.00s; }
.stagger-children.visible > *:nth-child(2),.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.07s; }
.stagger-children.visible > *:nth-child(3),.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.14s; }
.stagger-children.visible > *:nth-child(4),.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.21s; }
.stagger-children.visible > *:nth-child(5),.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.28s; }
.stagger-children.visible > *:nth-child(6),.reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.35s; }

/* ================================================================
   30. RESPONSIVE
================================================================ */
/* UPDATED */
@media (max-width: 1200px) {
  .search-layout,.search-container { grid-template-columns: 240px 1fr; }
  .job-detail-panel { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 1024px) {
  .dashboard-container,.dashboard-wrap,.admin-wrap { grid-template-columns: 1fr; padding: 16px; }
  .sidebar,.dash-sidebar { position: static; }
}
@media (max-width: 900px) {
  .search-layout,.search-container { grid-template-columns: 1fr; }
  .filter-sidebar,.filter-section { position: static; }
  .compare-grid,.cta-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-center,.nav-links { display: none; }
  .mobile-menu-toggle,.hamburger { display: flex; }
  .nav-menu.open,.nav-menu.active {
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--bg-primary); border-bottom: 1px solid var(--border-color);
    flex-direction: column; align-items: stretch; padding: 16px;
    box-shadow: var(--shadow-lg); gap: 8px;
  }
  .nav-menu.open .nav-center,.nav-menu.active .nav-center { display: flex; flex-direction: column; padding: 0; gap: 2px; }
  .hero,.hero-section { padding: 100px 20px 60px; min-height: auto; }
  .form-row-2col,.form-row-3col { grid-template-columns: 1fr; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
  .hero-float,.float-card { display: none; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .demo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .auth-card { padding: 28px 20px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr; }
  .tier-cards { grid-template-columns: 1fr; }
  .role-selector { grid-template-columns: 1fr; }
}

/* ================================================================
   31. UTILITY CLASSES
================================================================ */
/* NEW */
.mt-1 { margin-top: 6px; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 18px; }
.mt-4 { margin-top: 24px; }
.ml-2 { margin-left: 8px; }
.text-muted { color: var(--text-muted) !important; }
.text-sm { font-size: 0.8rem; }
.text-danger { color: var(--g-red) !important; }
.text-success { color: var(--g-green) !important; }
.text-blue { color: var(--g-blue) !important; }
.font-weight-600 { font-weight: 600; }
.row-inactive { opacity: 0.6; }
.flex-1 { flex: 1; }
.main-content { display: block; }






.premium-locked{
    margin-top:12px;
    padding:16px;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        #f8f9ff,
        #eef2ff
    );

    border:1px solid #dbe4ff;

    text-align:center;
}

.premium-locked i{
    font-size:26px;
    color:#667eea;
    margin-bottom:10px;
}

.premium-locked p{
    font-size:13px;
    color:#555;
    margin-bottom:14px;
    line-height:1.6;
}

.upgrade-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 18px;

    border-radius:10px;

    background:#667eea;
    color:#fff;

    text-decoration:none;
    font-weight:600;
}

.uploaded-file-box{
    margin-top:12px;

    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 14px;

    background:#f8fafc;

    border-radius:10px;

    border:1px solid #e2e8f0;
}

.uploaded-file-box i{
    color:#dc2626;
    font-size:20px;
}

.uploaded-file-box a{
    color:#2563eb;
    font-weight:600;
    text-decoration:none;
}

.profile-photo-preview{
    margin-top:14px;
}

.profile-photo-preview img{
    width:120px;
    height:120px;

    object-fit:cover;

    border-radius:16px;

    border:4px solid #fff;

    box-shadow:
        0 8px 24px rgba(0,0,0,.12);
}



/* =========================================
   RADIO GROUP UI
========================================= */

.radio-group{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:12px;
}

.radio-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 20px;

    background:var(--bg-secondary);
    border:1px solid var(--border-color);

    border-radius:14px;

    cursor:pointer;

    transition:all .25s ease;

    min-width:140px;

    box-shadow:0 2px 8px rgba(0,0,0,0.04);
}

.radio-card:hover{
    border-color:var(--accent);
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.radio-card input[type="radio"]{
    accent-color:var(--accent);
    width:18px;
    height:18px;
    cursor:pointer;
}

.radio-card span{
    font-size:14px;
    font-weight:600;
    color:var(--text-primary);
}

/* ACTIVE RADIO STYLE */

.radio-card input[type="radio"]:checked + span{
    color:var(--accent);
    font-weight:700;
}

/* =========================================
   SECTION TITLE
========================================= */

.radio-title{
    display:block;

    font-size:15px;
    font-weight:700;

    margin-bottom:10px;

    color:var(--text-primary);
}

/* =========================================
   PROFILE PHOTO
========================================= */

.profile-photo-preview{
    margin-top:15px;
}

.profile-photo-preview img{
    width:120px;
    height:120px;

    object-fit:cover;

    border-radius:16px;

    border:3px solid var(--border-color);

    box-shadow:0 4px 16px rgba(0,0,0,0.08);
}

/* =========================================
   UPLOADED FILE BOX
========================================= */

.uploaded-file-box{
    margin-top:15px;

    display:flex;
    align-items:center;
    gap:12px;

    background:var(--bg-secondary);

    border:1px solid var(--border-color);

    border-radius:12px;

    padding:14px 16px;
}

.uploaded-file-box i{
    color:#e74c3c;
    font-size:24px;
}

.uploaded-file-box a{
    color:var(--accent);
    font-weight:600;
    text-decoration:none;
}

.uploaded-file-box a:hover{
    text-decoration:underline;
}

/* =========================================
   FILE INPUT
========================================= */

input[type="file"]{
    width:100%;

    padding:12px;

    border:1px dashed var(--border-color);

    border-radius:12px;

    background:var(--bg-secondary);

    cursor:pointer;

    transition:all .2s ease;
}

input[type="file"]:hover{
    border-color:var(--accent);
    background:rgba(108,92,231,0.03);
}

/* =========================================
   AUTO SAVE BADGE
========================================= */

.autosave-status{
    position:fixed;

    bottom:20px;
    right:20px;

    background:#111827;
    color:#fff;

    padding:10px 16px;

    border-radius:30px;

    font-size:13px;
    font-weight:600;

    z-index:9999;

    opacity:0;
    transform:translateY(10px);

    transition:all .3s ease;
}

.autosave-status.show{
    opacity:1;
    transform:translateY(0);
}

/* =========================================
   PROFILE AVATAR IMAGE
========================================= */

.avatar-circle{
    overflow:hidden;
}

.avatar-circle img{
    width:100%;
    height:100%;

    object-fit:cover;
    border-radius:50%;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width:768px){

    .radio-group{
        flex-direction:column;
    }

    .radio-card{
        width:100%;
    }

    .uploaded-file-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .profile-photo-preview img{
        width:100px;
        height:100px;
    }
}



/* =========================================================
   FOOTER BRAND LOGO
========================================================= */

.footer-brand-link {

  display: flex;

  align-items: center;

  gap: 16px;

  text-decoration: none;

  margin-bottom: 18px;
}

/* LOGO IMAGE */

.footer-site-logo {

  width: 62px;

  height: 62px;

  object-fit: contain;

  transform: scale(1.7);

  transform-origin: center;

  background: transparent;

  flex-shrink: 0;
}

/* TEXT WRAP */

.footer-logo-text-wrap {

  display: flex;

  flex-direction: column;

  line-height: 1.05;
}

/* MAIN TITLE */

.footer-logo-title {

  font-size: 30px;

  font-weight: 800;

  color: #ffffff;

  letter-spacing: -.5px;

  line-height: 1;
}

/* SUBTITLE */

.footer-logo-subtitle {

  font-size: 12px;

  color: #94a3b8;

  margin-top: 3px;

  letter-spacing: 1px;

  text-transform: uppercase;
}

/* HOVER */

.footer-brand-link:hover .footer-site-logo {

  transform: scale(1.82);
}

/* MOBILE */

@media (max-width: 768px) {

  .footer-site-logo {

    width: 52px;

    height: 52px;

    transform: scale(1.5);
  }

  .footer-logo-title {

    font-size: 24px;
  }

  .footer-logo-subtitle {

    font-size: 11px;
  }
}

@media (max-width: 480px) {

  .footer-logo-title {

    font-size: 20px;
  }

  .footer-site-logo {

    width: 46px;

    height: 46px;

    transform: scale(1.35);
  }
}



