/* =====================================================
   ROOT VARIABLES
   ===================================================== */
:root {
  --primary-orange: #fd6f1c;
  --primary-orange-hover: #d35400;
  --navy-dark: #142e50;
  --text-dark: var(--navy-dark);
  --text-muted: #5a6a7a;
  --yellow-badge: #fbbf24;
  --gradient-start: #e8f2ff;
  --gradient-mid: #fcfdfe;
  --gradient-peach: #ffb387;

  /* Trusted section */
  --brand-orange: var(--primary-orange);
  --brand-dark: var(--navy-dark);
  --logo-gray: #9a9a9a;
  --strip-bg: #f7f9fc;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #f5f6fb;
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar-custom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  border-bottom: none;
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
}

.inner-page .navbar-custom {
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(20, 46, 80, 0.08);
}

.navbar-custom.scrolled {
  position: fixed;
  background: rgba(252, 253, 254, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(20, 46, 80, 0.08);
  /* border-bottom: 1px solid rgba(20, 46, 80, 0.05); */
  padding: 0.65rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.nav-link-custom {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1.15rem !important;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary-orange) !important;
}

.nav-link-custom.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.nav-item-post-job {
  display: flex;
  align-items: center;
}

.nav-link-post-job {
  color: var(--primary-orange) !important;
  background: rgba(255, 138, 0, 0.06);
  border: 1px solid rgba(255, 138, 0, 0.35);
  border-radius: 999px;
  padding: 0.45rem 0.8rem !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.68rem;
  line-height: 1.1;
  position: relative;
  transition: all 0.2s ease;
}

.nav-link-post-job::before {
  content: "+";
  display: inline-block;
  width: 14px;
  height: 14px;
  line-height: 12px;
  text-align: center;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: transparent;
  color: var(--primary-orange);
  font-size: 0.95rem;
  font-weight: 700;
  vertical-align: middle;
}

.nav-link-post-job:hover,
.nav-link-post-job:focus,
.nav-link-post-job.active {
  color: var(--primary-orange) !important;
  background: rgba(255, 138, 0, 0.1);
  border-color: rgba(255, 138, 0, 0.6);
  transform: none;
  box-shadow: none;
}

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

/* =====================================================
   BUTTONS – Liquid Rise Effect (Fixed)
   ===================================================== */

.btn-login-employer,
.btn-login-employee,
.btn-search {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Liquid layer */
.btn-login-employer::before,
.btn-login-employee::before,
.btn-search::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  z-index: -1;
  transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 50px;
}

/* ---------- Login as Employer (outline) ---------- */
.btn-login-employer {
  background: transparent;
  color: var(--navy-dark);
  border: 1.5px solid var(--navy-dark);
  padding: 0.55rem 1.5rem;
  font-size: 0.9rem;
}

.btn-login-employer::before {
  background: var(--navy-dark);
}

.btn-login-employer:hover {
  color: #ffffff;
  border-color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(20, 46, 80, 0.22);
}

.btn-login-employer:hover::before {
  height: 100%;
}

.btn-login-employer:active {
  transform: translateY(-1px) scale(0.98);
}

/* ---------- Login as Employee (solid) - FIXED ---------- */
.btn-login-employee {
  background: var(--navy-dark);
  color: #ffffff;
  border: none;
  padding: 0.55rem 1.5rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(20, 46, 80, 0.18);
}

.btn-login-employee::before {
  background: #071a33; /* darker navy */
}

.btn-login-employee:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(20, 46, 80, 0.3);
}

.btn-login-employee:hover::before {
  height: 100%;
}

.btn-login-employee:active {
  transform: translateY(-1px) scale(0.98);
}

/* =====================================================
   LOGGED-IN HEADER
   ===================================================== */
.auth-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.auth-icon-btn,
.profile-menu-btn {
  border: none;
  background: #ffffff;
  color: var(--navy-dark);
  box-shadow: 0 8px 24px rgba(20, 46, 80, 0.1);
  transition: all 0.3s ease;
}

.auth-icon-btn:hover,
.profile-menu-btn:hover,
.auth-icon-btn[aria-expanded="true"],
.profile-menu-btn[aria-expanded="true"] {
  color: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20, 46, 80, 0.14);
}

.auth-icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.notification-dot {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-orange);
  border: 2px solid #ffffff;
}

.profile-menu-btn {
  min-height: 42px;
  border-radius: 999px;
  padding: 0.25rem 0.65rem 0.25rem 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.profile-menu-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e6ecfb;
  color: var(--navy-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.profile-menu-caret {
  font-size: 0.75rem;
}

.auth-dropdown {
  border: none;
  border-radius: 14px;
  padding: 0.5rem;
  margin-top: 0.75rem;
  box-shadow: 0 18px 50px rgba(20, 46, 80, 0.16);
}

.auth-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.75rem 0.5rem;
  color: var(--navy-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.auth-dropdown-link {
  color: var(--primary-orange);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.auth-dropdown-link:hover {
  color: var(--primary-orange-hover);
}

.notification-dropdown {
  width: min(320px, calc(100vw - 2rem));
}

.notification-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy-dark);
}

.notification-item:hover {
  background: #f5f6fa;
  color: var(--navy-dark);
}

.notification-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fdece1;
  color: var(--primary-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-item strong,
.notification-item small {
  display: block;
}

.notification-item strong {
  font-size: 0.85rem;
  font-weight: 700;
}

.notification-item small {
  color: #7a8494;
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

.profile-dropdown {
  min-width: 210px;
}

.profile-dropdown .dropdown-item {
  border-radius: 9px;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.profile-dropdown .dropdown-item:hover {
  background: #f5f6fa;
  color: var(--primary-orange);
}

.profile-dropdown .dropdown-item.text-danger {
  color: #dc3545 !important;
}

/* ---------- Search Jobs (orange) - FIXED ---------- */
.btn-search {
  background: var(--primary-orange);
  color: #ffffff;
  border: none;
  padding: 0.85rem 1.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(253, 111, 28, 0.3);
}

.btn-search::before {
  background: #c0392b; /* darker orange-red */
}

.btn-search:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(253, 111, 28, 0.42);
}

.btn-search:hover::before {
  height: 100%;
}

.btn-search:active {
  transform: translateY(-1px) scale(0.98);
}

/* Focus state */
.btn-login-employer:focus-visible,
.btn-login-employee:focus-visible,
.btn-search:focus-visible {
  outline: 2px solid var(--primary-orange);
  outline-offset: 3px;
}
/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
  position: relative;
  /* min-height: 100vh; */
  padding: 7.5rem 0 0rem;
  overflow: hidden;
  background: #e8f2ff;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -18%;
  width: 65%;
  height: 130%;
  background: radial-gradient(
    ellipse at 65% 35%,
    rgba(255, 179, 135, 0.42) 0%,
    rgba(255, 179, 135, 0.18) 35%,
    rgba(255, 179, 135, 0.05) 55%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Inclusive badge */
.inclusive-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(20, 46, 80, 0.07);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: 0 4px 18px rgba(20, 46, 80, 0.06);
  margin-bottom: 1.75rem;
  transition: all 0.4s ease;
}

.inclusive-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(20, 46, 80, 0.1);
}

.inclusive-badge i {
  color: var(--navy-dark);
  font-size: 1rem;
}

/* Hero title */
.hero-title {
  font-size: 3.65rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.3rem;
}

.hero-title .orange {
  color: var(--primary-orange);
}

.hero-title .dark {
  color: var(--text-dark);
}

.hero-title .word {
  display: inline-block;
}

/* Hero description */
.hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 470px;
  margin-bottom: 2.3rem;
  font-weight: 400;
}

/* Search box */
.search-container {
  background: #fff;
  border-radius: 60px;
  padding: 0.4rem;
  box-shadow: 0 12px 40px rgba(20, 46, 80, 0.1);
  display: flex;
  align-items: center;
  max-width: 620px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(20, 46, 80, 0.04);
}

.search-container:focus-within {
  box-shadow: 0 16px 50px rgba(20, 46, 80, 0.14);
  transform: translateY(-2px);
}

.search-input-group {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 0.4rem;
}

.search-field {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 0.85rem 0.7rem;
  width: 100%;
}

.search-field-keyword {
  flex: 1.7;
}

.search-field-short {
  flex: 0.85;
  max-width: 105px;
}

.search-field::placeholder {
  color: #9ca3af;
}

.search-divider {
  width: 1px;
  height: 26px;
  background: #e5e7eb;
  flex-shrink: 0;
}

/* =====================================================
   HERO VISUAL (RIGHT SIDE)
   ===================================================== */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}

.man-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.man-img {
  /* height: 580px; */
  width: auto;
  max-width: min(560px, 100%);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 40px rgba(20, 46, 80, 0.14));
  display: block;
}

/* Yellow jobs badge */
.jobs-badge {
  position: absolute;
  top: 22%;
  right: 7%;
  width: 128px;
  height: 128px;
  background: linear-gradient(145deg, #fde68a, #fbbf24);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 35px rgba(251, 191, 36, 0.42);
  z-index: 5;
  animation: float-bounce 4.5s ease-in-out infinite;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  will-change: transform;
}

.jobs-badge .count {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.05;
}

.jobs-badge .label {
  font-size: 0.67rem;
  font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-top: 2px;
  padding: 0 8px;
}

/* =====================================================
   KEYFRAMES
   ===================================================== */
@keyframes float-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(2.5deg);
  }
}

/* =====================================================
   TRUSTED BY SECTION
   ===================================================== */
.trusted-section {
  background: #fff;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e7e9ee;
}

.trusted-heading {
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--brand-dark);
  margin-bottom: 45px;
}

.trusted-heading .highlight {
  color: var(--brand-orange);
}

/* Logo slider */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
  /* -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%); */
}

.logo-track {
  display: flex;
  align-items: center;
  transition: transform 0.8s ease-in-out;
}

.logo-item {
  flex: 0 0 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  filter: grayscale(100%);
  opacity: 0.55;
  transition:
    opacity 0.3s ease,
    filter 0.3s ease,
    transform 0.3s ease;
}

.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

.logo-item img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.1rem;
  }
}

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

  .hero-section {
    padding-top: 6rem;
    padding-bottom: 1rem;
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 1.5rem;
    align-items: flex-end;
  }

  .man-img {
    height: 380px;
    width: auto;
    max-width: min(340px, 90%);
  }

  .jobs-badge {
    width: 105px;
    height: 105px;
  }

  .jobs-badge .count {
    font-size: 1.15rem;
  }

  .jobs-badge .label {
    font-size: 0.6rem;
  }

  /* Search stacked */
  .search-container {
    flex-direction: column;
    border-radius: 20px;
    padding: 0.85rem;
    max-width: 100%;
    gap: 0.5rem;
  }

  .search-input-group {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .search-divider {
    display: none;
  }

  .search-field {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0.5rem;
    margin-bottom: 0;
  }

  .search-field:last-of-type {
    border-bottom: none;
  }

  .btn-search {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
    padding: 0.9rem 1.2rem;
  }

  .navbar-custom .d-flex.gap-2 {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.75rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .logo-item {
    flex: 0 0 50%;
    padding: 0 20px;
  }

  .logo-item img {
    height: 32px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.95rem;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .hero-section {
    padding-top: 5.5rem;
  }

  .hero-visual {
    min-height: 340px;
  }

  .man-img {
    height: 300px;
    max-width: min(260px, 100%);
  }

  .jobs-badge {
    width: 90px;
    height: 90px;
  }

  .jobs-badge .count {
    font-size: 1rem;
  }

  .jobs-badge .label {
    font-size: 0.55rem;
    padding: 0 4px;
  }

  .inclusive-badge {
    font-size: 0.78rem;
    padding: 0.4rem 0.9rem;
  }

  .navbar-custom .btn-login-employer,
  .navbar-custom .btn-login-employee {
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
  }

  .nav-link-custom {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .logo-item {
    flex: 0 0 100%;
  }
}

/* =====================================================
   JOB CATEGORIES SECTION
   ===================================================== */
.job-categories-section {
  position: relative;
  background-image: url("../img/job-categories-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--navy-dark);
  padding: 2.5rem 0;
  overflow: hidden;
  color: #ffffff;
}

.categories-page .job-categories-section {
  padding-top: 8rem;
  min-height: 720px;
}

/* .job-categories-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 51, 0.88) 0%, rgba(20, 46, 80, 0.78) 55%, rgba(10, 26, 51, 0.92) 100%);
  z-index: 0;
} */

.job-categories-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.job-categories-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.job-categories-title .highlight {
  color: var(--primary-orange);
}

.job-categories-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 0;
}

.btn-view-categories {
  position: relative;
  overflow: hidden;
  background: var(--primary-orange);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(253, 111, 28, 0.35);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-view-categories:hover {
  background: var(--primary-orange-hover);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(253, 111, 28, 0.45);
}

.btn-view-categories:active {
  transform: translateY(-1px) scale(0.98);
}

.job-categories-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.job-category-card {
  position: relative;
  border-radius: 20px;
  padding: 1.5rem 1.5rem 0;
  min-height: 280px;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.job-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(10, 26, 51, 0.3);
}

.job-category-card.bg-peach {
  background: #fbe4d4;
}

.job-category-card.bg-gray {
  background: #e9eaec;
}

.job-category-card.bg-blue {
  background: #dcebfb;
}

.job-category-card.bg-green {
  background: #dff3e3;
}

.job-category-card.bg-lavender {
  background: #e6e2fb;
}

.job-category-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.job-category-top h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
}

.job-category-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.job-category-arrow:hover {
  background: var(--primary-orange-hover);
  color: #ffffff;
  transform: rotate(-45deg);
}

.job-category-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 68%;
  width: auto;
  max-width: 92%;
  object-fit: contain;
  object-position: bottom right;
}

/* =====================================================
   JOB CATEGORIES – RESPONSIVE
   ===================================================== */
@media (max-width: 1199.98px) {
  .job-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .job-categories-title {
    font-size: 1.9rem;
  }

  .job-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .job-categories-section {
    padding: 3.5rem 0;
  }

  .job-categories-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-categories-title {
    font-size: 1.6rem;
  }

  .btn-view-categories {
    align-self: flex-start;
  }

  .job-categories-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   JOB LISTINGS SECTION
   ===================================================== */
.jobs-listing-section {
  padding: 2.5rem 0;
  background: #fcfdfe;
}

.jobs-listing-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}

.jobs-listing-title {
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin: 0;
}

.jobs-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.job-listing-card {
  background: #ffffff;
  border: 1px solid rgba(20, 46, 80, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 18px rgba(20, 46, 80, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.job-listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(20, 46, 80, 0.1);
}

.job-listing-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.job-listing-top h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 0.2rem;
}

.job-listing-type {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.btn-apply-job {
  flex-shrink: 0;
  background: var(--navy-dark);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-apply-job:hover {
  background: #0b2038;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(20, 46, 80, 0.25);
}

.job-listing-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.meta-item i {
  color: var(--primary-orange);
  font-size: 0.85rem;
}

.job-listing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.job-listing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.job-tag {
  background: #eef1f5;
  color: var(--navy-dark);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

/* =====================================================
   JOB LISTINGS – RESPONSIVE
   ===================================================== */
@media (max-width: 767.98px) {
  .jobs-listing-title {
    font-size: 1.7rem;
  }

  .jobs-listing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .jobs-listing-section {
    padding: 3.5rem 0;
  }

  .job-listing-top {
    flex-wrap: wrap;
  }
}

/* =====================================================
   CAREER INSIGHTS SECTION
   ===================================================== */
.career-insights-section {
  padding: 3rem 0;
}

.career-insights-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.career-insights-title .highlight {
  color: var(--primary-orange);
}

.career-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  background: #ffffff;
  border: 1px solid rgba(20, 46, 80, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(20, 46, 80, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(20, 46, 80, 0.1);
}

.blog-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  padding: 15px;
  border-radius: 30px;
}

.blog-card-body {
  padding: 1rem;
}

.blog-card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.blog-card-meta h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
}

.blog-date {
  flex-shrink: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  margin-top: 0.2rem;
}

.blog-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.3rem;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-orange);
  text-decoration: none;
}

.blog-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card-link:hover .blog-arrow {
  background: var(--primary-orange-hover);
  transform: rotate(-45deg);
}

.career-insights-footer {
  display: flex;
  justify-content: center;
  margin-top: 2.75rem;
}

.btn-view-blogs {
  background: var(--navy-dark);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-view-blogs:hover {
  background: #0b2038;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(20, 46, 80, 0.28);
}

.btn-view-blogs:active {
  transform: translateY(-1px) scale(0.98);
}

/* =====================================================
   CAREER INSIGHTS – RESPONSIVE
   ===================================================== */
@media (max-width: 991.98px) {
  .career-insights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .career-insights-title {
    font-size: 1.8rem;
  }

  .career-insights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .career-insights-section {
    padding: 3.5rem 0;
  }

  .blog-card-img {
    height: 190px;
  }
}

/* =====================================================
   LEARNING HUB SECTION
   ===================================================== */
.learning-hub-section {
  padding: 5rem 0 5.5rem;
  overflow: hidden;
}

.learning-hub-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.75rem;
}

.learning-hub-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 640px;
}

.learning-hub-title .highlight {
  color: var(--primary-orange);
}

.learning-hub-intro {
  flex-shrink: 0;
  max-width: 260px;
  padding-top: 0.4rem;
}

.learning-hub-intro p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.btn-explore-courses {
  background: var(--primary-orange);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(253, 111, 28, 0.35);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-explore-courses:hover {
  background: var(--primary-orange-hover);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(253, 111, 28, 0.45);
}

.btn-explore-courses:active {
  transform: translateY(-1px) scale(0.98);
}

/* Horizontal scroll row */
.courses-scroll-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: auto;
  scroll-snap-type: none;
  padding: 0 1.5rem 0.5rem calc((100% - 1140px) / 2 + 0.75rem);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.courses-scroll-row::-webkit-scrollbar {
  display: none;
}

.course-card {
  position: relative;
  flex: 0 0 auto;
  width: 600px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  text-decoration: none;
  display: block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.course-card:hover {
  transform: translateY(-4px);
}

.course-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 25, 0.82) 0%,
    rgba(10, 15, 25, 0.15) 45%,
    transparent 65%
  );
  z-index: 1;
}

.course-card-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.course-card:hover .course-card-arrow {
  background: var(--primary-orange);
  color: #ffffff;
  transform: rotate(45deg);
}

.course-card-info {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  color: #ffffff;
}

.course-card-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.course-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* =====================================================
   LEARNING HUB – RESPONSIVE
   ===================================================== */
@media (max-width: 1199.98px) {
  .courses-scroll-row {
    padding-left: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .learning-hub-title {
    font-size: 2rem;
  }

  .course-card {
    width: 480px;
    height: 340px;
  }
}

@media (max-width: 767.98px) {
  .learning-hub-header {
    flex-direction: column;
  }

  .learning-hub-intro {
    max-width: 100%;
  }

  .course-card {
    width: 78vw;
    height: 300px;
  }
}

@media (max-width: 575.98px) {
  .learning-hub-section {
    padding: 3.5rem 0 4rem;
  }

  .learning-hub-title {
    font-size: 1.6rem;
  }

  .course-card {
    width: 85vw;
    height: 260px;
  }

  .course-card-info h3 {
    font-size: 1.15rem;
  }
}

.jobhero-section {
  background-color: #ffffff;
  /* removed overflow:hidden here — it was clipping the phone's top */
}

/* This is the shared positioning context for heading + box + phone */
.jobhero-inner {
  position: relative;
}

.jobhero-heading {
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.2;
  color: #1a1a1a;
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.jobhero-heading .jobhero-highlight {
  color: #ff6a00;
}

.jobhero-info-box {
  background-color: #dbe9fc;
  border-radius: 24px;
  position: relative;
  overflow: visible;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.jobhero-text-col {
  width: 55%;
  position: relative;
  z-index: 2;
}

.jobhero-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #2b2b2b;
  max-width: 460px;
}

.jobhero-store-link {
  display: inline-block;
}

.jobhero-store-badge {
  height: 44px;
  width: auto;
  display: block;
}

/*
  Phone wrapper positioned relative to .jobhero-inner (not the box):
  top: 0 lines its top up exactly with the heading's top
  bottom: sits inside the box, above its bottom edge
*/
.jobhero-phone-wrapper {
  position: absolute;
  top: -50px;
  bottom: 50px;
  right: 100px;
  display: flex;
  align-items: stretch;
  z-index: 1;
}

.jobhero-phone-img {
  display: block;
  width: auto;
  height: 100%;
  transform: rotate(4deg);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .jobhero-heading {
    font-size: 2.2rem;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .jobhero-info-box {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding-top: 2rem;
  }

  .jobhero-text-col {
    width: 100%;
  }

  .jobhero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .jobhero-section .d-flex.flex-wrap {
    justify-content: center;
  }

  .jobhero-phone-wrapper {
    position: static;
    height: 300px;
    margin-top: 2rem;
    justify-content: center;
  }

  .jobhero-phone-img {
    transform: rotate(0deg);
    height: 100%;
    width: auto;
  }
}

@media (max-width: 575px) {
  .jobhero-heading {
    font-size: 1.8rem;
  }
}

.sitefooter-section {
  background-color: #1c2b4d;
  color: #cfd6e4;
}

/* Brand */
.sitefooter-logo {
  height: 48px;
  width: auto;
}

.sitefooter-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #a8b0c4;
  max-width: 260px;
}

/* Quick links */
.sitefooter-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ff6a00;
}

.sitefooter-links li {
  margin-bottom: 12px;
}

.sitefooter-links a {
  font-size: 0.9rem;
  color: #cfd6e4;
  text-decoration: none;
}

.sitefooter-links a:hover {
  color: #ffffff;
}

/* App download */
.sitefooter-app-text {
  font-size: 0.9rem;
  color: #cfd6e4;
}

.sitefooter-store-link {
  display: inline-block;
}

.sitefooter-store-badge {
  height: 36px;
  width: auto;
  display: block;
}

/* Contact details - plain, blends with footer background */
.sitefooter-contact-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.sitefooter-contact-list li {
  font-size: 0.9rem;
  color: #cfd6e4;
}

.sitefooter-contact-icon {
  color: #fff;
  font-size: 0.95rem;
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Divider */
.sitefooter-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Bottom bar */
.sitefooter-copyright {
  font-size: 0.8rem;
  color: #a8b0c4;
}

.sitefooter-socials-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.sitefooter-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
}

.sitefooter-social-icon:hover {
  background-color: #ff6a00;
}

/* Responsive */
@media (max-width: 767px) {
  .sitefooter-description {
    max-width: 100%;
  }

  .sitefooter-section .d-flex.justify-content-between {
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left;
  }
}

/* =====================================================
   SHARED PROFILE FLOW PAGES
   ===================================================== */
.profile-flow-page {
  background: #f5f6fa;
}

.profile-flow-page .profile-wrapper {
  padding: 10px 0 30px;
  margin-top: 85px;
  min-height: calc(100vh - 150px);
}

.profile-flow-page .profile-card {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  background: #fff;
  min-height: calc(100vh - 170px);
}

.profile-flow-page .profile-sidebar {
  background: #14213d;
  padding: 30px 20px 0px;
  height: 100%;
  min-height: calc(100vh - 170px);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 110px;
}

.profile-flow-page .sidebar-nav a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.profile-flow-page .sidebar-nav a.disabled {
  opacity: 0.35;
  pointer-events: none;
}

.profile-flow-page .sidebar-nav .step-count {
  font-size: 14px;
  color: #fff;
  opacity: 0.9;
}

.profile-flow-page .progress-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.profile-flow-page .progress-fill {
  height: 100%;
  background: #e8703c;
  border-radius: 4px;
}

.profile-step-profile .progress-fill {
  width: 30%;
}

.profile-step-basic .progress-fill {
  width: 50%;
}

.profile-step-experience .progress-fill {
  width: 80%;
}

.profile-step-skills,
.profile-step-authorized {
  --profile-progress-width: 100%;
}

.profile-step-organization {
  --profile-progress-width: 40%;
}

.profile-step-skills .progress-fill,
.profile-step-authorized .progress-fill,
.profile-step-organization .progress-fill {
  width: var(--profile-progress-width);
}

.profile-flow-page .progress-label {
  font-size: 12px;
  color: #e8703c;
  font-weight: 600;
}

.profile-flow-page .sidebar-title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

.profile-flow-page .sidebar-desc {
  color: #b9bfd1;
  font-size: 13px;
  line-height: 1.6;
}

.profile-flow-page .sidebar-photo {
  margin-top: auto;
  text-align: center;
}

.profile-flow-page .sidebar-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.profile-flow-page .profile-form-panel {
  padding: 40px 45px;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.profile-flow-page .profile-form-panel::-webkit-scrollbar {
  width: 8px;
}

.profile-flow-page .profile-form-panel::-webkit-scrollbar-thumb {
  background: rgba(20, 33, 61, 0.18);
  border-radius: 10px;
}

.profile-flow-page .form-panel-header h2 {
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.profile-flow-page .section-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.profile-flow-page .section-divider {
  border: none;
  border-top: 1px solid #ececec;
  margin: 10px 0 24px 0;
}

.profile-flow-page .form-label-custom {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}

.profile-flow-page .form-label-custom .required {
  color: #e04b4b;
  margin-left: 2px;
}

.profile-flow-page .form-control-custom {
  width: 100%;
  height: 42px;
  border: 1px solid #dcdfe6;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 14px;
  outline: none;
}

.profile-flow-page .form-control-custom:focus {
  border-color: #14213d;
  box-shadow: none;
}

.profile-flow-page textarea.form-control-custom {
  height: 110px;
  padding: 14px 16px;
  resize: none;
}

.profile-step-authorized textarea.form-control-custom {
  height: 100px;
}

.profile-flow-page select.form-control-custom {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.profile-flow-page .date-input-wrap {
  position: relative;
}

.profile-flow-page .date-input-wrap input {
  padding-right: 42px;
}

.profile-flow-page .date-input-wrap i {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: #999;
  font-size: 15px;
  pointer-events: none;
}

.profile-flow-page .btn-save-next {
  background: #14213d;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
}

.profile-flow-page .btn-save-next:hover {
  background: #1f2f52;
}

.profile-flow-page .avatar-upload {
  position: relative;
  width: 84px;
  height: 84px;
}

.profile-flow-page .avatar-upload img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  background: #e5e7eb;
}

.profile-flow-page .avatar-upload .camera-btn {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e8703c;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.profile-flow-page .btn-upload-resume {
  background: #e8703c;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
}

.profile-flow-page .btn-upload-resume:hover {
  background: #d9622e;
  color: #fff;
}

.profile-flow-page .btn-add-round {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fdece1;
  color: #e8703c;
  border: none;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.profile-flow-page .btn-add-round:hover {
  background: #fbdcc5;
}

.profile-flow-page .skill-chip {
  display: inline-block;
  padding: 9px 20px;
  background: #eef0f4;
  border-radius: 999px;
  font-size: 13px;
  color: #333;
}

.profile-flow-page .gender-pill,
.profile-flow-page .status-pill {
  position: relative;
}

.profile-flow-page .gender-pill input,
.profile-flow-page .status-pill input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.profile-flow-page .gender-pill label,
.profile-flow-page .status-pill label {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #dcdfe6;
  border-radius: 999px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  margin: 0;
}

.profile-flow-page .gender-pill input:checked + label,
.profile-flow-page .status-pill input:checked + label {
  background: #e6ecfb;
  border-color: #14213d;
  color: #14213d;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .profile-flow-page .sidebar-photo img {
    max-height: 220px;
  }
}

/* =====================================================
   LOGIN PAGE
   ===================================================== */
.login-page .login-wrapper {
  min-height: 100vh;
}

.login-page .login-banner {
  width: 490px;
  max-width: 100%;
  height: 520px;
  border-radius: 24px;
  background-image: url("../img/login.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.login-page .login-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 33, 61, 0) 40%,
    rgba(20, 33, 61, 0.9) 100%
  );
}

.login-page .login-banner-text {
  position: relative;
  z-index: 1;
  color: #e9ecf5;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
  max-width: 330px;
  margin: 0;
}

.login-page .login-form-panel {
  width: 380px;
  max-width: 100%;
}

.login-page .login-form-panel h1 {
  font-size: 38px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 30px 0;
}

.login-page .form-label-custom {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

.login-page .form-label-custom .required {
  color: #e04b4b;
  margin-left: 2px;
}

.login-page .mobile-input-group {
  display: flex;
  align-items: center;
  height: 52px;
  border: 1px solid #dcdfe6;
  border-radius: 8px;
  padding: 0 16px;
  margin-bottom: 16px;
}

.login-page .mobile-input-group .country-code {
  font-size: 15px;
  color: #555;
  padding-right: 14px;
  margin-right: 14px;
  border-right: 1px solid #dcdfe6;
}

.login-page .mobile-input-group input {
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  font-size: 15px;
  width: 100%;
  background: transparent;
}

.login-page .mobile-input-group input::placeholder {
  color: #a3a3a3;
}

.login-page .terms-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.login-page .terms-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin: 0;
  cursor: pointer;
  accent-color: #14213d;
}

.login-page .terms-row label {
  font-size: 13px;
  color: #333;
  margin: 0;
}

.login-page .terms-row a {
  color: #e8703c;
  font-weight: 600;
  text-decoration: none;
}

.login-page .terms-row a:hover {
  text-decoration: underline;
}

.login-page .btn-primary-custom {
  display: block;
  width: 100%;
  padding: 15px;
  background: #14213d;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 12px;
}

.login-page .btn-primary-custom:hover {
  background: #1f2f52;
}

.login-page .secure-note {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin: 0 0 20px 0;
}

.login-page .divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.login-page .divider hr {
  flex: 1;
  border: none;
  border-top: 1px solid #e4e4e4;
  margin: 0;
}

.login-page .divider span {
  font-size: 13px;
  color: #aaa;
}

.login-page .btn-secondary-custom {
  display: block;
  width: 100%;
  padding: 15px;
  background: #fff;
  color: #14213d;
  border: 1.5px solid #14213d;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.login-page .btn-secondary-custom:hover {
  background: #f2f4f8;
}

.login-page .register-switch-card {
  margin-top: 22px;
  border-radius: 14px;
  text-align: center;
}

.login-page .register-switch-card p {
  color: #647184;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.login-page .register-switch-card a {
  color: #fd6f1c;
  font-weight: 700;
  text-decoration: none;
}

.login-page .register-switch-card a:hover {
  text-decoration: underline;
}

/* =====================================================
   REGISTRATION PAGE
   ===================================================== */
.register-page .register-wrapper {
  min-height: 100vh;
  padding: 120px 0 70px;
}

.register-page .register-img {
  width: 490px;
  max-width: 100%;
  height: 520px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.register-panel {
  width: 420px;
  max-width: 100%;
}

.register-panel h1 {
  color: #2b2d31;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
}

.register-title-line {
  width: 220px;
  height: 2px;
  background: #fd6f1c;
  margin: 0 0 30px;
}

.register-field {
  margin-bottom: 20px;
}

.register-label {
  display: block;
  color: #333740;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.register-label span {
  color: #e04b4b;
}

.register-role-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.register-radio {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #565b65;
  font-size: 15px;
  cursor: pointer;
}

.register-radio input {
  width: 20px;
  height: 20px;
  accent-color: #142e50;
  cursor: pointer;
}

.register-input,
.register-mobile-group {
  width: 100%;
  height: 50px;
  border: 1px solid #babec5;
  border-radius: 8px;
  background: #fff;
}

.register-input {
  padding: 0 20px;
  color: #2b2d31;
  font-size: 15px;
  outline: none;
}

.register-input::placeholder,
.register-mobile-group input::placeholder {
  color: #b5b8be;
}

.register-mobile-group {
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.register-mobile-group span {
  color: #b5b8be;
  font-size: 15px;
  padding-right: 18px;
  margin-right: 18px;
  border-right: 1px solid #c8ccd3;
}

.register-mobile-group input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #2b2d31;
  font-size: 15px;
}

.register-input:focus,
.register-mobile-group:focus-within {
  border-color: #fd6f1c;
  box-shadow: 0 0 0 3px rgba(253, 111, 28, 0.12);
}

.register-terms {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 36px;
}

.register-terms input {
  width: 19px;
  height: 19px;
  accent-color: #142e50;
  cursor: pointer;
}

.register-terms label {
  color: #4e5561;
  font-size: 13px;
  margin: 0;
}

.register-terms a,
.register-login-text a {
  color: #fd6f1c;
  font-weight: 700;
  text-decoration: underline;
}

.register-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: #1f3f70;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.register-submit:hover {
  background: #142e50;
  transform: translateY(-1px);
}

.register-login-text {
  color: #2b2d31;
  font-size: 15px;
  text-align: center;
  margin: 26px 0 0;
}

.register-login-text a {
  text-decoration: none;
}

@media (max-width: 575.98px) {
  .register-page .register-wrapper {
    padding: 100px 0 50px;
  }

  .register-page .register-img {
    height: auto;
    max-height: 360px;
  }

  .register-panel h1 {
    font-size: 36px;
  }

  .register-title-line {
    width: 160px;
  }

  .register-role-row {
    gap: 14px;
  }
}

/* =====================================================
   OTP PAGE
   ===================================================== */
.otp-page .otp-form-panel {
  text-align: center;
}

.otp-page .login-form-panel h1 {
  margin-bottom: 12px;
}

.otp-title-line {
  width: 76px;
  height: 2px;
  background: #fd6f1c;
  margin: 0 auto 28px;
}

.otp-helper {
  color: #1f2933;
  font-size: 14px;
}

.otp-phone-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #5f6673;
  font-size: 14px;
  margin-bottom: 28px;
}

.otp-phone-row a {
  color: #fd6f1c;
  font-size: 13px;
  line-height: 1;
}

.otp-input-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.otp-input {
  width: 46px;
  height: 46px;
  border: 1px solid #cfd3da;
  border-radius: 6px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #14213d;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.otp-input:focus {
  border-color: #fd6f1c;
  box-shadow: 0 0 0 3px rgba(253, 111, 28, 0.12);
}

.otp-expiry {
  color: #7b8390;
  font-size: 12px;
  margin-bottom: 24px;
}

.otp-expiry span,
.otp-resend a {
  color: #fd6f1c;
  font-weight: 600;
}

.otp-resend {
  color: #6b7280;
  font-size: 13px;
  margin: 4px 0 0;
}

.otp-resend a {
  text-decoration: none;
}

.otp-resend a:hover {
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .otp-input-row {
    gap: 8px;
  }

  .otp-input {
    width: 40px;
    height: 42px;
  }
}

@media (max-width: 991.98px) {
  .navbar-auth .auth-nav-actions {
    align-items: flex-start;
    padding-top: 0.75rem;
  }

  .navbar-auth .notification-dropdown,
  .navbar-auth .profile-dropdown {
    margin-left: 0;
  }

  .login-page .login-banner {
    height: 300px;
    align-items: center;
  }
}




/* =====================================================
   JOBS PAGE
   ===================================================== */
.jobs-page {
  background: #f5f6fa;
}

.jobs-page .jobs-wrapper {
  padding: 30px 0 60px;
  margin-top: 85px;
}

.jobs-page .page-title {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.jobs-page .jobs-search-container {
  max-width: 100%;
  margin-bottom: 22px;
}

.jobs-page .job-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.jobs-page .job-tab {
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  background: #eef0f4;
  color: #555;
}

.jobs-page .job-tab.active {
  background: #e8703c;
  color: #fff;
}

.jobs-page .job-list {
  display: block;
}

.jobs-page .job-card {
  background: #fff;
  border-radius: 4px;
  padding: 15px 18px;
  margin-bottom: 18px;
}

.jobs-page .job-card.is-hidden {
  display: none;
}

.jobs-page .job-search-empty {
  background: #ffffff;
  border: 1px dashed #dcdfe6;
  border-radius: 14px;
  color: #7a8494;
  font-size: 14px;
  padding: 24px;
  text-align: center;
}

.jobs-page .job-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  overflow: hidden;
}

.jobs-page .job-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jobs-page .job-title {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.jobs-page .job-type {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.jobs-page .job-meta {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}

.jobs-page .job-meta i {
  color: #e8703c;
}

.jobs-page .job-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #1c8c5c;
  background: #eafaf3;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
}

.jobs-page .job-status i {
  color: #1c8c5c;
}

.jobs-page .job-skill-chip {
  display: inline-block;
  padding: 6px 14px;
  background: #eef0f4;
  border-radius: 999px;
  font-size: 12px;
  color: #333;
}

.jobs-page .job-skill-more {
  font-size: 12px;
  color: #888;
  align-self: center;
}

.jobs-page .job-posted {
  font-size: 12px;
  color: #999;
}

.jobs-page .btn-save-job {
  background: #e6ecfb;
  color: #14213d;
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  white-space: nowrap;
}

.jobs-page .btn-save-job:hover {
  background: #d9e2f8;
  color: #14213d;
}

.jobs-page .btn-apply-job {
  background: #14213d;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  white-space: nowrap;
}

.jobs-page .btn-apply-job:hover {
  background: #1f2f52;
  color: #fff;
}

.jobs-page .job-pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.jobs-page .page-btn {
  min-width: 38px;
  height: 38px;
  border: 1px solid #dcdfe6;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.jobs-page .page-btn:hover {
  background: #f2f4f8;
}

.jobs-page .page-btn.active {
  background: #e8703c;
  border-color: #e8703c;
  color: #fff;
}

.jobs-page .page-btn:disabled,
.jobs-page .page-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.jobs-page .page-btn-nav {
  font-size: 13px;
  gap: 6px;
}

.jobs-page .pagination-ellipsis {
  border: none;
}

.app-promo-card {
  border-radius: 16px;
  padding: 24px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background-color: #14213d;
  background-image: url("../img/side_bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.app-promo-card h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 4px 0;
  color: #fff;
}

.app-promo-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.app-promo-card h3 span {
  color: #e8703c;
}

.app-promo-card p {
  font-size: 13px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 240px;
  text-align: center;
}

.jobs-page .store-badges {
  display: flex;
  gap: 10px;
}

.jobs-page .store-badges img {
  height: 34px;
  width: auto;
}

.jobs-page .prefs-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 22px;
}

.jobs-page .prefs-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.jobs-page .prefs-input {
  width: 100%;
  height: 44px;
  border: 1px solid #dcdfe6;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 13px;
  outline: none;
  margin-bottom: 14px;
}

.jobs-page .prefs-input:focus {
  border-color: #14213d;
}

.jobs-page .prefs-chip {
  display: inline-block;
  padding: 8px 16px;
  background: #eef0f4;
  border-radius: 999px;
  font-size: 12px;
  color: #333;
}

@media (max-width: 991.98px) {
  .jobs-page .app-promo-card,
  .jobs-page .prefs-card {
    margin-top: 20px;
  }
}

.promo-divider {
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, #ff6a00, #ff8c3d);
  margin: 5px auto;
  border-radius: 2px;
}

.employer-plan-strip {
  display: grid;
  grid-template-columns: 1.1fr 2.5fr 1.2fr;
  gap: 18px;
  background: #f1f4ff;
  border: 1px solid #e3e8f5;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 28px;
  box-shadow: 0 12px 28px rgba(20, 46, 80, 0.06);
}

.employer-support-box,
.employer-plan-box,
.plan-upgrade-box {
  background: #fff;
  border: 1px solid #e7ebf4;
  border-radius: 14px;
  padding: 18px;
}

.employer-support-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 170px;
}

.employer-support-box h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #142e50;
}

.employer-support-box p,
.employer-support-box span {
  margin: 0;
  font-size: 12px;
  color: #5b6b7d;
}

.employer-support-box span {
  margin-top: 6px;
}

.support-btn {
  margin-top: 16px;
  border: 1px solid #142e50;
  background: #fff;
  color: #142e50;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
}

.employer-plan-box {
  background: linear-gradient(135deg, #fffaf3 0%, #ffffff 40%, #f4f7ff 100%);
}

.plan-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.plan-header-row h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #142e50;
}

.plan-header-row small {
  display: block;
  margin-top: 6px;
  color: #607089;
  font-size: 11px;
}

.days-left {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff4e9;
  color: #ff6a00;
  border: 1px solid #ffd6b1;
  font-size: 11px;
  font-weight: 700;
}

.plan-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.plan-metric-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f9fafc;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 12px 10px;
}

.metric-label {
  font-size: 11px;
  color: #8996a7;
  line-height: 1.4;
}

.plan-metric-item strong {
  font-size: 13px;
  color: #142e50;
}

.plan-upgrade-box {
  background: linear-gradient(180deg, #f2fbed 0%, #eef8ff 100%);
  border-color: #d7edd0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-upgrade-box h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #142e50;
}

.plan-upgrade-box p {
  margin: 10px 0 18px;
  color: #5d6f84;
  font-size: 13px;
}

.upgrade-btn {
  border: none;
  background: linear-gradient(135deg, #4bb35a 0%, #2d8f44 100%);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
}

.dashboard-content {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(270px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.dashboard-main-area {
  min-width: 0;
}

.dashboard-header-row h2 {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 700;
  color: #1a1a2e;
}

.dashboard-tabs {
  margin-bottom: 18px !important;
}

.job-alert-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff7ea;
  border: 1px solid #f4d8b2;
  border-radius: 12px;
  color: #6b6b80;
  font-size: 14px;
  margin-bottom: 18px;
}

.alert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff0d7;
  color: #ff9800;
}

.job-alert-banner a {
  margin-left: auto;
  color: #142e50;
  font-weight: 600;
  text-decoration: none;
}

.job-posting-card {
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}

.job-posting-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.job-posting-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-pill.active {
  background: #e8f8ed;
  color: #1d8f5f;
}

.status-pill.inactive {
  background: #fff0dd;
  color: #d9821b;
}

.secondary-job-card {
  margin-top: 18px;
}

.job-posting-title-block h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
}

.job-posting-title-block p {
  margin: 0;
  color: #77839a;
  font-size: 12px;
}

.edit-job-btn {
  background: #edf3ff;
  color: #2449b5;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
}

.job-posting-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 12px;
  color: #697889;
  margin-bottom: 18px;
}

.job-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.job-metric-box {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  background: #fafbfd;
  padding: 12px;
}

.warning-box {
  background: #fffaf1;
  border-color: #fce2b5;
}

.metric-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.metric-icon.blue {
  background: #ebf3ff;
  color: #1c67d4;
}

.metric-icon.orange {
  background: #fff0df;
  color: #ff8b3d;
}

.metric-icon.gray {
  background: #edf1f7;
  color: #4a5a72;
}

.metric-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.metric-copy strong {
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 700;
}

.metric-copy small {
  color: #76859a;
  font-size: 11px;
}

.metric-arrow {
  color: #7c8ca5;
  font-size: 18px;
}

.job-posting-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid #edf1f7;
  color: #6d7890;
  font-size: 12px;
}

.boost-btn,
.activate-btn {
  background: #142e50;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 700;
}

.activate-btn {
  background: #3657d6;
}

.improvement-card {
  display: none !important;
}

.improvement-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.compact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fee4d3;
  color: #ff6a00;
  font-size: 13px;
  font-weight: 800;
}

.compact-label {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.improvement-body {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr;
  gap: 18px;
  align-items: center;
}

.improvement-copy h3 {
  font-size: 22px;
  line-height: 1.35;
  color: #1a1a2e;
  font-weight: 700;
  margin: 0 0 14px;
}

.improvement-copy p {
  margin: 0;
  font-size: 13px;
  color: #5e6d80;
}

.improvement-copy p span {
  color: #ff6a00;
  font-weight: 700;
}

.perk-builder-box {
  background: #fff;
  border: 1px solid #dfe7f3;
  border-radius: 12px;
  padding: 14px;
}

.perk-builder-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.perk-builder-head span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf2ff;
  color: #2348b4;
  font-weight: 700;
  font-size: 12px;
}

.perk-builder-head strong {
  font-size: 14px;
  color: #1a1a2e;
}

.perk-input-wrap {
  margin-bottom: 14px;
}

.perk-input-wrap input {
  width: 100%;
  border: 1px solid #dfe7f3;
  border-radius: 8px;
  background: #f7f9fd;
  padding: 11px 12px;
  font-size: 13px;
  color: #505d72;
}

.perk-builder-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.easy-btn,
.primary-btn {
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
}

.easy-btn {
  background: #edf3ff;
  color: #2449b5;
}

.primary-btn {
  background: #142e50;
  color: #fff;
}

.dashboard-side-area {
  min-width: 0;
}

.side-plan-card {
  margin-bottom: 20px;
}

.employer-plan-card {
  background: linear-gradient(135deg, #fffaf3 0%, #fff 50%, #f3f7ff 100%);
  border: 1px solid #f4d7b7;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 30px rgba(20, 46, 80, 0.08);
}

.employer-plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.employer-plan-badge {
  display: inline-flex;
  align-items: center;
  background: #fff2e8;
  color: #ff6a00;
  border: 1px solid #ffd5b3;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.employer-plan-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  border-radius: 999px;
  background: #142e50;
  color: #fff;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
}

.employer-plan-name {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #142e50;
}

.employer-plan-meta {
  margin: 8px 0 16px;
  font-size: 12px;
  color: #5d6b7d;
}

.employer-plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #edf1f7;
  font-size: 13px;
  color: #485a70;
}

.employer-plan-row strong {
  color: #142e50;
  font-size: 13px;
}

.employer-plan-btn {
  width: 100%;
  margin-top: 14px;
  border: none;
  background: linear-gradient(135deg, #ff8a37 0%, #ff6a00 100%);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(255, 106, 0, 0.18);
}

@media (max-width: 991.98px) {
  .employer-plan-strip {
    grid-template-columns: 1fr;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .improvement-body {
    grid-template-columns: 1fr;
  }

  .job-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Job Detail Sections (About, Description, Requirements, Skills, Company Brief) ===== */

.jd-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.jd-heading {
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
}

.jd-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f5f6fa;
  color: #4a4a68;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.jd-paragraph {
  color: #6b6b80;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
}

.jd-list {
  padding-left: 18px;
  margin: 12px 0 0;
}

.jd-list li {
  color: #6b6b80;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.jd-skill-tag {
  background: #f5f6fa;
  color: #4a4a68;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

.jd-company-logo {
  width: 32px;
  height: 32px;
}

.jd-company-name {
  font-weight: 600;
  color: #1a1a2e;
}

/* ===== Recommended Jobs (sidebar) ===== */

.rj-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rj-item {
  border: 1px solid #edeef2;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
}

.rj-item:last-child {
  margin-bottom: 0;
}

.rj-logo {
  width: 28px;
  height: 28px;
}

.rj-title {
  font-weight: 600;
  font-size: 14px;
  color: #1a1a2e;
}

.rj-type {
  color: #9a9ab0;
  font-size: 12px;
  margin-bottom: 6px;
}

.rj-meta {
  color: #6b6b80;
  font-size: 12px;
}

.rj-skill-tag {
  background: #f5f6fa;
  color: #4a4a68;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
}

/* ===== Page heading ===== */

.skills-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
}

/* ===== Filter tabs ===== */

.filter-tabs {
  margin-bottom: 24px;
}

.filter-tab {
  border: 1px solid #e6e7ee;
  background: #ffffff;
  color: #4a4a68;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.filter-tab.active {
  background: #ff6b1a;
  border-color: #ff6b1a;
  color: #ffffff;
}

/* ===== Course card ===== */

.course-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.course-thumb {
  width: 130px;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
}

.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-title {
  font-weight: 600;
  color: #1a1a2e;
  font-size: 16px;
  margin-bottom: 2px;
}

.course-author {
  color: #9a9ab0;
  font-size: 13px;
  margin-bottom: 8px;
}

.course-meta {
  color: #6b6b80;
  font-size: 13px;
  margin-bottom: 10px;
}

.course-skills-label {
  color: #6b6b80;
  font-size: 13px;
  margin-bottom: 8px;
}

.course-skill-tag {
  background: #f5f6fa;
  color: #4a4a68;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
}

.course-skill-more {
  color: #9a9ab0;
  font-size: 12px;
}

.btn-save-course {
  background: #eaf0ff;
  color: #2952e3;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* ===== Pagination ===== */

.course-pagination {
  margin-top: 20px;
}

.pg-btn {
  min-width: 40px;
  height: 40px;
  border: 1px solid #e6e7ee;
  background: #ffffff;
  color: #4a4a68;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.pg-btn.active {
  background: #ff6b1a;
  border-color: #ff6b1a;
  color: #ffffff;
}

.pg-arrow {
  color: #6b6b80;
}

.courses-wrap {
  background-color: #f7f8fb;
  padding: 30px 0 60px;
  margin-top: 85px;
}

.courses-heading {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
}

/* Category chips */
.category-chip {
  border: none;
  background-color: #eceef2;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.category-chip.is-active {
  background-color: #ff5c00;
  color: #ffffff;
}

.category-chip:not(.is-active):hover {
  background-color: #e2e4ea;
}

/* Course entry card */
.course-entry {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 16px;
  gap: 18px;
}

.course-thumb {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.course-by {
  font-size: 13px;
  color: #8b8f9a;
  margin-bottom: 8px;
}

.course-info {
  margin-bottom: 10px;
}

.info-chip {
  font-size: 13px;
  color: #4b5563;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.info-chip i {
  color: #ff5c00;
  font-size: 12px;
}

.skills-caption {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 6px;
}

.skill-tag,
.skill-tag-extra {
  background-color: #f1f2f6;
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 16px;
  white-space: nowrap;
}

.skill-tag-extra {
  background-color: #eceef2;
  color: #6b7280;
}

.save-btn {
  background-color: #dbeafe;
  color: #1d4ed8;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 18px;
  white-space: nowrap;
}

.save-btn:hover {
  background-color: #c7ddfc;
}

/* Pagination */
.pager-wrap {
  display: flex;
  justify-content: flex-start;
}

.pager-list {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 10px;
  padding: 6px;
}

.pager-arrow,
.pager-num {
  border: none;
  background: transparent;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pager-num.is-current {
  background-color: #ff5c00;
  color: #ffffff;
  font-weight: 700;
}

.pager-num:not(.is-current):hover,
.pager-arrow:hover {
  background-color: #f1f2f6;
}

/* Sidebar promo */
.promo-card {
  border-radius: 14px;
  overflow: hidden;
  position: sticky;
  top: 20px;
}

.job-form-wrap {
  background-color: #f7f8fb;
  margin-top: 85px;
  margin-bottom: 60px;
}

.job-form-card {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 28px;
}

.job-form-heading {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-grid-2 .form-field {
  margin-bottom: 0;
}

.form-field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.required-mark {
  color: #ef4444;
}

.form-field-input,
.form-field-select,
.form-field-textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #1a1a2e;
  background-color: #ffffff;
}

.form-field-input::placeholder,
.form-field-textarea::placeholder {
  color: #9ca3af;
}

.form-field-select {
  color: #9ca3af;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}

.form-field-input:focus,
.form-field-select:focus,
.form-field-textarea:focus {
  outline: none;
  border-color: #ff5c00;
  box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.1);
}

.form-field-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-date-wrap {
  position: relative;
}

.form-date-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 14px;
  pointer-events: none;
}

.form-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.job-post-btn {
  background-color: #0b1b3a;
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 40px;
  border-radius: 999px;
}

.job-post-btn:hover {
  background-color: #142a56;
}

.contact-wrap {
  background-color: #f7f8fb;
  position: relative;
  overflow: hidden;
  margin-top: 85px;
}

.contact-heading {
  font-size: 34px;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.3;
  letter-spacing: -0.4px;
}

.contact-highlight {
  color: #ff5c00;
}

.contact-image {
  border-radius: 18px;
  overflow: hidden;
  flex-grow: 1;
  position: relative;
  box-shadow: 0 16px 32px -12px rgba(11, 27, 58, 0.25);
}

.contact-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 27, 58, 0) 60%,
    rgba(11, 27, 58, 0.35) 100%
  );
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/* Form card */
.contact-form-card {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 20px 40px -16px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

.contact-form-heading {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a2e;
}

.contact-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-field {
  margin-bottom: 20px;
}

.contact-field-grid .contact-field {
  margin-bottom: 0;
}

.contact-field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.contact-required {
  color: #ef4444;
}

.contact-field-input,
.contact-field-textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 13px;
  color: #1a1a2e;
  background-color: #fbfbfd;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.contact-field-input::placeholder,
.contact-field-textarea::placeholder {
  color: #9ca3af;
}

.contact-field-input:focus,
.contact-field-textarea:focus {
  outline: none;
  border-color: #ff5c00;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.12);
}

.contact-field-textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.contact-submit-btn {
  background: linear-gradient(135deg, #ff5c00, #ff8642);
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px -8px rgba(255, 92, 0, 0.5);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -8px rgba(255, 92, 0, 0.55);
}

/* Info chip cards */
.contact-info-card {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 16px;
  padding: 22px;
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px -14px rgba(15, 23, 42, 0.18);
  border-color: #e2e4ea;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 14px;
}

.icon-phone {
  background-color: #fdece0;
  color: #ff5c00;
}

.icon-mail {
  background-color: #fdece0;
  color: #ff5c00;
}

.icon-location {
  background-color: #fdece0;
  color: #ff5c00;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.6px;
}

.contact-info-value {
  font-size: 13.5px;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.6;
}

.profile-page {
  background-color: #f7f8fb;
  padding: 30px 0 60px;
  margin-top: 85px;
}

/* ===== LEFT COLUMN: candidate-* classes ===== */

/* Shared card look */
.candidate-card,
.candidate-summary-card,
.candidate-resume-card,
.candidate-basic-card,
.candidate-experience-card {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 22px;
}

.candidate-edit-btn {
  background-color: #dbeafe;
  color: #1d4ed8;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.candidate-edit-btn:hover {
  background-color: #c7ddfc;
}

/* Profile card */
.candidate-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.candidate-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.candidate-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
}

.candidate-role {
  font-size: 14px;
  color: #6b7280;
}

.candidate-contact {
  margin-top: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid #eceef2;
  margin-bottom: 4px;
}

.candidate-contact-item {
  font-size: 13px;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.candidate-contact-item i {
  color: #ff5c00;
}

.candidate-stats {
  border-top: 1px solid #eceef2;
  padding-top: 18px;
  gap: 32px;
}

.candidate-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.candidate-stat-icon {
  width: 38px;
  height: 38px;
  background-color: #fff1e8;
  color: #ff5c00;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.candidate-stat-label {
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 0.4px;
}

.candidate-stat-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

/* Open to Work card */
.candidate-open-card {
  background-color: #fdece0;
  border-radius: 14px;
  padding: 20px 22px;
}

.candidate-open-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.candidate-open-card p {
  font-size: 13px;
  color: #6b7280;
}

/* Toggle switch */
.candidate-toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.candidate-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.candidate-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #d1d5db;
  border-radius: 999px;
  transition: 0.2s;
}

.candidate-toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: 0.2s;
}

.candidate-toggle input:checked + .candidate-toggle-slider {
  background-color: #ff5c00;
}

.candidate-toggle input:checked + .candidate-toggle-slider::before {
  transform: translateX(20px);
}

/* Profile summary */
.candidate-summary-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.candidate-summary-text {
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
  text-align: justify;
}

/* Resume file chip */
.candidate-resume-file {
  background-color: #f7f8fb;
  border: 1px solid #eceef2;
  border-radius: 10px;
  padding: 12px 16px;
}

.candidate-resume-icon {
  width: 36px;
  height: 36px;
  background-color: #eceef2;
  color: #4b5563;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.candidate-resume-name {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
}

/* Label/value pairs (Basic Details + Experience) */
.candidate-details-row {
  gap: 32px;
}

.candidate-detail-item {
  min-width: 140px;
}

.candidate-detail-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.4px;
}

.candidate-detail-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

.candidate-detail-paragraph {
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
  text-align: justify;
}

/* ===== RIGHT SIDEBAR: unchanged classes ===== */

.halfway-card {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 22px;
}

.halfway-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
}

.halfway-copy h5 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
}

.halfway-copy p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}

.progress-ring {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-track {
  fill: none;
  stroke: #f1f2f6;
  stroke-width: 8;
}

.ring-fill {
  fill: none;
  stroke: #ff5c00;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 92.4;
  /* 264 * (1 - 0.65) ≈ 92.4 for 65% */
}

.ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #ff5c00;
}

.halfway-note {
  background-color: #eaf1fb;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: #1d4ed8;
}

.halfway-note i {
  color: #1d4ed8;
  flex-shrink: 0;
}

/* Reminder banner */
.profile-alert {
  background-color: #fdece0;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 14px;
  color: #1a1a2e;
}

.profile-alert i {
  color: #ff5c00;
  font-size: 16px;
  flex-shrink: 0;
}

/* Progress card */
.progress-card {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 26px;
}

.progress-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #374151;
}

.progress-card-copy h5 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.progress-card-copy p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  max-width: 220px;
}

.progress-card-divider {
  border: none;
  border-top: 1px solid #eceef2;
  margin: 24px 0;
}

/* Larger progress ring (blue variant) */
.progress-ring-lg {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.progress-ring-lg svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-lg-track {
  fill: none;
  stroke: #eceef2;
  stroke-width: 8;
}

.ring-lg-fill {
  fill: none;
  stroke: #1d4ed8;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 92.4;
  /* 264 * (1 - 0.65) ≈ 92.4 for 65% */
}

.ring-lg-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: #1d4ed8;
}

/* Pending action list */
.pending-heading {
  font-size: 18px;
  font-weight: 700;
  color: #374151;
}

.pending-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.pending-icon {
  width: 30px;
  height: 30px;
  background-color: #fdece0;
  color: #ff5c00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.pending-text {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a2e;
  flex-grow: 1;
}

.pending-arrow {
  color: #9ca3af;
  font-size: 14px;
}

.pending-item:hover .pending-text {
  color: #ff5c00;
}

.pending-item {
  cursor: pointer;
}

.about-firm {
  padding: 40px 0;
  margin-top: 85px;
}

.about-firm-heading {
  font-size: 2.5rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.text-highlight {
  color: #fd6f1c;
}

.about-firm-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 30px;
}

.about-firm-stats {
  background-color: #ededed;
  border-radius: 16px;
  padding: 30px 20px;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.stat-label {
  color: #6c757d;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.about-firm-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.our-vision {
  background-color: #e9f0fb;
  padding: 70px 0;
}

.vision-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
}

.vision-text {
  color: #444444;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.vision-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 24px;
}

.vision-text-bottom {
  max-width: 900px;
}

.our-mission {
  padding: 70px 0;
  background-color: #ffffff;
}

.mission-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
}

.mission-text {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.7;
}

.mission-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 30px 24px;
  height: 100%;
  text-align: center;
}

.mission-icon-box {
  width: 60px;
  height: 60px;
  background-color: #fde9dd;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mission-icon-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.mission-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.mission-card-text {
  color: #6c757d;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.core-objectives {
  padding: 40px 0;
  background-color: #ffffff;
}

.objectives-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.objectives-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

.objective-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.objective-number {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
}

.objective-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0;
}

.objective-text {
  color: #6c757d;
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== Page heading ===== */

.sub-page {
  padding: 48px 0 60px;
  margin-top: 60px;
  background-color: #fff;
}

.sub-heading {
  font-size: 46px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 20px;
}

/* ===== Monthly / Yearly tabs (Bootstrap nav-pills) ===== */

.sub-toggle {
  gap: 8px;
  margin-bottom: 44px;
}

.sub-toggle .nav-link {
  border: none;
  background: #eceef4;
  color: #6b6b80;
  padding: 8px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.sub-toggle .nav-link:hover {
  color: #4a4a68;
}

.sub-toggle .nav-link.active {
  background: #ff6b1a;
  color: #ffffff;
}

/* ===== Plan cards ===== */

.plan-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #eef1fb 100%);
  border: 1px solid #e6e9f5;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(26, 26, 46, 0.08);
}

.plan-card-highlight {
  border: 1px solid #ff9354;
  background: linear-gradient(180deg, #fff3ea 0%, #eef1fb 100%);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #ff6b1a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.plan-name {
  font-weight: 600;
  font-size: 24px;
  color: #1e365e;
  margin-bottom: 8px;
}

.plan-name-gold {
  color: #ff6b1a;
}

.plan-underline {
  width: 50px;
  height: 1px;
  background: #1e365e;
  border-radius: 2px;
  margin-bottom: 18px;
}

.plan-underline-gold {
  background: #ff6b1a;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.plan-amount {
  font-size: 30px;
  font-weight: 500;
  color: #1a1a2e;
}

.plan-amount-gold {
  color: #ff6b1a;
}

.plan-gst {
  color: #9a9ab0;
  font-size: 13px;
}

.plan-period {
  color: #9a9ab0;
  font-size: 13px;
}

.plan-save {
  color: #1fa855;
  font-size: 12px;
  font-weight: 600;
  margin: 6px 0 0;
}

.plan-save-gold {
  color: #ff6b1a;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 22px 0 24px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #6b6b80;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.plan-features li i {
  color: #bed4fa;
  font-size: 15px;
  margin-top: 2px;
}

.plan-features-gold li i {
  color: #ff6b1a;
}

.btn-plan-subscribe {
  width: 100%;
  background: #ffffff;
  border: 1px solid #1a1a2e;
  color: #1a1a2e;
  border-radius: 30px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.btn-plan-subscribe:hover {
  background: linear-gradient(90deg, #1e365e 0%, #2961bf 100%);
  color: #ffffff;
}

.btn-plan-subscribe-gold {
  background: #ffffff;
  border: 1px solid #ff6b1a;
  color: #ff6b1a;
}

.btn-plan-subscribe-gold:hover {
  background: linear-gradient(90deg, #ba5215 0%, #fd6f1c 100%);
  color: #ffffff;
}

/* ===== Page ===== */

.billing-page {
  padding: 40px 0 60px;
  margin-top: 60px;
}

.billing-heading {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
}

/* ===== Card shell (shared) ===== */

.billing-card {
  background: #ffffff;
  border: 1px solid #edeef2;
  border-radius: 14px;
  padding: 28px;
  height: 100%;
}

.billing-card-title {
  font-weight: 600;
  font-size: 16px;
  color: #1a1a2e;
  margin: 0;
}

/* ===== Billing Information form ===== */

.billing-label {
  display: block;
  color: #4a4a68;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.billing-label .req {
  color: #ff4d4d;
}

.billing-input {
  width: 100%;
  border: 1px solid #e6e7ee;
  background: #fafbfd;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: #1a1a2e;
}

.billing-input::placeholder {
  color: #b0b0c3;
}

.billing-input:focus {
  outline: none;
  border-color: #2952e3;
  background: #ffffff;
}

.btn-billing-save {
  background: #eaf0ff;
  color: #2952e3;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
}

.btn-billing-save:hover {
  background: #2952e3;
  color: #ffffff;
}

/* ===== Summary card ===== */

.summary-plan-name {
  font-weight: 600;
  color: #1a1a2e;
  font-size: 15px;
}

.summary-plan-price {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 15px;
}

.summary-plan-note {
  color: #9a9ab0;
  font-weight: 400;
  font-size: 12px;
}

.summary-divider {
  height: 1px;
  background: #edeef2;
  margin: 18px 0;
}

.summary-row {
  color: #6b6b80;
  font-size: 13px;
  margin-bottom: 10px;
}

.summary-row span:last-child {
  color: #1a1a2e;
  font-weight: 600;
}

.summary-total {
  background: #fff0e8;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 16px;
  color: #4a4a68;
  font-size: 13px;
  font-weight: 500;
}

.summary-total span:last-child {
  color: #ff6b1a;
  font-weight: 700;
  font-size: 16px;
}

.btn-continue-pay {
  width: 100%;
  background: #1a1a2e;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 13px;
  font-size: 14px;
  font-weight: 600;
}

.btn-continue-pay:hover {
  background: #2c2c4a;
}

/* ===== Payment Status modal ===== */

.payment-status-modal {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.payment-status-header {
  background: #1a1a4e;
  color: #ffffff;
  padding: 16px 20px;
  border: none;
}

.payment-status-header .modal-title {
  font-size: 15px;
  font-weight: 600;
}

.payment-status-body {
  padding: 40px 32px 36px;
  text-align: center;
}

.payment-status-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  box-shadow:
    0 0 0 10px #eefbf3,
    0 0 0 20px #f5fdf8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-status-icon i {
  color: #ffffff;
  font-size: 30px;
  background: #1fc373;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-status-title {
  color: #1fc373;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.payment-status-text {
  color: #6b6b80;
  font-size: 14px;
  margin: 0;
}

.sc-wrap {
  background-color: #f7f8fb;
  margin-top: 85px;
}

.sc-heading {
  font-size: 30px;
  font-weight: 500;
  color: #1a1a2e;
}

/* Search bar */
.sc-search-bar {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
}

.sc-search-field {
  padding: 6px 16px;
}

.sc-search-field input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 13px;
  color: #1a1a2e;
  background: transparent;
}

.sc-search-field input::placeholder {
  color: #9ca3af;
}

.sc-search-divider {
  width: 1px;
  height: 22px;
  background-color: #e5e7eb;
  flex-shrink: 0;
}

.sc-search-btn {
  width: 42px;
  height: 42px;
  background-color: #ff5c00;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.sc-search-btn:hover {
  background-color: #e65200;
}

/* Results row */
.sc-results-count {
  font-size: 14px;
  color: #6b7280;
}

.sc-export-link {
  font-size: 13px;
  font-weight: 600;
  color: #ff5c00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sc-export-link:hover {
  color: #e65200;
}

/* Candidate card */
.sc-candidate-card {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 18px 20px;
}

.sc-candidate-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.sc-candidate-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sc-candidate-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.sc-candidate-role {
  font-size: 13px;
  color: #6b7280;
}

.sc-download-btn {
  background-color: #dbeafe;
  color: #1d4ed8;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.sc-download-btn:hover {
  background-color: #c7ddfc;
}

.sc-view-btn {
  background-color: #0b1b3a;
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.sc-view-btn:hover {
  background-color: #142a56;
}

.sc-meta-item {
  font-size: 13px;
  color: #4b5563;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sc-meta-item i {
  color: #ff5c00;
  font-size: 12px;
}

.sc-skill-tag,
.sc-skill-tag-extra {
  background-color: #f1f2f6;
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 16px;
  white-space: nowrap;
}

.sc-skill-tag-extra {
  background-color: #eceef2;
  color: #6b7280;
}

.sc-candidate-location {
  font-size: 12px;
  color: #9ca3af;
  white-space: nowrap;
}

/* Specify Skills sidebar card */
.sc-skills-card {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 22px;
}

.sc-skills-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.sc-skills-input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #1a1a2e;
}

.sc-skills-input::placeholder {
  color: #9ca3af;
}

.sc-skills-input:focus {
  outline: none;
  border-color: #ff5c00;
  box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.1);
}

.sc-skill-filter-tag {
  background-color: #f1f2f6;
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 16px;
  white-space: nowrap;
}

.rc-page {
  background-color: #f7f8fb;
  margin-top: 85px;
}

/* Shared card look */
.rc-card,
.rc-summary-card,
.rc-basic-card,
.rc-experience-card,
.rc-skills-card {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 22px;
}

.rc-download-btn {
  background-color: #dbeafe;
  color: #1d4ed8;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.rc-download-btn:hover {
  background-color: #c7ddfc;
}

/* Profile card */
.rc-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.rc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
}

.rc-role {
  font-size: 14px;
  color: #6b7280;
}

.rc-contact {
  margin-top: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid #eceef2;
  margin-bottom: 4px;
}

.rc-contact-item {
  font-size: 13px;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.rc-contact-item i {
  color: #ff5c00;
}

.rc-stats {
  border-top: 1px solid #eceef2;
  padding-top: 18px;
  gap: 32px;
}

.rc-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rc-stat-icon {
  width: 38px;
  height: 38px;
  background-color: #fff1e8;
  color: #ff5c00;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.rc-stat-label {
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 0.4px;
}

.rc-stat-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

/* Profile summary */
.rc-summary-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.rc-summary-text {
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
  text-align: justify;
}

/* Label/value pairs (Basic Details + Experience) */
.rc-details-row {
  gap: 32px;
}

.rc-detail-item {
  min-width: 140px;
}

.rc-detail-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.4px;
}

.rc-detail-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

.rc-detail-paragraph {
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
  text-align: justify;
}

/* Skills card */
.rc-skill-tag {
  background-color: #f1f2f6;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 18px;
}

/* Application Status card */
.rc-status-card {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 22px;
}

.rc-status-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.rc-status-field {
  margin-bottom: 18px;
}

.rc-status-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.rc-status-required {
  color: #ef4444;
}

.rc-status-select,
.rc-status-textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #1a1a2e;
  background-color: #ffffff;
}

.rc-status-select {
  color: #9ca3af;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}

.rc-status-textarea {
  resize: vertical;
  min-height: 80px;
}

.rc-status-textarea::placeholder {
  color: #9ca3af;
}

.rc-status-select:focus,
.rc-status-textarea:focus {
  outline: none;
  border-color: #ff5c00;
  box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.1);
}

.myjobs-page {
  padding: 10px 0 10px;
  background: linear-gradient(180deg, #eef2ff 0%, #f5f6fa 100%);
}

.page-dashboard-shell {
  background: transparent;
}

.employer-plan-strip {
  display: grid;
  grid-template-columns: 1.1fr 2.5fr 1.2fr;
  gap: 18px;
  background: #f0f4ff;
  border: 1px solid #e1e8f8;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(20, 46, 80, 0.04);
}

.employer-support-box,
.employer-plan-box,
.plan-upgrade-box {
  background: #fff;
  border: 1px solid #e7ebf4;
  border-radius: 14px;
  padding: 18px;
}

.employer-support-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 170px;
}

.employer-support-box h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #142e50;
}

.employer-support-box p,
.employer-support-box span {
  margin: 0;
  font-size: 12px;
  color: #5b6b7d;
}

.employer-support-box span {
  margin-top: 6px;
}

.support-btn {
  margin-top: 16px;
  border: 1px solid #142e50;
  background: #fff;
  color: #142e50;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
}

.employer-plan-box {
  background: linear-gradient(135deg, #fffaf3 0%, #ffffff 40%, #f4f7ff 100%);
}

.plan-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.plan-header-row h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #142e50;
}

.plan-header-row small {
  display: block;
  margin-top: 6px;
  color: #607089;
  font-size: 11px;
}

.days-left {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff4e9;
  color: #ff6a00;
  border: 1px solid #ffd6b1;
  font-size: 11px;
  font-weight: 700;
}

.plan-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.plan-metric-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f9fafc;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 12px 10px;
}

.metric-label {
  font-size: 11px;
  color: #8996a7;
  line-height: 1.4;
}

.plan-metric-item strong {
  font-size: 13px;
  color: #142e50;
}

.plan-upgrade-box {
  background: linear-gradient(180deg, #f2fbed 0%, #eef8ff 100%);
  border-color: #d7edd0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-upgrade-box h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #142e50;
}

.plan-upgrade-box p {
  margin: 10px 0 18px;
  color: #5d6f84;
  font-size: 13px;
}

.upgrade-btn {
  border: none;
  background: linear-gradient(135deg, #4bb35a 0%, #2d8f44 100%);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
}

.dashboard-main-area {
  min-width: 0;
}

.dashboard-header-row h2 {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 700;
  color: #1a1a2e;
}

.dashboard-tabs {
  margin-bottom: 18px !important;
}

.job-alert-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff7ea;
  border: 1px solid #f4d8b2;
  border-radius: 12px;
  color: #6b6b80;
  font-size: 14px;
  margin-bottom: 18px;
}

.alert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff0d7;
  color: #ff9800;
}

.job-alert-banner a {
  margin-left: auto;
  color: #142e50;
  font-weight: 600;
  text-decoration: none;
}

.job-posting-card {
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}

.job-posting-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.job-posting-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-pill.active {
  background: #e8f8ed;
  color: #1d8f5f;
}

.status-pill.inactive {
  background: #fff0dd;
  color: #d9821b;
}

.secondary-job-card {
  margin-top: 18px;
}

.job-posting-title-block h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
}

.job-posting-title-block p {
  margin: 0;
  color: #77839a;
  font-size: 12px;
}

.edit-job-btn {
  background: #edf3ff;
  color: #2449b5;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
}

.job-posting-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 12px;
  color: #697889;
  margin-bottom: 18px;
}

.job-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.job-metric-box {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  background: #fafbfd;
  padding: 12px;
}

.warning-box {
  background: #fffaf1;
  border-color: #fce2b5;
}

.metric-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.metric-icon.blue {
  background: #ebf3ff;
  color: #1c67d4;
}

.metric-icon.orange {
  background: #fff0df;
  color: #ff8b3d;
}

.metric-icon.gray {
  background: #edf1f7;
  color: #4a5a72;
}

.metric-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.metric-copy strong {
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 700;
}

.metric-copy small {
  color: #76859a;
  font-size: 11px;
}

.metric-arrow {
  color: #7c8ca5;
  font-size: 18px;
}

.job-posting-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid #edf1f7;
  color: #6d7890;
  font-size: 12px;
}

.boost-btn,
.activate-btn {
  background: #142e50;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 700;
}

.activate-btn {
  background: #3657d6;
}

.myjobs-tab {
  border: none;
  background-color: #eceef2;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.myjobs-tab.is-active {
  background-color: #ff5c00;
  color: #ffffff;
}

.myjobs-tab:not(.is-active):hover {
  background-color: #e2e4ea;
}

@media (max-width: 991.98px) {
  .page-top-strip,
  .employer-plan-strip {
    grid-template-columns: 1fr;
  }

  .page-action-cluster {
    justify-content: flex-start;
  }

  .job-metrics-grid {
    grid-template-columns: 1fr;
  }
}

.myjobs-heading {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
}

.myjobs-post-btn {
  background-color: #0b1b3a;
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.myjobs-post-btn:hover {
  background-color: #142a56;
}

/* Filter tabs */
.myjobs-tab {
  border: none;
  background-color: #eceef2;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.myjobs-tab.is-active {
  background-color: #ff5c00;
  color: #ffffff;
}

.myjobs-tab:not(.is-active):hover {
  background-color: #e2e4ea;
}

/* Table card */
.myjobs-table-card {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  overflow: hidden;
}

.myjobs-table {
  width: 100%;
  border-collapse: collapse;
}

.myjobs-table thead th {
  background-color: #f7f8fb;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-align: left;
  padding: 16px 20px;
  white-space: nowrap;
}

.myjobs-table tbody td {
  padding: 18px 20px;
  font-size: 14px;
  color: #374151;
  border-top: 1px solid #eceef2;
  vertical-align: middle;
  white-space: nowrap;
}

.myjobs-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
}

.myjobs-subtitle {
  font-size: 12px;
  color: #9ca3af;
}

/* Status pill */
.myjobs-status {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 16px;
  display: inline-block;
}

.myjobs-status.is-active {
  background-color: #e3f9e5;
  color: #16a34a;
}

.myjobs-status.is-inactive {
  background-color: #fdece0;
  color: #ef4444;
}

/* Edit action button */
.myjobs-edit-btn {
  width: 34px;
  height: 34px;
  background-color: transparent;
  border: none;
  color: #ff5c00;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.myjobs-edit-btn:hover {
  background-color: #fff1e8;
}

.rp-page {
  background-color: #f7f8fb;
  margin-top: 85px;
}

/* Shared card look */
.rp-card,
.rp-org-card {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 22px;
}

.rp-edit-btn {
  background-color: #dbeafe;
  color: #1d4ed8;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.rp-edit-btn:hover {
  background-color: #c7ddfc;
}

/* Profile card */
.rp-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.rp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rp-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
}

.rp-role {
  font-size: 14px;
  color: #6b7280;
}

.rp-contact {
  margin-top: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid #eceef2;
  margin-bottom: 4px;
}

.rp-contact-item {
  font-size: 13px;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.rp-contact-item i {
  color: #ff5c00;
}

.rp-stats {
  border-top: 1px solid #eceef2;
  padding-top: 18px;
  gap: 32px;
}

.rp-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rp-stat-icon {
  width: 38px;
  height: 38px;
  background-color: #fff1e8;
  color: #ff5c00;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.rp-stat-label {
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 0.4px;
}

.rp-stat-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

/* Actively Hiring card */
.rp-hiring-card {
  background-color: #fdece0;
  border-radius: 14px;
  padding: 20px 22px;
}

.rp-hiring-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.rp-hiring-card p {
  font-size: 13px;
  color: #6b7280;
}

/* Toggle switch */
.rp-toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.rp-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.rp-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #d1d5db;
  border-radius: 999px;
  transition: 0.2s;
}

.rp-toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: 0.2s;
}

.rp-toggle input:checked + .rp-toggle-slider {
  background-color: #ff5c00;
}

.rp-toggle input:checked + .rp-toggle-slider::before {
  transform: translateX(20px);
}

/* Organisation card */
.rp-org-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #f7f8fb;
  border: 1px solid #eceef2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rp-org-logo img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.rp-org-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
}

.rp-org-industry {
  font-size: 13px;
  color: #6b7280;
}

.rp-org-heading {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.rp-org-row {
  gap: 32px;
}

.rp-org-item {
  min-width: 140px;
}

.rp-org-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.4px;
}

.rp-org-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

.rp-org-paragraph {
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
}

/* Subscription card */
.rp-subscription-card {
  background-color: #ffffff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 22px;
}

.rp-sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.rp-sub-days {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
}

.rp-sub-note {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.rp-sub-btn {
  background-color: #ff5c00;
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 20px;
}

.rp-sub-btn:hover {
  background-color: #e65200;
}

/* Upgrade plan card */
.rp-upgrade-card {
  background-color: #eaf1fb;
  border-radius: 14px;
  padding: 22px;
}

.rp-upgrade-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
}

.rp-upgrade-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}

.rp-upgrade-btn {
  background-color: #0b1b3a;
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 20px;
}

.rp-upgrade-btn:hover {
  background-color: #142a56;
}

/* Banner */
.faqpage-banner {
  background: linear-gradient(135deg, #1c2b4d 0%, #2c3c63 100%);
  padding: 70px 0 100px;
  position: relative;
  margin-top: 80px;
}

.faqpage-badge {
  display: inline-block;
  background-color: rgba(255, 106, 0, 0.15);
  color: #ff8c3d;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 20px;
}

.faqpage-banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.faqpage-banner-subtitle {
  font-size: 1rem;
  color: #b8c0d4;
}

.faqpage-search {
  position: relative;
  max-width: 520px;
}

.faqpage-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa3b8;
  font-size: 1rem;
}

.faqpage-search-input {
  width: 100%;
  padding: 16px 20px 16px 48px;
  border: none;
  border-radius: 14px;
  font-size: 0.95rem;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faqpage-search-input:focus {
  outline: none;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 0 0 3px rgba(255, 106, 0, 0.25);
}

/* Section */
.faqpage-section {
  background-color: #f7f9fc;
  margin-top: -50px;
}

/* Filters */
.faqpage-filter-btn {
  background-color: #ffffff;
  border: 1px solid #e5e9f2;
  color: #4a5468;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.2s ease;
}

.faqpage-filter-btn:hover {
  border-color: #ff6a00;
  color: #ff6a00;
}

.faqpage-filter-btn.active {
  background-color: #ff6a00;
  border-color: #ff6a00;
  color: #ffffff;
}

/* Accordion */
.faqpage-item {
  border: none;
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 14px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(20, 30, 60, 0.05);
  transition: box-shadow 0.2s ease;
}

.faqpage-item:hover {
  box-shadow: 0 6px 20px rgba(20, 30, 60, 0.08);
}

.faqpage-button {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  background-color: #ffffff;
  padding: 20px 22px;
}

.faqpage-number {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background-color: #fff4ec;
  color: #ff6a00;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faqpage-button:not(.collapsed) {
  color: #ff6a00;
  box-shadow: none;
  background: none;
}

.faqpage-button:not(.collapsed) .faqpage-number {
  background-color: #ff6a00;
  color: #ffffff;
}

.faqpage-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faqpage-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5a5a5a;
  padding: 0 22px 22px 72px;
}

/* No results */
.faqpage-no-results {
  color: #9aa3b8;
}

.faqpage-no-results i {
  font-size: 2rem;
}

/* Sticky help card */
.faqpage-help-card {
  background: linear-gradient(135deg, #1c2b4d 0%, #2c3c63 100%);
  border-radius: 18px;
  padding: 32px 28px;
  color: #ffffff;
  position: sticky;
  top: 80px;
}

.faqpage-help-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(255, 106, 0, 0.15);
  color: #ff8c3d;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.faqpage-help-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.faqpage-help-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #b8c0d4;
}

.faqpage-help-list li {
  font-size: 0.9rem;
  color: #d5dae6;
}

.faqpage-help-list i {
  margin-right: 12px;
  color: #ff8c3d;
  font-size: 0.9rem;
}

.faqpage-help-btn {
  background-color: #ff6a00;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
}

.faqpage-help-btn:hover {
  background-color: #e65f00;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .faqpage-help-card {
    position: static;
    margin-top: 32px;
  }

  .faqpage-banner-title {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .faqpage-body {
    padding-left: 22px;
  }

  .faqpage-number {
    display: none;
  }

  .faqpage-button {
    gap: 0;
  }
}

/* Banner */
.termspage-banner {
  background: linear-gradient(135deg, #1c2b4d 0%, #2c3c63 100%);
  padding: 60px 0 60px;
  margin-top: 80px;
}

.termspage-badge {
  display: inline-block;
  background-color: rgba(255, 106, 0, 0.15);
  color: #ff8c3d;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 20px;
}

.termspage-banner-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
}

.termspage-banner-subtitle {
  font-size: 0.9rem;
  color: #b8c0d4;
}

/* Section */
.termspage-section {
  background-color: #ffffff;
}

/* Sidebar nav */
.termspage-nav {
  position: sticky;
  top: 80px;
  border-right: 1px solid #eef0f5;
  padding-right: 20px;
}

.termspage-nav-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #9aa3b8;
  margin-bottom: 14px;
}

.termspage-nav-link {
  display: block;
  font-size: 0.88rem;
  color: #4a5468;
  text-decoration: none;
  padding: 8px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -1px;
  transition: all 0.2s ease;
}

.termspage-nav-link:hover {
  color: #ff6a00;
}

.termspage-nav-link.active {
  color: #ff6a00;
  border-left-color: #ff6a00;
  font-weight: 600;
}

/* Content blocks */
.termspage-content {
  max-width: 760px;
}

.termspage-block {
  padding: 28px 0;
  border-bottom: 1px solid #eef0f5;
  scroll-margin-top: 85px;
}

.termspage-block:first-child {
  padding-top: 0;
}

.termspage-block:last-child {
  border-bottom: none;
}

.termspage-block-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff6a00;
  background-color: #fff4ec;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.termspage-block-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.termspage-block-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #5a5a5a;
  margin-bottom: 12px;
}

.termspage-block-list {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #5a5a5a;
  padding-left: 20px;
}

.termspage-block-list li {
  margin-bottom: 6px;
}

/* Contact box */
.termspage-contact-box {
  background-color: #f7f9fc;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 8px;
  display: inline-block;
}

.termspage-contact-box div {
  font-size: 0.9rem;
  color: #4a5468;
}

.termspage-contact-box i {
  color: #ff6a00;
  margin-right: 10px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
  .termspage-banner-title {
    font-size: 1.9rem;
  }

  .termspage-content {
    max-width: 100%;
  }
}

/* ===== Sort dropdown ===== */
.sort-dropdown-btn {
  background: #ffffff;
  border: 1px solid #e6e7ee;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
}

.sort-dropdown-btn span {
  color: #ff6b1a;
}

.sort-dropdown .dropdown-menu {
  border-radius: 10px;
  border: 1px solid #edeef2;
  box-shadow: 0 8px 24px rgba(20, 20, 40, 0.08);
  padding: 6px;
  min-width: 200px;
}

.sort-option {
  font-size: 13px;
  color: #4a4a68;
  border-radius: 6px;
  padding: 8px 12px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}

.sort-option.active,
.sort-option:hover {
  background-color: #fff1e8;
  color: #ff6b1a;
}

/* ===== Mobile filter trigger ===== */
.filter-mobile-btn {
  background: #ffffff;
  border: 1px solid #e6e7ee;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
}

/* ===== Results count ===== */
.job-results-count {
  font-size: 13px;
  color: #6b6b80;
}

/* ===== Active filter chips ===== */
.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #fff1e8;
  color: #ff6b1a;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

.active-filter-chip button {
  background: none;
  border: none;
  color: #ff6b1a;
  font-size: 14px;
  line-height: 1;
  padding: 0;
}

.active-filter-clear-all {
  background: none;
  border: none;
  color: #6b6b80;
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
}

/* ===== Save job toggle state ===== */
.btn-save-job.is-saved {
  background-color: #fff1e8;
  border-color: #ff6b1a;
  color: #ff6b1a;
}

/* ===== Empty state ===== */
.job-search-empty {
  text-align: center;
  padding: 60px 20px;
  color: #6b6b80;
  font-size: 14px;
}

.job-search-empty i {
  font-size: 40px;
  color: #d6d8e2;
  margin-bottom: 12px;
  display: block;
}

.job-search-empty-clear {
  margin-top: 14px;
  background: none;
  border: 1px solid #ff6b1a;
  color: #ff6b1a;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
}

/* ===== Mobile offcanvas filter drawer ===== */
.filter-offcanvas {
  width: 340px;
}

.filter-card-mobile {
  border: none;
  padding: 0;
  margin-bottom: 0;
}

.btn-apply-filters-mobile {
  background-color: #ff6b1a;
  color: #ffffff;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 10px;
}

/* ===== Job card additions: location + description (from previous update) ===== */
.job-desc {
  color: #6b6b80;
  font-size: 13px;
  margin: 10px 0 0;
}

.job-meta i.bi-geo-alt {
  margin-right: 2px;
}

/* ===== Job card additions: location + description ===== */

.job-desc {
  color: #6b6b80;
  font-size: 13px;
  margin: 10px 0 0;
}

/* job-meta already exists in your base stylesheet — the added
   location item reuses that class, so no extra rule is needed
   unless you want the geo icon spaced differently: */
.job-meta i.bi-geo-alt {
  margin-right: 2px;
}

/* ===== Filters card ===== */

.filter-card {
  background: #ffffff;
  border: 1px solid #edeef2;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}

.filter-card-head {
  margin-bottom: 8px;
}

.filter-card-head h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.filter-clear-all {
  background: none;
  border: none;
  color: #ff6b1a;
  font-size: 13px;
  font-weight: 600;
  padding: 0;
}

.filter-clear {
  background: none;
  border: none;
  color: #ff6b1a;
  font-size: 12px;
  font-weight: 600;
  padding: 0;
}

.filter-section {
  border-top: 1px solid #edeef2;
  padding: 18px 0;
}

.filter-section-last {
  padding-bottom: 4px;
}

.filter-section-title {
  color: #1a1a2e;
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 12px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a4a68;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 4px;
}

.filter-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid #d6d8e2;
  border-radius: 4px;
  accent-color: #ff6b1a;
  color: #fff;
  cursor: pointer;
}

.filter-view-more {
  background: none;
  border: none;
  color: #6b6b80;
  font-size: 13px;
  padding: 0;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Dual-handle salary range slider */

.filter-range {
  position: relative;
  height: 20px;
  margin-top: 12px;
}

.filter-range-track {
  position: absolute;
  top: 8px;
  height: 4px;
  background: #ff6b1a;
  border-radius: 2px;

  z-index: 1;
}

.filter-range::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 4px;
  background: #e6e7ee;
  border-radius: 2px;
}

.filter-range-input {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  margin: 0;
  background: transparent;
  -webkit-appearance: none;
  pointer-events: none;
  z-index: 2;
}

.filter-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ff6b1a;
  cursor: pointer;
  margin-top: -6px;
}

.filter-range-input::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ff6b1a;
  cursor: pointer;
}

.filter-range-input::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

.filter-range-labels {
  color: #6b6b80;
  font-size: 12px;
  margin-top: 6px;
}

/* ===========================================================
   LOKYA — Employer "My Jobs" page
   Palette (used as direct hex values throughout, no custom props):
   Page bg        #F5F6FA
   Card surface   #FFFFFF
   Border         #E4E7EC
   Text primary   #16213E
   Text secondary #667085
   Text muted     #98A2B3
   Brand          #23366F  (hover #1A2856)
   Status/Active  bg #ECFDF3  text #067647  dot #17B26A
   Status/Inactive bg #F2F4F7 text #475467  dot #98A2B3
   Status/Review  bg #EFF8FF  text #175CD3  dot #2E90FA
   Status/Rejected bg #FEF3F2 text #B42318  dot #F04438
   Status/Hidden  bg #F9F5FF  text #6941C6  dot #9B8AFB
   Hot leads      bg #FFF6ED  text #B54708  dot #F79009
   =========================================================== */

.ej-shell {
  font-family: "Inter", sans-serif;
  color: #16213e;
  padding: 24px 0 60px;
  margin-top: 85px;
}

.ej-shell h2,
.ej-shell h3,
.ej-shell h4 {
  font-family: "Manrope", sans-serif;
  color: #16213e;
  margin: 0;
}

/* ===== Toolbar / plan strip ===== */
.ej-toolbar {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.ej-toolbar__support,
.ej-toolbar__plan,
.ej-toolbar__upsell {
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  padding: 20px;
}

.ej-toolbar__support h4 {
  font-size: 15px;
  font-weight: 700;
}
.ej-toolbar__support p {
  margin: 6px 0 2px;
  font-size: 13px;
  color: #667085;
}
.ej-toolbar__support span {
  font-size: 12px;
  color: #98a2b3;
  display: block;
  margin-bottom: 14px;
}

.ej-toolbar__plan-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.ej-toolbar__plan-head h3 {
  font-size: 16px;
  font-weight: 700;
}
.ej-toolbar__plan-head small {
  color: #98a2b3;
  font-size: 12px;
}
.ej-toolbar__days-left {
  background: #ecfdf3;
  color: #067647;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.ej-toolbar__plan-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.ej-plan-metric {
  background: #f5f6fa;
  border-radius: 10px;
  padding: 10px 12px;
}
.ej-plan-metric span {
  display: block;
  font-size: 11px;
  color: #667085;
  margin-bottom: 4px;
}
.ej-plan-metric strong {
  font-size: 15px;
  font-weight: 700;
  color: #16213e;
}
.ej-plan-metric strong em {
  font-style: normal;
  font-size: 12px;
  color: #98a2b3;
  font-weight: 500;
}

.ej-toolbar__upsell h4 {
  font-size: 15px;
  font-weight: 700;
}
.ej-toolbar__upsell p {
  font-size: 13px;
  color: #667085;
  margin: 6px 0 16px;
}

/* ===== Buttons ===== */
.ej-btn {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  border-radius: 8px;
  padding: 9px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.ej-btn--primary {
  background: #23366f;
  color: #ffffff;
}
.ej-btn--primary:hover {
  background: #1a2856;
}
.ej-btn--ghost {
  background: #f5f6fa;
  color: #23366f;
}
.ej-btn--ghost:hover {
  background: #e4e7ec;
}
.ej-btn--outline {
  background: #ffffff;
  color: #23366f;
  border-color: #23366f;
}
.ej-btn--outline:hover {
  background: #f5f6fa;
}
.ej-btn--sm {
  padding: 7px 14px;
  font-size: 12px;
}

/* ===== Main area ===== */
.ej-main__header {
  margin-bottom: 18px;
}
.ej-main__header h2 {
  font-size: 21px;
  font-weight: 700;
}

/* ===== Tabs ===== */
.ej-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 16px;
}
.ej-tabs__btn {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #667085;
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.ej-tabs__btn:hover {
  background: #f5f6fa;
  color: #16213e;
}
.ej-tabs__btn.is-active {
  background: #23366f;
  color: #ffffff;
}
.ej-tabs__count {
  background: rgba(0, 0, 0, 0.06);
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 1px 7px;
}
.ej-tabs__btn.is-active .ej-tabs__count {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== Insight banner ===== */
.ej-insight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff6ed;
  color: #b54708;
  border: 1px solid #fedf89;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.ej-insight a {
  margin-left: auto;
  color: #b54708;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.ej-insight a:hover {
  text-decoration: underline;
}

/* ===== Job list & cards ===== */
.ej-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ej-card {
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  transition: opacity 0.15s ease;
}

.ej-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.ej-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.ej-status__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.ej-status--active {
  background: #ecfdf3;
  color: #067647;
}
.ej-status--active .ej-status__dot {
  background: #17b26a;
}
.ej-status--inactive {
  background: #f2f4f7;
  color: #475467;
}
.ej-status--inactive .ej-status__dot {
  background: #98a2b3;
}
.ej-status--review {
  background: #eff8ff;
  color: #175cd3;
}
.ej-status--review .ej-status__dot {
  background: #2e90fa;
}
.ej-status--rejected {
  background: #fef3f2;
  color: #b42318;
}
.ej-status--rejected .ej-status__dot {
  background: #f04438;
}
.ej-status--hidden {
  background: #f9f5ff;
  color: #6941c6;
}
.ej-status--hidden .ej-status__dot {
  background: #9b8afb;
}

.ej-card__edit {
  background: none;
  border: 1px solid #e4e7ec;
  color: #23366f;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}
.ej-card__edit:hover {
  background: #f5f6fa;
}

.ej-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ej-card__org {
  font-size: 13px;
  color: #667085;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.ej-card__sep {
  color: #d0d5dd;
}

.ej-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.ej-tag {
  background: #f5f6fa;
  color: #344054;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 8px;
}

.ej-card__stats {
  display: flex;
  border-top: 1px solid #e4e7ec;
  border-bottom: 1px solid #e4e7ec;
  margin-bottom: 14px;
}
.ej-stat {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  text-decoration: none;
  border-right: 1px solid #e4e7ec;
  color: #16213e;
}
.ej-stat:last-child {
  border-right: none;
}
.ej-stat strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
}
.ej-stat span {
  display: block;
  font-size: 11px;
  color: #98a2b3;
  margin-top: 2px;
}
.ej-stat--hot strong {
  color: #b54708;
}
.ej-stat__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f79009;
  box-shadow: 0 0 0 rgba(247, 144, 9, 0.5);
  animation: ej-pulse 1.8s infinite;
}
@keyframes ej-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 144, 9, 0.45);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(247, 144, 9, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(247, 144, 9, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ej-stat__pulse {
    animation: none;
  }
}

.ej-card__stats--pending {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px dashed #e4e7ec;
  background: #f5f6fa;
  color: #667085;
  font-size: 13px;
  padding: 12px 14px;
  border-radius: 10px;
}

.ej-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ej-card__posted {
  font-size: 12px;
  color: #98a2b3;
}

/* ===== Empty state ===== */
.ej-empty {
  text-align: center;
  padding: 48px 20px;
  color: #98a2b3;
  background: #ffffff;
  border: 1px dashed #e4e7ec;
  border-radius: 14px;
}
.ej-empty i {
  font-size: 26px;
  display: block;
  margin-bottom: 8px;
}
.ej-empty p {
  margin: 0;
  font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .ej-toolbar {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .ej-toolbar__plan-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .ej-card__stats {
    flex-wrap: wrap;
  }
  .ej-stat {
    flex: 1 1 50%;
    border-bottom: 1px solid #e4e7ec;
  }
}

/* ===========================================================
    LOKYA — Post a Job (WorkIndia-style field structure)
    Palette (direct hex, no custom properties):
    Page bg        #F5F6FA
    Card surface   #FFFFFF
    Border         #E4E7EC
    Text primary   #16213E
    Text secondary #667085
    Brand          #FD6F1C  (hover #E35A0A, tint #FFF1E7)
    =========================================================== */

.post-job-wrap {
  background: #f5f6fa;
  color: #16213e;
}

.post-help-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
}

.post-help-strip strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.post-help-strip span {
  color: #667085;
}

.post-help-strip a {
  color: #fd6f1c;
  font-weight: 600;
  text-decoration: none;
}

.post-job-card {
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 16px;
}

.post-section-title {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #16213e;
  margin: 0 0 16px;
}

.post-field {
  margin-bottom: 16px;
}

.post-field:last-child {
  margin-bottom: 0;
}

.post-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.post-field-grid--split {
  margin-bottom: 0;
}

.post-field-grid:last-child {
  margin-bottom: 0;
}

.post-field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #344054;
  margin-bottom: 6px;
}

.post-field-hint-inline {
  font-weight: 400;
  color: #98a2b3;
  font-size: 12px;
}

.post-required {
  color: #f04438;
}

.post-field-input,
.post-field-select,
.post-field-textarea {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #16213e;
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 10px 12px;
}

.post-field-input:focus,
.post-field-select:focus,
.post-field-textarea:focus {
  outline: none;
  border-color: #fd6f1c;
  box-shadow: 0 0 0 3px #fff1e7;
}

.post-field-input--sm {
  max-width: 160px;
}

.post-field-textarea {
  resize: vertical;
}

.post-field-hint {
  display: block;
  font-size: 11px;
  color: #98a2b3;
  margin-top: 6px;
}

.post-info-icon {
  color: #98a2b3;
  font-size: 12px;
  cursor: help;
}

/* ===== Toggle button groups ===== */
.post-toggle-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-toggle-btn {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #344054;
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 9px 16px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.post-toggle-btn:hover {
  border-color: #fd6f1c;
}

.post-toggle-btn.is-active {
  background: #fd6f1c;
  border-color: #fd6f1c;
  color: #ffffff;
}

/* ===== Experience notice banner ===== */
.post-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fd6f1c;
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.post-notice i {
  font-size: 14px;
}

/* ===== Locked select (Minimum Experience when "Any" is picked) ===== */
.post-select-wrap {
  position: relative;
}

.post-field-select:disabled {
  background: #f2f4f7;
  color: #98a2b3;
  cursor: not-allowed;
}

.post-field-select--locked {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 34px;
}

.post-select-lock-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #98a2b3;
  font-size: 14px;
  pointer-events: none;
}

/* ===== Sub panel (bordered inset block, e.g. salary range, age range) ===== */
.post-subpanel {
  position: relative;
  background: #f9fafb;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}

.post-subpanel:last-child {
  margin-bottom: 0;
}

.post-subpanel__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #98a2b3;
  cursor: pointer;
  font-size: 13px;
}

.post-subpanel__close:hover {
  color: #667085;
}

.post-range-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-range-row span {
  color: #98a2b3;
  font-size: 12px;
  font-weight: 600;
}

/* ===== Chips ===== */
.post-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.post-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #344054;
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 20px;
  padding: 7px 14px;
  cursor: pointer;
}

.post-chip i {
  font-size: 10px;
}

.post-chip.is-active {
  background: #fff1e7;
  border-color: #fd6f1c;
  color: #b54708;
}

.post-chip--pill.is-active {
  background: #fd6f1c;
  border-color: #fd6f1c;
  color: #ffffff;
}

/* ===== Collapsible sections ===== */
.post-collapsible__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #16213e;
  cursor: pointer;
  padding: 0 0 16px;
}

.post-collapsible__caret {
  transition: transform 0.15s ease;
  color: #667085;
}

.post-collapsible.is-collapsed .post-collapsible__caret {
  transform: rotate(180deg);
}

.post-collapsible.is-collapsed .post-collapsible__body {
  display: none;
}

/* ===== Phone prefix ===== */
.post-input-prefix-wrap {
  display: flex;
  align-items: stretch;
}

.post-input-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: #f5f6fa;
  border: 1px solid #d0d5dd;
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 13px;
  color: #667085;
  font-weight: 600;
}

.post-input-prefix-wrap .post-field-input {
  border-radius: 0 8px 8px 0;
}

/* ===== Submit ===== */
.post-submit-row {
  margin: 8px 0 16px;
}

.post-submit-btn {
  background: #fd6f1c;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  cursor: pointer;
}

.post-submit-btn:hover {
  background: #e35a0a;
}

.post-help-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff1e7;
  border: 1px solid #fed7aa;
  color: #b54708;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
}

.profile-flow-page .profile-form-panel {
  display: flex;
  flex-direction: column;

  overflow: hidden;
  padding: 28px 28px 12px;
}

.post-scroll-area {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
}

.profile-flow-page .form-panel-header {
  margin-bottom: 18px;
}

.profile-flow-page .form-panel-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #16213e;
}

.post-job-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.post-step-panel {
  display: none;
  min-height: 0;
  overflow: visible;
  padding-right: 0;
}

.post-step-panel.active {
  display: block;
}

.post-step-progress {
  margin-bottom: 18px;
}

.post-step-progress__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #667085;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.post-step-progress__label strong {
  color: #fd6f1c;
}

.post-step-progress__track {
  height: 8px;
  background: #eef1f4;
  border-radius: 999px;
  overflow: hidden;
}

.post-step-progress__fill {
  display: block;
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, #fd6f1c, #ff8e3c);
  border-radius: inherit;
  transition: width 0.25s ease;
}

/* ===== Step tabs (mirrors the Create Profile page) ===== */
.step-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  border-bottom: 1px solid #edf0f5;
}

.step-tab {
  border: none;
  background: transparent;
  padding: 10px 4px;
  margin-right: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #98a2b3;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease;
}

.step-tab.is-active {
  color: #fd6f1c;
  border-bottom-color: #fd6f1c;
}

.step-tab.is-complete {
  color: #16213e;
}

.post-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e4e7ec;
  background: #ffffff;
  position: relative;
  bottom: auto;
  z-index: 1;
  flex-shrink: 0;
}

.post-form-actions .post-submit-btn {
  min-width: 140px;
}

.post-form-actions .post-submit-btn--ghost {
  background: #fff;
  color: #14213d;
  border: 1px solid #d0d5dd;
}

.post-form-actions .post-submit-btn--ghost:hover {
  background: #f5f6fa;
}

.post-step-panel .post-job-card:first-child {
  margin-top: 0;
}

/* ===== Sidebar: Performance Insights Hub ===== */
.post-insights-card {
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
}

.post-insights-kicker {
  font-size: 12px;
  color: #98a2b3;
  margin: 0;
}

.post-insights-card h4 {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fd6f1c;
  margin: 2px 0 16px;
}

.post-insights-block {
  margin-bottom: 16px;
}

.post-insights-block:last-child {
  margin-bottom: 0;
}

.post-insights-label {
  font-size: 12px;
  font-weight: 600;
  color: #344054;
  margin: 0 0 10px;
}

.post-reach-meter {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9fafb;
  border-radius: 10px;
  padding: 12px;
}

.post-reach-meter__gauge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: conic-gradient(#fd6f1c 0deg, #e4e7ec 0deg 360deg);
  position: relative;
}

.post-reach-meter__gauge::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: #ffffff;
  border-radius: 50%;
}

.post-reach-meter span {
  font-size: 12px;
  color: #98a2b3;
}

.post-insights-stat {
  background: #f9fafb;
  border-radius: 8px;
  padding: 10px;
}

.post-insights-stat span {
  display: block;
  font-size: 11px;
  color: #98a2b3;
  margin-bottom: 4px;
}

.post-insights-stat strong {
  font-size: 14px;
  color: #16213e;
}

/* ===== Custom multiselect dropdown (mirrors the Create Profile page,
               used here for Skills) ===== */
.multiselect-dropdown {
  position: relative;
}

.multiselect-toggle {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #16213e;
  font-size: 13px;
  cursor: pointer;
  text-align: left;
}

.multiselect-toggle:focus,
.multiselect-dropdown.is-open .multiselect-toggle {
  outline: none;
  border-color: #fd6f1c;
  box-shadow: 0 0 0 3px #fff1e7;
}

.multiselect-selected {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.multiselect-placeholder {
  color: #667085;
}

.multiselect-toggle .chevron {
  flex-shrink: 0;
  transition: transform 0.15s ease;
  color: #667085;
}

.multiselect-dropdown.is-open .chevron {
  transform: rotate(180deg);
}

.multiselect-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  padding: 8px;
}

.multiselect-panel[hidden] {
  display: none;
}

.multiselect-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 8px;
  border-radius: 8px;
  font-size: 13px;
  color: #344054;
  cursor: pointer;
}

.multiselect-option:hover {
  background: #f9fafb;
}

.multiselect-option input {
  width: 16px;
  height: 16px;
  accent-color: #fd6f1c;
}

.multiselect-option input:disabled + span {
  color: #98a2b3;
}

.multiselect-add-row {
  display: flex;
  gap: 8px;
  position: sticky;
  top: -8px;
  margin: -8px -8px 10px;
  padding: 8px 8px 10px;
  background: #fff;
  border-bottom: 1px solid #edf0f5;
  z-index: 1;
}

.multiselect-add-row input {
  flex: 1;
  min-height: 40px;
}

.multiselect-add-row button {
  padding: 8px 14px;
  font-size: 13px;
  white-space: nowrap;
}

.selected-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff1e7;
  border: 1px solid #ffd9bd;
  border-radius: 999px;
  padding: 4px 8px 4px 12px;
  font-size: 12px;
  color: #b54708;
}

.selected-tag button {
  border: none;
  background: transparent;
  color: #b54708;
  padding: 0;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 767px) {
  .post-field-grid,
  .post-field-grid--split {
    grid-template-columns: 1fr;
  }
}













        /* ===== Page background ===== */
        .profile-flow-page {
            background: #f4f6fb;
            color: #16213e;
        }

        .profile-wrapper {
            padding: 30px 0;
        }

        .profile-card {
            background: #fff;
            border: 1px solid #e4e7ec;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
            overflow: hidden;
            min-height: 680px;
        }

        /* =====================================================
           LEFT SIDEBAR - title, description, progress, step list
           ===================================================== */
        .profile-sidebar {
            background: linear-gradient(180deg, #14213d 0%, #1d2a4d 100%);
            color: #fff;
            padding: 26px 26px 18px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .sidebar-title {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
        }

        .sidebar-desc {
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .post-step-progress {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            padding: 12px 14px;
        }

        .post-step-progress__label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.72);
        }

        .post-step-progress__track {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 999px;
            overflow: hidden;
        }

        .post-step-progress__fill {
            display: block;
            width: 33.33%;
            /* 1 of 3 steps by default */
            height: 100%;
            background: linear-gradient(90deg, #fd8f4c 0%, #fd6f1c 100%);
            border-radius: inherit;
            transition: width 0.2s ease;
        }

        .sidebar-photo {
            margin-top: auto;
            display: flex;
            justify-content: center;
            padding-top: 20px;
        }

        .sidebar-photo img {
            max-width: 220px;
            width: 100%;
            opacity: 0.95;
        }

        /* =====================================================
           RIGHT PANEL - the actual step forms
           ===================================================== */
        .profile-form-panel {
            padding: 24px 30px 20px;
            background: #fff;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .form-panel-header {
            border-bottom: 1px solid #edf0f5;
            padding-bottom: 14px;
            margin-bottom: 18px;
        }

        .form-panel-header h2 {
            margin: 0;
            font-size: 28px;
            font-weight: 800;
            color: #16213e;
        }

        /* Tabs sit right under the header, above the active panel */
        .step-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 18px;
            border-bottom: 1px solid #edf0f5;
        }

        .step-tab {
            border: none;
            background: transparent;
            padding: 10px 4px;
            margin-right: 18px;
            font-size: 14px;
            font-weight: 700;
            color: #98a2b3;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: 0.2s ease;
        }

        .step-tab.is-active {
            color: #fd6f1c;
            border-bottom-color: #fd6f1c;
        }

        .step-tab.is-complete {
            color: #16213e;
        }

        .post-scroll-area {
            flex: none;
            overflow-y: auto;
            padding-right: 6px;
        }

        .post-scroll-area::-webkit-scrollbar {
            width: 8px;
        }

        .post-scroll-area::-webkit-scrollbar-thumb {
            background: #dfe5ef;
            border-radius: 10px;
        }

        .post-step-panel {
            display: none;
        }

        .post-step-panel.active {
            display: block;
        }

        .post-job-card {
            background: #fff;
            border: 1px solid #e9edf4;
            border-radius: 16px;
            padding: 18px;
        }

        .post-section-title {
            font-size: 15px;
            font-weight: 800;
            color: #16213e;
            margin: 0 0 18px;
        }

        /* ===== Field basics ===== */
        .post-field {
            margin-bottom: 18px;
        }

        .post-field:last-child {
            margin-bottom: 0;
        }

        .post-field-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-label-custom {
            display: block;
            margin-bottom: 8px;
            font-size: 13px;
            font-weight: 700;
            color: #344054;
        }

        .required {
            color: #d92d20;
        }

        .form-control-custom {
            width: 100%;
            min-height: 46px;
            padding: 10px 12px;
            border-radius: 10px;
            border: 1px solid #d0d5dd;
            background: #fff;
            color: #16213e;
            font-size: 14px;
        }

        .form-control-custom:focus {
            outline: none;
            border-color: #fd6f1c;
            box-shadow: 0 0 0 3px rgba(253, 111, 28, 0.12);
        }

        textarea.form-control-custom {
            min-height: 90px;
            resize: vertical;
        }

        .field-note {
            display: block;
            margin-top: 6px;
            color: #667085;
            font-size: 12px;
        }

        /* ===== Fresher / Experienced pill toggle ===== */
        .choice-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .choice-pill {
            position: relative;
            display: inline-block;
        }

        .choice-pill input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .choice-pill span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 130px;
            border: 1px solid #d0d5dd;
            border-radius: 999px;
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 600;
            color: #344054;
            background: #fff;
            cursor: pointer;
            transition: 0.2s ease;
        }

        .choice-pill input:checked+span {
            background: #fff4ec;
            border-color: #fd6f1c;
            color: #fd6f1c;
        }

        /* Gender uses the same pill look, smaller min-width */
        .gender-pill {
            position: relative;
            display: inline-block;
        }

        .gender-pill input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .gender-pill label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 96px;
            padding: 10px 16px;
            border: 1px solid #d0d5dd;
            border-radius: 999px;
            background: #fff;
            font-size: 13px;
            font-weight: 600;
            color: #344054;
            cursor: pointer;
            transition: 0.2s ease;
        }

        .gender-pill input:checked+label {
            background: #fff4ec;
            border-color: #fd6f1c;
            color: #fd6f1c;
        }

        /* ===== Conditional section wrapper (Fresher fields / Experienced fields) ===== */
        .conditional-section {
            background: #f9fafb;
            border: 1px solid #e4e7ec;
            border-radius: 14px;
            padding: 16px;
            margin-top: 18px;
        }

        .conditional-section[hidden] {
            display: none !important;
        }

        .conditional-section-title {
            font-size: 14px;
            font-weight: 800;
            color: #16213e;
            margin: 0 0 16px;
        }

        /* ===== Custom multiselect dropdown (Industry Type / Languages) ===== */
        .multiselect-dropdown {
            position: relative;
        }

        .multiselect-toggle {
            width: 100%;
            min-height: 46px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 10px;
            border: 1px solid #d0d5dd;
            background: #fff;
            color: #16213e;
            font-size: 14px;
            cursor: pointer;
            text-align: left;
        }

        .multiselect-toggle:focus,
        .multiselect-dropdown.is-open .multiselect-toggle {
            outline: none;
            border-color: #fd6f1c;
            box-shadow: 0 0 0 3px rgba(253, 111, 28, 0.12);
        }

        /* Holds either the placeholder text or the selected chips,
           right inside the field so selections are visible without
           opening the dropdown. */
        .multiselect-selected {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
            min-width: 0;
        }

        .multiselect-placeholder {
            color: #667085;
        }

        .multiselect-toggle .chevron {
            flex-shrink: 0;
            transition: transform 0.15s ease;
            color: #667085;
        }

        .multiselect-dropdown.is-open .chevron {
            transform: rotate(180deg);
        }

        .multiselect-panel {
            position: absolute;
            z-index: 20;
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            max-height: 200px;
            overflow-y: auto;
            background: #fff;
            border: 1px solid #d0d5dd;
            border-radius: 10px;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
            padding: 8px;
        }

        .multiselect-panel[hidden] {
            display: none;
        }

        .multiselect-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 8px;
            border-radius: 8px;
            font-size: 14px;
            color: #344054;
            cursor: pointer;
        }

        .multiselect-option:hover {
            background: #f9fafb;
        }

        .multiselect-option input {
            width: 16px;
            height: 16px;
            accent-color: #fd6f1c;
        }

        .multiselect-option input:disabled+span {
            color: #98a2b3;
        }

        /* ===== Multiselect panel: optional "add custom option" row,
           pinned to the top of the dropdown like a standard combobox
           search/entry bar - options list scrolls underneath it ===== */
        .multiselect-add-row {
            display: flex;
            gap: 8px;
            position: sticky;
            top: -8px;
            margin: -8px -8px 10px;
            padding: 8px 8px 10px;
            background: #fff;
            border-bottom: 1px solid #edf0f5;
            z-index: 1;
        }

        .multiselect-add-row input {
            flex: 1;
            min-height: 40px;
        }

        .multiselect-add-row button {
            padding: 8px 14px;
            font-size: 13px;
            white-space: nowrap;
        }

        /* ===== Selected chips, rendered directly inside the toggle
           field so the user can see (and remove) picks without
           opening the dropdown ===== */
        .selected-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fff4ec;
            border: 1px solid #ffd9bd;
            border-radius: 999px;
            padding: 4px 8px 4px 12px;
            font-size: 12px;
            color: #a8460c;
        }

        .selected-tag button {
            border: none;
            background: transparent;
            color: #a8460c;
            padding: 0;
            font-size: 15px;
            line-height: 1;
            cursor: pointer;
        }

        /* ===== File upload field (Resume) ===== */
        .file-upload-field {
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px dashed #d0d5dd;
            border-radius: 10px;
            padding: 12px;
            background: #fff;
        }

        .file-upload-field input[type="file"] {
            flex: 1;
            font-size: 13px;
            color: #344054;
        }

        /* ===== Footer nav buttons (Previous / Next / Submit) ===== */
        .post-form-actions {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            border-top: 1px solid #edf0f5;
            margin-top: 18px;
            padding-top: 18px;
        }

        .post-submit-btn {
            border: none;
            border-radius: 10px;
            padding: 12px 22px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            background: linear-gradient(135deg, #fd8f4c 0%, #fd6f1c 100%);
            color: #fff;
            transition: transform 0.15s ease;
        }

        .post-submit-btn:hover {
            transform: translateY(-1px);
        }

        .post-submit-btn--ghost {
            background: #fff;
            color: #16213e;
            border: 1px solid #d0d5dd;
        }

        @media (max-width: 991.98px) {
            .profile-card {
                min-height: auto;
            }

            .profile-sidebar {
                padding-bottom: 12px;
            }

            .profile-form-panel {
                padding: 18px 18px 12px;
            }
        }

        @media (max-width: 575.98px) {
            .post-field-grid {
                grid-template-columns: 1fr;
            }

            .step-tab {
                margin-right: 12px;
                font-size: 13px;
            }
        }












  /* ============================================================
   SHARED BRAND UTILITIES
   Orange #fd6f1c | Orange deep #d35400 | Orange tint #fff4e9
   Navy #142e50 | Green #1d8f5f | Amber #d9821b | Red #d33f3f
   Slate #7c8ca5 | Paper #f5f6fb
   ============================================================ */

.text-brand-orange { color: #fd6f1c !important; }
.text-brand-navy   { color: #142e50 !important; }
.bg-brand-navy     { background: #142e50 !important; }

.btn-brand-navy {
  background: #142e50;
  border-color: #142e50;
  color: #fff;
}
.btn-brand-navy:hover {
  background: #071a33;
  border-color: #071a33;
  color: #fff;
}

.btn-brand-orange {
  background: #fd6f1c;
  border-color: #fd6f1c;
  color: #fff;
}
.btn-brand-orange:hover {
  background: #d35400;
  border-color: #d35400;
  color: #fff;
}


/* ============================================================
   PAGE-SPECIFIC: postajob.php / employer support flow
   ============================================================ */

body.profile-flow-page {
  background: #f5f6fb;
}

.post-job-shell {
  background: transparent;
  margin: 100px auto 0;
  padding: 0 18px 24px;
}

.post-job-card-row {
  background: #ffffff;
  border: 1px solid #edf1f7;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(17, 31, 54, 0.08);
}

.post-job-visual {
  position: relative;
  height: 100%;
  min-height: 660px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2243 0%, #113d73 48%, #0b1734 100%);
  border-radius: 0;
}

.post-job-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12), transparent 30%),
              radial-gradient(circle at 80% 20%, rgba(253,111,28,0.15), transparent 25%);
}

.post-job-visual img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.96;
  filter: saturate(1.1) contrast(1.02);
}

.post-job-visual-overlay {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  background: rgba(8, 22, 38, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 24px 22px 18px;
  color: #fff;
  max-width: 440px;
  box-shadow: 0 22px 42px rgba(6, 18, 30, 0.28);
}

.post-job-visual-badge {
  display: inline-block;
  background: rgba(253, 111, 28, 0.14);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.post-job-visual-overlay h3 {
  margin: 16px 0 8px;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.post-job-visual-overlay p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  font-size: 0.96rem;
}

.post-job-panel {
  max-width: 560px;
  width: 100%;
  padding: 2.2rem 1.2rem 1.2rem;
  background: #ffffff;
  border-radius: 0;
}

.post-job-mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.post-job-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(253, 111, 28, 0.08);
  border: 1px solid rgba(253, 111, 28, 0.2);
  color: #d35400;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.post-job-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.72rem;
  background: #fff;
  border: 1px solid #edf2f8;
  color: #1d2e48;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(20,46,80,0.04);
}

.post-job-trust-pill i {
  color: #1d8f5f;
  font-size: 0.8rem;
}

.post-job-title {
  margin: 0 0 0.7rem;
  color: #142e50;
  font-size: clamp(2rem, 2.1vw, 2.6rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.post-job-copy {
  margin: 0 0 1.3rem;
  color: #58657c;
  font-size: 0.96rem;
  line-height: 1.65;
  font-weight: 500;
}

.post-job-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.post-job-metric {
  background: #ffffff;
  border: 1px solid #e7edf7;
  border-radius: 14px;
  padding: 0.9rem 0.7rem 0.75rem;
  box-shadow: 0 8px 16px rgba(20,46,80,0.03);
  text-align: center;
}

.post-job-metric strong {
  display: block;
  color: #142e50;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.post-job-metric span {
  color: #697a92;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-job-steps {
  margin-bottom: 1.4rem;
  background: #f9fbfe;
  border: 1px solid #edf2f8;
  border-radius: 16px;
  padding: 0.7rem 0.8rem 0.4rem;
  box-shadow: 0 8px 18px rgba(20,46,80,0.02);
}

.post-job-step {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.7rem 0.25rem;
}

.post-job-step + .post-job-step {
  border-top: 1px solid #edf2f8;
  margin-top: 0.2rem;
  padding-top: 1rem;
}

.post-job-step-no {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fd6f1c 0%, #ff8a3d 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 12px 18px rgba(253, 111, 28, 0.22);
  flex-shrink: 0;
}

.post-job-step-copy h6 {
  margin: 0 0 0.25rem;
  color: #142e50;
  font-weight: 600;
  font-size: 1rem;
}

.post-job-step-copy p {
  margin: 0;
  color: #6c7a8f;
  font-size: 0.84rem;
  line-height: 1.5;
}

.post-job-cta {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: 16px;
  border: none;
  box-shadow: 0 18px 28px rgba(253,111,28,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-job-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 30px rgba(253,111,28,0.25);
}

.contact-team-form .form-label {
  color: #142e50;
  margin-bottom: 0.5rem;
}

.contact-team-form .form-check-label {
  color: #33415c;
  font-size: 0.95rem;
}

.contact-team-form .form-check-input:checked {
  background-color: #fd6f1c;
  border-color: #fd6f1c;
}

.contact-team-form .form-control-custom {
  border: 1px solid #dfe6f0;
  background: #fff;
  border-radius: 12px;
  min-height: 46px;
  color: #142e50;
  box-shadow: none;
}

.contact-team-form .form-control-custom:focus {
  border-color: #142e50;
  box-shadow: 0 0 0 0.15rem rgba(20,46,80,0.08);
}

.contact-team-form textarea.form-control-custom {
  min-height: 110px;
}

@media (max-width: 991.98px) {
  .post-job-shell {
    margin-top: 18px;
    padding-bottom: 18px;
  }

  .post-job-visual {
    min-height: 500px;
  }

  .post-job-panel {
    padding: 2.2rem 1.25rem 2rem;
    background: #fff;
  }

  .post-job-title {
    font-size: 2.2rem;
  }

  .post-job-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body.jobs-page { margin-top: 85px; }

/* Sidebar filter list — built on nav-pills */
#jbTabs .nav-link {
  color: #5a6a7a;
  font-weight: 600;
  font-size: .875rem;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  text-align: left;
}
#jbTabs .nav-link:hover { background: #fff4e9; color: #d35400; }
#jbTabs .nav-link.active { background: #142e50; color: #fff; }
#jbTabs .nav-link.active .badge { background: #fd6f1c !important; }

/* Status filter notice banner */
#jbStatusNotice {
  display: none;
  align-items: center;
  gap: 10px;
  border-radius: .75rem;
  padding: .75rem 1rem;
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#jbStatusNotice.is-visible { display: flex; }
#jbStatusNotice i { font-size: 1rem; }
#jbStatusNotice.tone-active { background: #e8f8ed; color: #1d8f5f; }
#jbStatusNotice.tone-inactive { background: #edf1f7; color: #5a6a7a; }
#jbStatusNotice.tone-review { background: #fff0dd; color: #a5620d; }
#jbStatusNotice.tone-rejected { background: #fdeeee; color: #a53030; }
#jbStatusNotice.tone-hidden { background: #edf1f7; color: #5a6a7a; }

/* Plan progress ring */
.plan-ring {
  --pct: 67%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: conic-gradient(#fd6f1c var(--pct), #edf1f7 0);
}
.plan-ring__inner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: .68rem;
  font-weight: 700;
  color: #142e50;
}

.card-plan {
  background: linear-gradient(135deg, #fffaf3 0%, #ffffff 45%, #f4f7ff 100%);
}

/* Status pill dot */
.status-dot::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  margin-right: .35rem;
}
.status-active { background: #e8f8ed; color: #1d8f5f; }
.status-inactive { background: #edf1f7; color: #7c8ca5; }
.status-review { background: #fff0dd; color: #d9821b; }
.status-rejected { background: #fdeeee; color: #d33f3f; }
.status-hidden { background: #edf1f7; color: #5a6a7a; }

.job-status-badge {
  border-radius: 5px !important;
  padding: .5rem .8rem !important;
  font-size: .68rem;
  letter-spacing: .06em;
}

.btn-card-action {
  border-radius: 5px;
  font-weight: 600;
  font-size: .75rem;
  line-height: 1.2;
  padding: .5rem .8rem;
  transition: all .2s ease;
  border: 1px solid transparent;
  box-shadow: none;
}
.btn-card-action:hover,
.btn-card-action:focus {
  transform: translateY(-1px);
}

.btn-card-secondary {
  background: #fff;
  border-color: #efdac7;
  color: #142e50;
}
.btn-card-secondary:hover,
.btn-card-secondary:focus {
  background: #fff4e9;
  border-color: #fd6f1c;
  color: #d35400;
}

.btn-card-primary {
  background: #142e50;
  border-color: #142e50;
  color: #fff;
}
.btn-card-primary:hover,
.btn-card-primary:focus {
  background: #0f213e;
  border-color: #0f213e;
  color: #fff;
}

.btn-card-danger {
  background: #fff5f5;
  border-color: #f3caca;
  color: #b82929;
}
.btn-card-danger:hover,
.btn-card-danger:focus {
  background: #fdecec;
  border-color: #d85a5a;
  color: #8d1d1d;
}

/* Keep the sidebar controls visible while the postings scroll */
.job-sidebar-sticky {
  position: sticky;
  top: 110px;
  z-index: 5;
}
.job-sidebar-search,
.job-sidebar-filters {
  position: sticky;
  top: 110px;
  z-index: 4;
}
.job-sidebar-filters {
  top: 182px;
}

/* Job card hover lift */
.job-card {
  transition: box-shadow .2s ease, transform .2s ease;
  box-shadow: 0 4px 14px rgba(20,46,80,.06);
}
.job-card:hover {
  box-shadow: 0 8px 20px rgba(20,46,80,.1);
  transform: translateY(-1px);
}

/* De-pill the status + requirement badges */
.job-card .badge.rounded-pill { border-radius: 4px !important; }
.job-card h3 { font-size: 1.05rem; }

/* Compact the list spacing and polish the action buttons */
#jbList {
  gap: .7rem !important;
}
#jbList .job-card {
  margin: 0;
}
#jbList .card-body {
  padding: 1rem 1rem .9rem !important;
}
#jbList .d-flex.align-items-center.justify-content-between.mb-3 {
  margin-bottom: .7rem !important;
}
#jbList .d-flex.flex-wrap.align-items-center.justify-content-between.gap-2.pt-3.border-top {
  padding-top: .8rem !important;
  gap: .5rem !important;
}
#jbList .d-flex.gap-2 {
  gap: .5rem !important;
}
#jbList .btn {
  border-radius: 5px;
  font-weight: 600;
  font-size: .76rem;
  line-height: 1.2;
  padding: .45rem .8rem;
  transition: all .2s ease;
  box-shadow: none;
}
#jbList .btn i {
  font-size: .82rem;
  vertical-align: middle;
}
#jbList .btn-outline-secondary.btn-sm {
  background: #fff;
  border-color: #e5d7c9;
  color: #142e50;
  box-shadow: none;
}
#jbList .btn-outline-secondary.btn-sm:hover,
#jbList .btn-outline-secondary.btn-sm:focus {
  background: #fff4e9;
  border-color: #fd6f1c;
  color: #d35400;
}
#jbList .btn-brand-navy.btn-sm {
  background: #142e50;
  border-color: #142e50;
  color: #fff;
  box-shadow: 0 4px 10px rgba(20,46,80,.12);
}
#jbList .btn-brand-navy.btn-sm:hover,
#jbList .btn-brand-navy.btn-sm:focus {
  background: #0f213e;
  border-color: #0f213e;
  color: #fff;
}
#jbList .status-active,
#jbList .status-inactive,
#jbList .status-review,
#jbList .status-rejected,
#jbList .status-hidden {
  border-radius: 6px !important;
  letter-spacing: .04em;
  padding-top: .5rem !important;
  padding-bottom: .5rem !important;
}

/* Pulse bar — Responses / In talent pool */
.pulse-bar {
  background: #fafbfd;
  border: 1px solid #e8edf5;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
}
.pulse-stat-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: inherit;
  padding: .75rem 1rem;
  transition: background .15s ease;
  flex: 1 1 0;
}
.pulse-stat-link + .pulse-stat-link { border-left: 1px solid #e8edf5; }
.pulse-stat-link:hover { background: #fff4e9; }
.pulse-stat-link:hover .pulse-stat-value,
.pulse-stat-link:hover .pulse-stat-label { color: #d35400; }
.pulse-stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #edf1f7;
  color: #142e50;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 1rem;
}
.pulse-stat-link:hover .pulse-stat-icon {
  background: #fd6f1c;
  color: #fff;
}
.pulse-stat-value {
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  color: #142e50;
  line-height: 1.2;
}
.pulse-stat-label {
  text-transform: uppercase;
  color: #93a0b3;
  font-size: .66rem;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.pulse-stat-arrow {
  margin-left: auto;
  color: #c7d0dc;
  font-size: .85rem;
}
.pulse-stat-link:hover .pulse-stat-arrow { color: #d35400; }

/* Small info trigger next to Responses / In talent pool labels */
.info-tip {
  background: transparent;
  border: none;
  padding: 0;
  margin-left: .3rem;
  color: #b7c0cd;
  font-size: .85rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.info-tip:hover,
.info-tip:focus {
  color: #fd6f1c;
  outline: none;
}

/* Inline "Change Status" dropdown */
.status-select {
  border-radius: 5px;
  font-weight: 600;
  font-size: .75rem;
  line-height: 1.2;
  padding: .5rem 1.7rem .5rem .7rem;
  border: 1px solid #dfe6ee;
  background-color: #fff;
  color: #142e50;
  cursor: pointer;
}
.status-select:hover { border-color: #fd6f1c; }
.status-select:focus {
  border-color: #fd6f1c;
  box-shadow: 0 0 0 .15rem rgba(253,111,28,.15);
  outline: none;
}

/* Status-change confirmation toast */
#statusToast {
  border-radius: 6px;
  min-width: 260px;
}
#statusToast .toast-body {
  font-size: .82rem;
}

/* Job Details modal */
#jobViewModal .modal-content {
  border: none;
  border-radius: 6px;
}
#jobViewModal .modal-header {
  border-bottom: 1px solid #eef1f7;
  align-items: flex-start;
}
#jobViewModal .btn-close {
  margin-top: .2rem;
}

.jv-summary {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .9rem 1.5rem;
  background: #fafbfd;
  border-bottom: 1px solid #eef1f7;
}
.jv-summary-chip {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 6px;
  padding: .35rem .7rem;
  font-size: .78rem;
  font-weight: 600;
  color: #263548;
}
.jv-summary-chip i { color: #fd6f1c; }

.jv-section {
  padding: 1rem 1.5rem;
}
.jv-section + .jv-section {
  border-top: 1px solid #eef1f7;
}
.jv-section-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: #142e50;
  margin-bottom: .85rem;
}
.jv-section-title i {
  color: #fd6f1c;
  font-size: .95rem;
}

.jv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.5rem;
}
.jv-field { min-width: 0; }
.jv-field.jv-span-2 { grid-column: 1 / -1; }
.jv-field-label {
  display: block;
  color: #93a0b3;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 700;
  margin-bottom: .2rem;
}
.jv-field-value {
  font-size: .875rem;
  color: #263548;
}
.jv-chip {
  background: #edf1f7;
  color: #445064;
  font-size: .74rem;
  border-radius: 4px;
  padding: .22rem .55rem;
  display: inline-block;
}
.jv-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

@media (max-width: 575.98px) {
  .jv-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .job-card { transition: none; }
}


/* ============================================================
   PAGE-SPECIFIC: responses-page
   ============================================================ */

.responses-page {
  background: #f5f6fb;
  margin-top: 85px;
}

/* ---------- Job header ---------- */
.back-link {
  color: #5a6a7a;
  font-size: 1.1rem;
  text-decoration: none;
}
.back-link:hover { color: #142e50; }

.job-meta-line {
  color: #7c8ca5;
  font-size: .8125rem;
}
.job-meta-line span:not(:last-child)::after {
  content: "•";
  margin: 0 .5rem;
  color: #c7d0dc;
}

/* ---------- Ad banner ---------- */
.ad-banner {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  border: 1px solid #e6e9f2;
  background: #fff;
}
.ad-banner-link { display: block; }
.ad-banner-img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
  display: block;
}
.ad-banner-tag {
  position: absolute;
  top: .6rem;
  left: .6rem;
  background: rgba(20,46,80,.75);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .15rem .5rem;
  border-radius: 999px;
}
.ad-banner-close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(20,46,80,.75);
  color: #fff;
  border: none;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-banner-close:hover { background: #142e50; }
.ad-banner.is-hidden { display: none; }

/* ---------- Ad slider ---------- */
.ad-slider-card {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  border: 1px solid #e6e9f2;
  background: #fff;
}
.ad-slider-card .carousel-inner {
  border-radius: .75rem;
  overflow: hidden;
}
.ad-slide {
  background: #f5f6fb;
}
.ad-slide img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.ad-slider-card .carousel-indicators {
  bottom: .65rem;
  margin-bottom: 0;
}
.ad-slider-card .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,.8);
  border: 0;
  margin: 0 4px;
}
.ad-slider-card .carousel-indicators .active {
  background-color: #ffffff;
}

/* ---------- Sub tabs (sticky below the fixed header) ---------- */
.sub-tab-row {
  gap: 1.75rem;
  position: sticky;
  top: 100px;
  background: #f5f6fb;
  z-index: 20;
  padding-top: .75rem;
}
.sub-tab {
  background: none;
  border: none;
  padding: 0 0 .6rem;
  font-weight: 600;
  font-size: .875rem;
  color: #5a6a7a;
  text-align: left;
}
.sub-tab .count {
  color: #7c8ca5;
  font-weight: 500;
}
.sub-tab.is-active {
  color: #142e50;
  border-bottom: 2px solid #142e50;
}
.sub-tab.is-active .count { color: #142e50; }

.notice-banner {
  background: #fff4e9;
  border: 1px solid #fbdcb8;
  color: #8a4a12;
  border-radius: .5rem;
  padding: .6rem .9rem;
  font-size: .8125rem;
  font-weight: 600;
}

/* ---------- Filters sidebar ---------- */
.filter-sidebar {
  position: sticky;
  top: 116px;
  align-self: flex-start;
  max-height: calc(100vh - 132px);
  overflow-y: auto;
}
.filter-card {
  background: #fff;
  border: 1px solid #e6e9f2;
  border-radius: .75rem;
  padding: 1rem 1.1rem 1.3rem;
}
.filter-card-head {
  padding-bottom: .75rem;
  border-bottom: 1px solid #eef1f7;
  margin-bottom: .25rem;
}
.filter-card-head h4 {
  font-size: .95rem;
  font-weight: 800;
  color: #142e50;
  margin: 0;
}
.filter-clear-all {
  background: none;
  border: none;
  font-size: .78rem;
  font-weight: 700;
  color: #7c8ca5;
  padding: 0;
}
.filter-clear-all:hover { color: #d33f3f; }

.filter-toggle-row {
  background: #edf1f7;
  border-radius: .5rem;
  padding: .5rem .75rem;
}
.filter-toggle-row + .filter-toggle-row {
  margin-top: .5rem;
}

.filter-section {
  padding: 1rem 0;
  border-top: 1px solid #eef1f7;
}
.filter-section-title {
  font-size: .78rem;
  font-weight: 700;
  color: #142e50;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 0;
}
.filter-clear {
  background: none;
  border: none;
  font-size: .72rem;
  font-weight: 700;
  color: #b7c0cd;
  padding: 0;
}
.filter-clear:hover { color: #d33f3f; }
.filter-section-body {
  margin-top: .6rem;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .25rem 0;
  font-size: .8125rem;
  color: #445064;
}
.filter-check input {
  accent-color: #fd6f1c;
}
.filter-view-more {
  background: none;
  border: none;
  padding: 0;
  margin-top: .4rem;
  font-size: .75rem;
  font-weight: 700;
  color: #fd6f1c;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.filter-view-more:hover { color: #d35400; }
.filter-hidden-option { display: none; }
.filter-section.is-expanded .filter-hidden-option { display: flex; }

.filter-clear-link {
  font-size: .78rem;
  font-weight: 700;
  color: #7c8ca5;
  text-decoration: none;
}
.filter-clear-link:hover { color: #d33f3f; }

/* ---------- Candidate cards ---------- */
.candidate-card {
  background: #fff;
  border: 1px solid #e6e9f2;
  border-radius: 1rem;
  transition: box-shadow .2s ease;
}
.candidate-card:hover {
  box-shadow: 0 10px 26px rgba(20,46,80,.08);
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #142e50;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  flex: none;
}

.badge-top-match {
  background: #fff4e9;
  color: #d35400;
  font-weight: 700;
  font-size: .68rem;
  border-radius: 999px;
  padding: .25rem .6rem;
}
.badge-contacted {
  background: #e8f1fb;
  color: #1f5fa8;
  font-weight: 700;
  font-size: .68rem;
  border-radius: 999px;
  padding: .25rem .6rem;
}
.badge-suggested {
  background: #edf1f7;
  color: #445064;
  font-weight: 700;
  font-size: .68rem;
  border-radius: 999px;
  padding: .25rem .6rem;
}
.badge-database {
  background: #f2edfa;
  color: #6a3fb0;
  font-weight: 700;
  font-size: .68rem;
  border-radius: 999px;
  padding: .25rem .6rem;
}

.empty-state {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  color: #7c8ca5;
}
.empty-state.is-visible { display: block; }
.empty-state i {
  font-size: 2rem;
  color: #fd6f1c;
}

.candidate-fact {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: #445064;
  font-size: .8125rem;
}
.candidate-fact i { color: #fd6f1c; }

.lang-chip {
  background: #edf1f7;
  color: #445064;
  font-weight: 500;
  font-size: .72rem;
  border-radius: 999px;
  padding: .2rem .6rem;
}

/* ---------- Candidate summary ---------- */
.candidate-summary {
  background: #fbfcfe;
  border: 1px solid #e6e9f2;
  border-radius: .6rem;
  padding: 1rem 1.15rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  column-gap: 1.5rem;
  row-gap: .85rem;
}

.summary-field.is-full { grid-column: 1 / -1; }

.summary-field .field-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #93a0b3;
  margin-bottom: .25rem;
}

.summary-field .field-value {
  font-size: .84rem;
  color: #263548;
  line-height: 1.35;
}
.summary-field .field-value strong {
  color: #142e50;
  font-weight: 700;
}

.summary-skills {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .1rem;
}

.skill-chip {
  background: #fff;
  border: 1px solid #e6e9f2;
  color: #445064;
  font-size: .72rem;
  border-radius: 999px;
  padding: .2rem .6rem;
}
.skill-chip.is-highlight {
  border-color: #b9e6cc;
  background: #e8f8ed;
  color: #1d8f5f;
}
.skill-chip.is-more {
  background: #edf1f7;
  border-color: #edf1f7;
  font-weight: 700;
}

.candidate-footer {
  font-size: .74rem;
  color: #93a0b3;
}
.candidate-footer span:not(:last-child)::after {
  content: "•";
  margin: 0 .5rem;
  color: #d7dee8;
}

/* Candidate status dropdown + reveal-on-click contact buttons */
.candidate-status-select {
  border-radius: 6px;
  font-weight: 600;
  font-size: .74rem;
  padding: .4rem 1.6rem .4rem .6rem;
  border: 1px solid #e6e9f2;
  color: #142e50;
  background-color: #fff;
}
.candidate-status-select:focus {
  border-color: #fd6f1c;
  box-shadow: 0 0 0 .15rem rgba(253,111,28,.15);
  outline: none;
}
.candidate-status-select.status-interviewed {
  background: #fff4e9;
  border-color: #fbdcb8;
  color: #d35400;
}
.candidate-status-select.status-hired {
  background: #e8f8ed;
  border-color: #b9e6cc;
  color: #1d8f5f;
}
.candidate-status-select.status-rejected {
  background: #fdeeee;
  border-color: #f4d4d4;
  color: #b82929;
}

.btn-reveal {
  font-weight: 600;
}
.btn-reveal.is-revealed {
  background: #e8f8ed !important;
  border-color: #b9e6cc !important;
  color: #1d8f5f !important;
  cursor: default;
}

/* ---------- Unlock Profile panel ---------- */
.unlocked-panel {
  display: none;
  background: #f7f9fc;
  border: 1px solid #e6e9f2;
  border-radius: .6rem;
  padding: .85rem 1rem;
}
.unlocked-panel.is-visible { display: block; }

.unlocked-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .5rem 0;
  flex-wrap: wrap;
}
.unlocked-row + .unlocked-row {
  border-top: 1px solid #e6e9f2;
}

.unlocked-row .unlocked-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  color: #7c8ca5;
}
.unlocked-row .unlocked-label i { color: #fd6f1c; }

.unlocked-row .unlocked-value {
  font-size: .84rem;
  font-weight: 700;
  color: #142e50;
}

@media (max-width: 991px) {
  body.responses-page { margin-top: 76px; }
  .filter-sidebar {
    top: 92px;
    max-height: calc(100vh - 108px);
  }
  .sub-tab-row { top: 76px; }
  .ad-banner-img { max-height: 110px; }
}      