/* PERFECT RESULT HR CONSULT LIMITED - Corporate HR Platform Styling */
:root {
  --primary-navy: #0b2545;
  --primary-blue: #134074;
  --accent-blue: #0077b6;
  --accent-light: #e0f2fe;
  --verified-green: #10b981;
  --verified-light: #ecfdf5;
  --warning-amber: #f59e0b;
  --danger-red: #ef4444;
  --bg-slate: #f8fafc;
  --card-bg: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-slate);
  color: var(--text-dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Top Notification / Trust Bar */
.top-trust-bar {
  background-color: var(--primary-navy);
  color: #94a3b8;
  font-size: 0.825rem;
  padding: 6px 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-trust-bar a {
  color: #cbd5e1;
  text-decoration: none;
}
.top-trust-bar a:hover {
  color: #ffffff;
}

/* Navigation */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary-navy);
}
.brand-logo-img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.brand-text-block {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-navy);
}
.brand-tagline {
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.25rem;
}
.nav-link {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.925rem;
  transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background-color: var(--primary-blue);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: var(--primary-navy);
}
.btn-accent {
  background-color: var(--accent-blue);
  color: #ffffff;
}
.btn-accent:hover {
  background-color: #005f94;
}
.btn-outline {
  background-color: transparent;
  border-color: var(--border-color);
  color: #334155;
}
.btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background-color: #f1f5f9;
}
.btn-success {
  background-color: var(--verified-green);
  color: #ffffff;
}
.btn-success:hover {
  background-color: #059669;
}
.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}
.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1.05rem;
}
.btn-block {
  width: 100%;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Main Layout */
.main-content {
  flex: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
  color: #ffffff;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.hero p {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

/* Stats Row */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: -2.5rem auto 3rem;
  max-width: 1280px;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}
.stat-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--accent-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-navy);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Sections */
.section {
  padding: 4rem 0;
}
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.section-subtitle {
  color: var(--accent-blue);
  text-transform: uppercase;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}
.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Grid & Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}
.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Verified Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-verified {
  background-color: var(--verified-light);
  color: var(--verified-green);
  border: 1px solid #a7f3d0;
}
.badge-pending {
  background-color: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
}
.badge-info {
  background-color: var(--accent-light);
  color: var(--accent-blue);
  border: 1px solid #bae6fd;
}
.badge-danger {
  background-color: #fee2e2;
  color: var(--danger-red);
  border: 1px solid #fecaca;
}

/* Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.925rem;
}
.table th {
  background-color: #f8fafc;
  color: #475569;
  font-weight: 700;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  color: #334155;
  vertical-align: middle;
}
.table tr:last-child td {
  border-bottom: none;
}
.table tr:hover td {
  background-color: #f1f5f9;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.375rem;
}
.form-control {
  width: 100%;
  padding: 0.65rem 0.875rem;
  font-size: 0.925rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}
.form-control[readonly] {
  background-color: #f1f5f9;
  cursor: not-allowed;
}
.form-help {
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* 6-Step Registration Stepper */
.stepper-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}
.stepper-container::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--border-color);
  z-index: 1;
}
.step-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.2s ease;
}
.step-item.active .step-circle {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(19, 64, 116, 0.2);
}
.step-item.completed .step-circle {
  background-color: var(--verified-green);
  border-color: var(--verified-green);
  color: #ffffff;
}
.step-title {
  font-size: 0.775rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: var(--text-muted);
}
.step-item.active .step-title {
  color: var(--primary-blue);
  font-weight: 700;
}

/* Timeline Stages */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11px;
  width: 2px;
  background-color: var(--border-color);
}
.timeline-item {
  position: relative;
}
.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.timeline-item.active .timeline-dot {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #ffffff;
}
.timeline-item.completed .timeline-dot {
  background-color: var(--verified-green);
  border-color: var(--verified-green);
  color: #ffffff;
}
.timeline-content {
  background: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

/* Portal Layout (Candidate, Employer, Admin) */
.portal-wrapper {
  display: flex;
  min-height: calc(100vh - 120px);
}
.portal-sidebar {
  width: 260px;
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
}
.sidebar-user {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1rem;
}
.sidebar-nav {
  list-style: none;
  flex: 1;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 1.5rem;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.sidebar-link:hover, .sidebar-link.active {
  background-color: rgba(255,255,255,0.08);
  color: #ffffff;
  border-left: 4px solid var(--accent-blue);
}
.portal-main {
  flex: 1;
  background-color: var(--bg-slate);
  padding: 2rem;
  overflow-y: auto;
}

/* Alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}
.alert-success {
  background-color: var(--verified-light);
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.alert-danger {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.alert-info {
  background-color: var(--accent-light);
  color: #075985;
  border: 1px solid #bae6fd;
}
.alert-warning {
  background-color: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* Footer */
.footer {
  background-color: var(--primary-navy);
  color: #cbd5e1;
  padding: 3.5rem 0 1.5rem;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.65rem;
}
.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #ffffff;
}
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.825rem;
  color: #64748b;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .portal-wrapper {
    flex-direction: column;
  }
  .portal-sidebar {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-menu {
    display: none;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stepper-container {
    flex-wrap: wrap;
    gap: 10px;
  }
  .trusted-logos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
}

/* Tested & Trusted Client Logo Showcase */
.trusted-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.client-logo-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-sm);
  min-height: 190px;
}

.client-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue);
}

.client-logo-wrapper {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  padding: 0.25rem;
  background: #fafbfc;
  border-radius: var(--radius-sm);
  border: 1px solid #f1f5f9;
}

.client-logo-img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
  transition: transform 0.2s ease;
}

.client-logo-card:hover .client-logo-img {
  transform: scale(1.05);
}

.client-logo-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.client-logo-sector {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.client-trusted-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--verified-green);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Hero Media Card - "She Got Employed" */
.hero-media-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.35), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #0b2545;
}
.hero-media-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 37, 69, 0.94) 40%, #0b2545 100%);
  padding: 1.5rem;
  color: #ffffff;
}

/* Staff Showcase Card - "All Staff" */
.staff-showcase-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.staff-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}
.staff-showcase-img-wrap {
  position: relative;
  height: 100%;
  min-height: 340px;
}
.staff-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 992px) {
  .staff-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .staff-showcase-content {
    padding: 0 1.5rem 1.5rem 1.5rem !important;
  }
  .staff-showcase-img-wrap {
    min-height: 260px;
  }
}

/* Candidate Application Banner - "Sales Girl Got a Better Job" */
.candidate-inspirational-banner {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
  border: 1.5px solid #86efac;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
@media (max-width: 600px) {
  .candidate-inspirational-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .candidate-inspirational-banner img {
    margin: 0 auto;
  }
}

\n