/* =============================================
   TIRUPUR JOB HUB — style.css (shared)
   Font: Inter | Icons: Bootstrap Icons
   ============================================= */

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

/* --- CSS Variables --- */
:root {
    /* ── Primary brand colour (navy) ── */
    --primary: #063C6B;
    --primary-dark: #042d52;
    --primary-light: #e8f0f8;
    --primary-mid: #c6d9ee;

    /* ── Accent (kept as alias — all mapped to primary) ── */
    --orange: #063C6B;
    --orange-dark: #042d52;
    --orange-light: #e8f0f8;
    --orange-mid: #c6d9ee;

    /* ── Semantic ── */
    --green-dark: #1D8A2D;
    --green: #22c55e;
    --green-light: #dcfce7;
    --blue: #3b82f6;
    --yellow-light: #fef3c7;
    --yellow-dark: #d97706;

    /* ── Neutrals ── */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --text-main: #1a1a1a;
    --text-sub: #6b7280;
    --border: #e5e7eb;

    /* ── Radii ── */
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* ── Shadows ── */
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* --- Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--gray-50);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

button, input, select, textarea {
    font-family: 'Inter', sans-serif;
}

/* ==============================================
   PAGE LAYOUT — Login & OTP share split layout
   ============================================== */
.split-page {
    display: flex;
    min-height: 100vh;
}

/* =============================================
   LEFT PANEL
   ============================================= */
.left-panel {
    width: 51%;
    background: var(--primary);
    position: relative;
    overflow: hidden;
    padding: 36px 44px 100px;
    display: flex;
    flex-direction: column;
}

/* Large decorative circle */
.left-panel::before {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
    top: 80px;
    right: -70px;
    pointer-events: none;
    z-index: 0;
}

.left-panel > * {
    position: relative;
    z-index: 1;
}

/* Logo */
.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
}

.lp-logo img {
    height: 70px;
}

/* Badge */
.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-bottom: 28px;
}

/* Heading */
.lp-heading {
    font-size: 38px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 18px;
}

/* Desc */
.lp-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.72;
    margin-bottom: 32px;
    max-width: 380px;
}

/* Stats */
.lp-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.lp-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lp-stat-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
}

.lp-stat-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.lp-stat-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
}

/* Rating */
.lp-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.lp-avatars {
    display: flex;
    align-items: center;
}

.lp-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    object-fit: cover;
    margin-left: -8px;
}

.lp-avatars img:first-child {
    margin-left: 0;
}

.lp-avatars .lp-more {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.28);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
}

.lp-stars {
    color: #fbbf24;
    font-size: 13px;
    letter-spacing: 1px;
}

.lp-rating-num {
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
}

.lp-rating-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
}

/* Deco circles (bottom right) */
.lp-deco {
    position: absolute;
    bottom: 28px;
    right: 24px;
    pointer-events: none;
    z-index: 0;
}

.lp-deco-circles {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.lp-deco-circle {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
}

.lp-deco-bar {
    width: 130px;
    height: 5px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 3px;
    margin-left: auto;
}

/* =============================================
   RIGHT PANEL
   ============================================= */
.right-panel {
    width: 49%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Nav */
.rp-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    padding: 18px 44px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.rp-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: color .18s;
}

.rp-nav-link:hover {
    color: var(--primary);
}

.rp-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: border-color .18s;
}

.rp-lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Body */
.rp-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 44px;
}

/* Footer */
.rp-footer {
    border-top: 1px solid var(--border);
    padding: 16px 44px;
    text-align: center;
    flex-shrink: 0;
}

.rp-footer-text {
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.rp-footer-text a {
    color: var(--primary);
    font-weight: 500;
}

.rp-footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.rp-footer-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray-500);
}

/* =============================================
   LOGIN CARD
   ============================================= */
.login-card {
    width: 100%;
    max-width: 420px;
    box-shadow: 0px 20px 50px 0px #0000000D;
    border-radius: 20px;
}

.login-icon-box {
    width: 50px;
    height: 50px;
    background: var(--yellow-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 22px;
    color: var(--primary);
}

.login-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.login-sub {
    font-size: 14px;
    color: var(--text-sub);
    margin-bottom: 28px;
}

.mobile-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    display: block;
}

.mobile-input-wrap {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color .2s;
    margin-bottom: 16px;
}

.mobile-input-wrap:focus-within {
    border-color: var(--primary);
}

.country-code {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 14px;
    background: var(--gray-50);
    border-right: 1.5px solid var(--gray-300);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    white-space: nowrap;
    cursor: default;
}

.phone-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 13px 14px;
    font-size: 14px;
    color: var(--gray-900);
    background: var(--white);
}

.phone-input::placeholder {
    color: var(--gray-400);
}

/* Buttons */
.btn-orange {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s;
}

.btn-orange:hover {
    background: var(--primary-dark);
}

.divider-or {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    font-size: 13px;
    color: var(--gray-400);
}

.divider-or::before, .divider-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    cursor: pointer;
    transition: border-color .18s, background .18s;
    margin-bottom: 10px;
}

.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.google-logo {
    width: 20px;
    height: 20px;
}

.signup-row {
    text-align: center;
    font-size: 13.5px;
    color: var(--gray-500);
    margin-top: 18px;
}

.signup-row a {
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
}

.signup-row a:hover {
    text-decoration: underline;
}

/* =============================================
   OTP PAGE
   ============================================= */
.otp-card {
    width: 100%;
    max-width: 440px;
    text-align: center;
}

.otp-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.otp-logo-icon {
    font-size: 36px;
}

.otp-logo-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: 1.2px;
    line-height: 1.15;
}

.otp-logo-sub {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1.15;
}

.otp-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.otp-sub {
    font-size: 14px;
    color: var(--text-sub);
    margin-bottom: 4px;
}

.otp-phone {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 30px;
}

.otp-boxes {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.otp-box {
    width: 60px;
    height: 68px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
    outline: none;
    background: var(--white);
    transition: box-shadow .18s;
}

.otp-box:focus {
    box-shadow: 0 0 0 3px rgba(6, 60, 107, 0.18);
}

.otp-resend-text {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.otp-timer {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.otp-resend-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    margin-bottom: 28px;
    display: block;
}

.btn-verify {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s;
}

.btn-verify:hover {
    background: var(--primary-dark);
}

/* =============================================
   SIGNUP MODAL (Bootstrap modal override)
   ============================================= */
#signupModal .modal-dialog {
    max-width: 540px;
}

#signupModal .modal-content {
    border-radius: var(--radius-xl);
    border: none;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Modal Top Header */
.sm-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--border);
}

.sm-back-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    display: none;
}

.sm-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
}

.sm-close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    margin-left: auto;
}

.sm-close-btn:hover {
    color: var(--gray-800);
}

/* Steps */
.sm-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

.sm-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.sm-step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sm-step-num.active {
    background: var(--primary);
    color: var(--white);
}

.sm-step-num.done {
    background: var(--primary);
    color: var(--white);
}

.sm-step-num.inactive {
    background: var(--gray-200);
    color: var(--gray-400);
}

.sm-step-label {
    font-size: 11px;
    font-weight: 600;
}

.sm-step-label.active {
    color: var(--primary);
}

.sm-step-label.done {
    color: var(--primary);
}

.sm-step-label.inactive {
    color: var(--gray-400);
}

.sm-step-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    margin: 0 6px;
    margin-bottom: 16px;
}

.sm-step-line.done-line {
    background: var(--primary);
}

/* Body */
.sm-body {
    padding: 20px;
    overflow-y: auto;
    max-height: 60vh;
}

/* Step Panels */
.sm-panel {
    display: none;
}

.sm-panel.active {
    display: block;
}

.sm-section-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.sm-section-sub {
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 16px;
}

/* Form card */
.fc {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
}

.fc-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700);
    display: block;
    margin-bottom: 8px;
}

/* Input with icon */
.ic-input {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    transition: border-color .18s;
    background: var(--white);
}

.ic-input:focus-within {
    border-color: var(--primary);
}

.ic-input .bi {
    color: var(--gray-400);
    font-size: 15px;
    flex-shrink: 0;
}

.ic-input input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    color: var(--gray-900);
    width: 100%;
}

.ic-input input::placeholder {
    color: var(--gray-400);
}

/* Plain input */
.plain-input {
    width: 100%;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: 13px;
    color: var(--gray-900);
    outline: none;
    background: var(--white);
    transition: border-color .18s;
}

.plain-input:focus {
    border-color: var(--primary);
}

.plain-input::placeholder {
    color: var(--gray-400);
}

/* Select */
.select-wrap {
    position: relative;
}

.select-wrap .bi {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
    font-size: 14px;
}

.plain-select {
    width: 100%;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 10px 36px 10px 12px;
    font-size: 13px;
    color: var(--gray-900);
    background: var(--white);
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: border-color .18s;
    font-family: 'Inter', sans-serif;
}

.plain-select:focus {
    border-color: var(--primary);
}

/* Detect */
.detect-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-light);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    margin-top: 6px;
}

/* Tags */
.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-100);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    cursor: pointer;
    transition: all .18s;
    user-select: none;
}

.tag.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Exp grid */
.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.exp-btn {
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    text-align: center;
    cursor: pointer;
    transition: all .18s;
    font-family: 'Inter', sans-serif;
}

.exp-btn.active {
    background: var(--yellow-light);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

/* Salary slider */
.salary-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 22%, var(--gray-200) 22%);
    outline: none;
    cursor: pointer;
    margin-bottom: 6px;
}

.salary-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 2.5px solid var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.salary-minmax {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.salary-val-text {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

/* Work type */
.work-toggle {
    display: flex;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.work-btn {
    flex: 1;
    padding: 11px;
    border: none;
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all .18s;
}

.work-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* Relocate */
.relocate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.relocate-sub {
    font-size: 12px;
    color: var(--text-sub);
    margin-top: 2px;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sw-slider {
    position: absolute;
    inset: 0;
    background: var(--gray-300);
    border-radius: 24px;
    cursor: pointer;
    transition: .3s;
}

.sw-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: .3s;
}

.switch input:checked + .sw-slider {
    background: var(--primary);
}

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

/* Availability */
.avail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.avail-btn {
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 11px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--gray-700);
    text-align: center;
    cursor: pointer;
    transition: all .18s;
}

.avail-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Upload */
.upload-box {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md);
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: var(--gray-50);
    transition: border-color .18s;
}

.upload-box:hover {
    border-color: var(--primary);
}

.upload-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 4px;
}

.uic-orange {
    background: var(--primary);
    color: var(--white);
}

.uic-light {
    background: var(--primary-light);
    color: var(--primary);
}

.uic-gray {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    color: var(--gray-400);
    font-size: 22px;
}

.upload-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

.upload-sub {
    font-size: 12px;
    color: var(--gray-400);
}

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

/* Notice */
.notice-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 12px;
}

.notice-box .bi {
    color: var(--gray-400);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.notice-text {
    font-size: 12.5px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* =============================================
   SUCCESS
   ============================================= */
.success-icon-wrap {
    position: relative;
    width: 84px;
    height: 84px;
    margin: 8px auto 18px;
}

.success-shield {
    width: 84px;
    height: 84px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
}

.success-check-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 26px;
    height: 26px;
    background: var(--primary);
    border-radius: 50%;
    border: 2.5px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.success-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 8px;
}

.success-sub {
    font-size: 13px;
    color: var(--text-sub);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 16px;
}

.eta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 13.5px;
    font-weight: 600;
    padding: 13px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

/* Verification Status */
.vs-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.vs-header-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}

.vs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--border);
}

.vs-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
}

.badge-verified {
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.badge-review {
    background: var(--yellow-light);
    color: var(--yellow-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* What next */
.next-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
}

.next-num {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.next-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.next-sub {
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.5;
}

/* Footer buttons */
.sm-footer {
    padding: 14px 18px;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.btn-save-continue {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .18s;
}

.btn-save-continue:hover {
    background: var(--primary-dark);
}

.btn-go-home {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .18s;
    margin-bottom: 2px;
}

.btn-go-home:hover {
    background: var(--primary-dark);
}

.btn-view-profile {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    padding: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    margin-top: 2px;
}

.req {
    color: #ef4444;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
    .split-page {
        flex-direction: column;
    }

    .left-panel {
        width: 100%;
        min-height: auto;
        padding: 28px 24px 48px;
    }

    .right-panel {
        width: 100%;
        min-height: auto;
    }

    .lp-heading {
        font-size: 26px;
    }

    .rp-body {
        padding: 32px 28px;
    }

    .rp-nav {
        padding: 14px 24px;
    }

    .rp-footer {
        padding: 14px 24px;
    }
}

@media (max-width: 575.98px) {
    .lp-heading {
        font-size: 22px;
    }

    .lp-desc {
        font-size: 13px;
    }

    .rp-body {
        padding: 24px 16px;
    }

    .rp-nav {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 14px;
        justify-content: center;
    }

    .rp-nav-link {
        font-size: 12.5px;
    }

    .login-title {
        font-size: 22px;
    }

    .otp-title {
        font-size: 22px;
    }

    .otp-box {
        width: 46px;
        height: 56px;
        font-size: 22px;
    }

    .otp-boxes {
        gap: 8px;
    }

    .rp-footer-badges {
        gap: 12px;
        flex-wrap: wrap;
    }

    #signupModal .modal-dialog {
        margin: 6px;
    }

    .sm-body {
        max-height: 55vh;
    }
}

/* ==============================================
   HOME PAGE — Navbar, Home, Footer
   ============================================== */

/* ---- NAVBAR ---- */
.site-navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    min-height: 58px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.navbar-brand-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-brand-wrap img {
    height: 70px;
    padding: 5px 0px;
}

.navbar-brand-icon {
    font-size: 22px;
    color: var(--primary);
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-brand-title {
    font-size: 13px;
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: 1px;
}

.navbar-brand-sub {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.3px;
}

/* Nav Links */
.navbar-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 12px;
}

.nav-page-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color .18s;
    white-space: nowrap;
}

.nav-page-link:hover {
    color: var(--gray-900);
}

.nav-page-link.active {
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    border-radius: 0;
}

/* Search bar */
.navbar-search-wrap {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--gray-200);
    border-radius: 100px;
    overflow: hidden;
    flex: 0 1 340px;
    background: var(--white);
    transition: border-color .18s;
}

.navbar-search-wrap:focus-within {
    border-color: var(--primary);
}

.navbar-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 12px 8px 10px;
    font-size: 13.5px;
    color: var(--gray-800);
    background: transparent;
    font-family: 'Inter', sans-serif;
    min-width: 0;
}

.navbar-search-input::placeholder {
    color: var(--gray-400);
}

.navbar-search-icon {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: var(--gray-400);
    font-size: 14px;
}

.navbar-location-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--gray-50);
    border: none;
    border-left: 1.5px solid var(--gray-200);
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

/* Right side actions */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar-lang-btn {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    padding: 4px 6px;
}

.navbar-lang-btn:hover {
    color: var(--primary);
}

.navbar-notif-btn {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: var(--gray-600);
    position: relative;
    transition: background .18s;
}

.navbar-notif-btn:hover {
    background: var(--gray-100);
}

.navbar-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
}

/* Hamburger */
.navbar-toggler-custom {
    background: none;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-size: 18px;
    color: var(--gray-700);
    cursor: pointer;
    display: none;
}

/* Mobile collapse menu */
.navbar-mobile-menu {
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 16px;
    flex-direction: column;
    gap: 4px;
}

.navbar-mobile-menu.open {
    display: flex;
}

.mobile-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background .15s;
}

.mobile-nav-link:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.mobile-nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

.mobile-search-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 8px 0 4px;
}

.mobile-search-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 12px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

.mobile-search-icon {
    padding: 10px 12px;
    color: var(--gray-400);
    font-size: 14px;
}

/* ---- HOME PAGE BODY ---- */
.home-body {
    background: #fff;
    padding: 24px 0 40px;
    min-height: calc(100vh - 58px - 64px);
}

/* ---- LEFT SIDEBAR ---- */

/* Profile Card */
.profile-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border);
    margin-bottom: 14px;
}

.profile-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

/* Circular progress */
.progress-ring-wrap {
    position: relative;
    width: 54px;
    height: 54px;
    flex-shrink: 0;
}

.progress-ring-wrap svg {
    transform: rotate(-90deg);
}

.progress-ring-track {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 5;
}

.progress-ring-fill {
    fill: none;
    stroke: var(--primary);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 138.2;
    stroke-dashoffset: 47.6; /* 65% filled */
    transition: stroke-dashoffset .6s ease;
}

.progress-ring-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
}

.profile-card-info {
    flex: 1;
    min-width: 0;
}

.profile-welcome {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.profile-complete-text {
    font-size: 12px;
    color: var(--text-sub);
}

.btn-complete-profile {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 11px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .18s;
}

.btn-complete-profile:hover {
    background: var(--primary-dark);
}

/* Activity Card */
.activity-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    border: 1px solid var(--border);
    margin-bottom: 14px;
}

.activity-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.activity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 13.5px;
}

.activity-row:last-child {
    border-bottom: none;
}

.activity-label {
    color: var(--gray-700);
    font-weight: 400;
}

.activity-count {
    font-weight: 700;
    color: var(--primary);
}

/* Filters Card */
.filters-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    border: 1px solid var(--border);
}

.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.filters-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
}

.filters-clear {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.filters-clear:hover {
    text-decoration: underline;
}

.filter-section-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
}

/* Salary Slider */
.filter-salary-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 55%, var(--gray-200) 55%);
    outline: none;
    cursor: pointer;
    margin-bottom: 6px;
}

.filter-salary-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 2.5px solid var(--white);
    box-shadow: 0 1px 5px rgba(6, 60, 107, 0.25);
}

.filter-salary-minmax {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    color: var(--gray-500);
    margin-bottom: 14px;
}

/* Checkboxes */
.filter-check-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.filter-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--gray-700);
    cursor: pointer;
}

.filter-check-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

/* ---- MAIN CONTENT ---- */

/* Hero Banner */
.hero-banner {
    background: var(--green-dark);
    border-radius: var(--radius-md);
    padding: 32px 32px 28px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    top: -60px;
    right: -40px;
    pointer-events: none;
}

.hero-banner-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
    position: relative;
}

.hero-banner-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
    position: relative;
}

/* Category Icons */
.category-row {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    position: relative;
}

.category-row::-webkit-scrollbar {
    display: none;
}

.category-chip {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    min-width: 82px;
    border: none;
    transition: background .18s, transform .15s;
    font-family: 'Inter', sans-serif;
}

.category-chip:hover {
    background: var(--white);
    transform: translateY(-1px);
}

.category-chip-icon {
    font-size: 20px;
    color: var(--primary);
}

.category-chip-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--gray-700);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.section-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-900);
}

.section-view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-view-all:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Featured Jobs Scroll */
.featured-jobs-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 28px;
    scrollbar-width: none;
}

.featured-jobs-scroll::-webkit-scrollbar {
    display: none;
}

/* Featured Job Card */
.featured-job-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    min-width: 230px;
    flex-shrink: 0;
    cursor: pointer;
    transition: box-shadow .18s, transform .15s;
}

.featured-job-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
}

.featured-job-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3px;
    line-height: 1.3;
}

.featured-job-company {
    font-size: 12.5px;
    color: var(--text-sub);
    margin-bottom: 12px;
}

.featured-job-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.featured-job-meta .bi {
    font-size: 12px;
    color: var(--gray-400);
}

/* Jobs Near You */
.jobs-near-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.jobs-near-filters {
    display: flex;
    gap: 6px;
}

.job-filter-pill {
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 5px 14px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .18s;
}

.job-filter-pill.active {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
}

/* Job List Card */
.job-list-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
    transition: box-shadow .18s;
}

.job-list-card:hover {
    box-shadow: var(--shadow-sm);
}

/* Logo initials */
.job-logo-box {
    width: 52px;
    height: 52px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.job-list-info {
    flex: 1;
    min-width: 0;
}

.job-list-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.job-list-company-row {
    font-size: 12.5px;
    color: var(--text-sub);
    margin-bottom: 6px;
}

.job-list-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--gray-600);
}

.job-meta-item .bi {
    font-size: 12px;
    color: var(--gray-400);
}

.job-list-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.job-bookmark-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    color: var(--gray-400);
    transition: all .18s;
}

.job-bookmark-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-apply-now {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transition: background .18s;
}

.btn-apply-now:hover {
    background: var(--primary-dark);
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-brand img {
    height: 70px;
}


.footer-copy {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 13px;
    color: var(--gray-500);
    text-decoration: none;
    font-weight: 400;
    transition: color .18s;
}

.footer-link:hover {
    color: var(--primary);
}

/* =============================================
   RESPONSIVE — Home Page
   ============================================= */
@media (max-width: 1199.98px) {
    .hero-banner-title {
        font-size: 24px;
    }

    .category-chip {
        min-width: 74px;
        padding: 9px 12px;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav-links {
        display: none;
    }

    .navbar-search-wrap {
        display: none;
    }

    .navbar-lang-btn {
        display: none;
    }

    .navbar-toggler-custom {
        display: flex;
    }

    .home-sidebar-col {
        margin-bottom: 20px;
    }

    .hero-banner-title {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .navbar-right .navbar-notif-btn {
        display: none;
    }

    .hero-banner {
        padding: 22px 18px 20px;
    }

    .hero-banner-title {
        font-size: 20px;
    }

    .hero-banner-sub {
        font-size: 13px;
    }

    .category-chip {
        min-width: 68px;
        padding: 8px 10px;
    }

    .category-chip-label {
        font-size: 9.5px;
    }

    .job-list-card {
        flex-wrap: wrap;
    }

    .job-list-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .featured-job-card {
        min-width: 200px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .site-navbar {
        padding: 0 14px;
    }

    .home-body {
        padding: 16px 0 32px;
    }

    .featured-job-card {
        min-width: 180px;
    }

    .job-list-title {
        font-size: 14px;
    }

    .btn-apply-now {
        padding: 9px 14px;
        font-size: 13px;
    }
}

/* ==============================================
   VIEW JOB PAGE
   ============================================== */

.view-job-body {
    background: var(--white);
    padding: 28px 0 48px;
    min-height: calc(100vh - 58px - 64px);
}

/* ---- Job Header Card ---- */
.job-header-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 28px 20px;
    margin-bottom: 14px;
}

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

.job-header-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.job-company-logo {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gray-500);
    flex-shrink: 0;
}

.job-header-info {
    flex: 1;
    min-width: 0;
}

.job-header-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 5px;
    line-height: 1.2;
}

.job-header-company {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.job-company-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.job-verified-badge {
    width: 17px;
    height: 17px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 9px;
    flex-shrink: 0;
}

.job-location-text {
    font-size: 13px;
    color: var(--text-sub);
}

.job-location-dot {
    font-size: 13px;
    color: var(--gray-400);
}

/* Save job button */
.btn-save-job {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transition: border-color .18s, color .18s;
    flex-shrink: 0;
}

.btn-save-job:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Job tag badges */
.job-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.job-tag-fulltime {
    background: #e8f5e9;
    color: #2e7d32;
}

.job-tag-exp {
    background: #e3f2fd;
    color: #1565c0;
}

.job-tag-urgent {
    background: #fff3e0;
    color: var(--primary);
}

/* ---- Job Detail Card (description) ---- */
.job-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 28px;
}

.job-section-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    margin-top: 4px;
}

.job-desc-text {
    font-size: 13.5px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 24px;
}

.job-section-divider {
    border: none;
    border-top: 1px solid var(--gray-100);
    margin: 20px 0;
}

/* Responsibility / Requirement list */
.job-list-items {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--gray-700);
    line-height: 1.6;
}

.job-list-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}

.job-list-icon.green {
    background: #fff;
    color: #A04100;
    border: 2px solid #A04100;
}

.job-list-icon.orange {
    background: #fff;
    color: #A04100;
    border: 2px solid #A04100;
}

/* ---- RIGHT SIDEBAR ---- */

/* Salary Card */
.salary-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    margin-bottom: 14px;
}

.salary-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.salary-amount {
    font-size: 26px;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 4px;
    line-height: 1.2;
}

.salary-benefits {
    font-size: 12px;
    color: var(--text-sub);
    margin-bottom: 18px;
}

.btn-apply-job {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .18s;
}

.btn-apply-job:hover {
    background: var(--primary-dark);
}

/* Job Match Card */
.match-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 14px;
}

.match-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.match-score-label {
    font-size: 11.5px;
    color: var(--text-sub);
    font-weight: 500;
}

.match-score-badge {
    width: 40px;
    height: 40px;
    color: var(--primary);
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.match-percent {
    font-size: 22px;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.match-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 6px;
}

.match-item .bi {
    font-size: 13px;
}

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

/* Recruiter Card */
.recruiter-card {
    background: #E5EEFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.recruiter-card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.recruiter-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.recruiter-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--gray-200);
}

.recruiter-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.recruiter-role {
    font-size: 12px;
    color: var(--text-sub);
}

.recruiter-desc {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 16px;
}

.btn-company-profile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    padding: 0;
    transition: opacity .18s;
}

.btn-company-profile:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ---- Similar Jobs Section ---- */
.similar-jobs-section {
    margin-top: 28px;
}

.similar-jobs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.similar-jobs-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray-900);
}

.similar-filter-pills {
    display: flex;
    gap: 6px;
}

/* Similar job card — full width */
.similar-job-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
    transition: box-shadow .18s;
}

.similar-job-card:hover {
    box-shadow: var(--shadow-sm);
}

.similar-job-logo {
    width: 52px;
    height: 52px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.similar-job-info {
    flex: 1;
    min-width: 0;
}

.similar-job-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.similar-job-company {
    font-size: 12.5px;
    color: var(--text-sub);
    margin-bottom: 6px;
}

.similar-job-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.similar-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--gray-600);
}

.similar-meta-item .bi {
    font-size: 12px;
    color: var(--gray-400);
}

.similar-job-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.similar-bookmark-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    color: var(--gray-400);
    transition: all .18s;
}

.similar-bookmark-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-apply-similar {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transition: background .18s;
}

.btn-apply-similar:hover {
    background: var(--primary-dark);
}

/* ---- Responsive View Job ---- */
@media (max-width: 991.98px) {
    .view-job-sidebar {
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    .job-header-card {
        padding: 18px 16px 16px;
    }

    .job-header-title {
        font-size: 18px;
    }

    .job-detail-card {
        padding: 18px 16px;
    }

    .salary-amount {
        font-size: 22px;
    }

    .similar-job-card {
        flex-wrap: wrap;
    }

    .similar-job-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 575.98px) {
    .view-job-body {
        padding: 16px 0 36px;
    }

    .job-header-top {
        flex-direction: column;
        gap: 12px;
    }

    .btn-save-job {
        width: 100%;
        justify-content: center;
    }

    .salary-amount {
        font-size: 20px;
    }

    .match-percent {
        font-size: 18px;
    }
}

/* ==============================================
   CONFIRM APPLICATION PAGE
   ============================================== */

.confirm-app-body {
    background: var(--white);
    padding: 36px 0 60px;
    min-height: calc(100vh - 58px - 64px);
}

/* Page title */
.confirm-page-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 28px;
}

/* Shared section card */
.ca-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 16px;
}

/* ---- Job Preview Card ---- */
.ca-job-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ca-job-logo {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.ca-job-info {
    flex: 1;
    min-width: 0;
}

.ca-job-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.ca-job-company {
    font-size: 13.5px;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.ca-job-salary {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.ca-job-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ca-job-tag {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-full);
    padding: 4px 14px;
}

/* ---- Section card header row ---- */
.ca-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ca-section-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-900);
}

.ca-edit-btn {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    padding: 0;
    transition: opacity .18s;
}

.ca-edit-btn:hover {
    opacity: 0.72;
}

.ca-change-btn {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    padding: 0;
    transition: opacity .18s;
}

.ca-change-btn:hover {
    opacity: 0.72;
}

/* ---- Experience item ---- */
.ca-exp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 20px;
}

.ca-exp-item:last-child {
    padding-bottom: 0;
}

.ca-exp-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.ca-exp-body {
    flex: 1;
    min-width: 0;
}

.ca-exp-role {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.ca-exp-company {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 2px;
}

.ca-exp-duration {
    font-size: 12.5px;
    color: var(--gray-400);
}

/* ---- Resume file row ---- */
.ca-resume-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    gap: 12px;
}

.ca-resume-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.ca-resume-icon {
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.ca-resume-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.ca-resume-meta {
    font-size: 12px;
    color: var(--gray-400);
}

.ca-resume-view-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    transition: background .18s;
}

.ca-resume-view-btn:hover {
    background: var(--primary-light);
}

/* ---- Cover note ---- */
.ca-cover-sub {
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 14px;
    margin-top: -12px;
}

.ca-cover-textarea {
    width: 100%;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 13.5px;
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    line-height: 1.65;
    resize: vertical;
    min-height: 130px;
    outline: none;
    transition: border-color .18s;
    background: var(--white);
}

.ca-cover-textarea:focus {
    border-color: var(--primary);
}

/* ---- Info notice bar ---- */
.ca-notice-bar {
    background: var(--gray-100);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-size: 13.5px;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ---- Action Buttons Row ---- */
.ca-action-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.btn-confirm-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .18s;
}

.btn-confirm-submit:hover {
    background: var(--primary-dark);
}

.btn-cancel-app {
    background: var(--white);
    color: var(--gray-700);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: border-color .18s, color .18s;
}

.btn-cancel-app:hover {
    border-color: var(--gray-500);
    color: var(--gray-900);
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
    .confirm-page-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .ca-card {
        padding: 18px 16px;
    }

    .ca-action-row {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .btn-confirm-submit,
    .btn-cancel-app {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .confirm-app-body {
        padding: 24px 0 48px;
    }

    .confirm-page-title {
        font-size: 20px;
    }

    .ca-job-title {
        font-size: 15px;
    }
}

/* ==============================================
   SAVED JOBS PAGE
   ============================================== */

.saved-jobs-body {
    background: var(--white);
    padding: 36px 0 60px;
    min-height: calc(100vh - 58px - 64px);
}

/* ---- Page header row ---- */
.saved-jobs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.saved-jobs-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.saved-jobs-icon {
    font-size: 22px;
    color: var(--primary);
}

.saved-jobs-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--gray-900);
}

.saved-count-pill {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--primary-mid);
    white-space: nowrap;
}

/* ---- Jobs list container ---- */
.saved-jobs-list {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* ---- Single saved job row ---- */
.saved-job-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: background .15s;
    position: relative;
}

.saved-job-row:last-child {
    border-bottom: none;
}

.saved-job-row:hover {
    background: var(--gray-50);
}

/* Company logo circle — amber/yellow */
.saved-job-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #F5A623;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

/* Job info block */
.saved-job-info {
    flex: 1;
    min-width: 0;
}

.saved-job-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.saved-job-company {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.saved-job-salary {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 10px;
}

.saved-job-meta {
    font-size: 12.5px;
    color: var(--gray-400);
}

/* Right side: bookmark + button */
.saved-job-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    align-self: stretch;
    flex-shrink: 0;
}

.saved-bookmark-icon {
    font-size: 18px;
    color: var(--primary);
    cursor: pointer;
    transition: opacity .18s;
    line-height: 1;
}

.saved-bookmark-icon:hover {
    opacity: 0.65;
}

.btn-quick-apply {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transition: background .18s;
}

.btn-quick-apply:hover {
    background: var(--primary-dark);
}

/* ---- Responsive ---- */
@media (max-width: 575.98px) {
    .saved-jobs-body {
        padding: 24px 0 48px;
    }

    .saved-jobs-title {
        font-size: 20px;
    }

    .saved-jobs-icon {
        font-size: 18px;
    }

    .saved-job-row {
        padding: 16px 14px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .saved-job-actions {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        align-self: auto;
        gap: 10px;
    }
}

/* ==============================================
   JOB HISTORY PAGE
   ============================================== */

.job-history-body {
    background: var(--gray-50);
    padding: 36px 0 60px;
    min-height: calc(100vh - 58px - 64px);
}

/* ---- Page title block ---- */
.jh-page-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.jh-page-sub {
    font-size: 13.5px;
    color: var(--text-sub);
    margin-bottom: 24px;
}

/* ---- Total applications card (top right) ---- */
.jh-total-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.jh-total-icon-wrap {
    width: 50px;
    height: 50px;
    background: #fde8d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #c2540a;
    flex-shrink: 0;
}

.jh-total-label {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--gray-500);
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.jh-total-count {
    font-size: 28px;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
}

/* ---- Filter tabs ---- */
.jh-filter-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.jh-tab {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    transition: all .18s;
    white-space: nowrap;
}

.jh-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.jh-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ---- Job application card ---- */
.jh-app-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow .18s;
}

.jh-app-card:hover {
    box-shadow: var(--shadow-sm);
}

/* Company initials box */
.jh-company-logo {
    width: 52px;
    height: 52px;
    background: var(--gray-100);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-600);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.jh-app-info {
    flex: 1;
    min-width: 0;
}

.jh-app-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.jh-app-title {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--gray-900);
}

.jh-app-company {
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 12px;
}

.jh-app-meta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.jh-app-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--gray-500);
}

.jh-app-meta .bi {
    font-size: 12px;
    color: var(--gray-400);
}

/* ---- Status badges ---- */
.jh-status {
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.jh-status-hired {
    background: #dcfce7;
    color: #15803d;
}

.jh-status-shortlisted {
    background: #e0f2fe;
    color: #0369a1;
}

.jh-status-applied {
    background: var(--primary);
    color: var(--white);
}

.jh-status-rejected {
    background: #fee2e2;
    color: #dc2626;
}

/* ---- View More ---- */
.jh-view-more-wrap {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 4px;
}

.btn-view-more {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity .18s;
    padding: 8px 16px;
}

.btn-view-more:hover {
    opacity: 0.72;
}

/* ---- RIGHT SIDEBAR ---- */

/* Profile Strength card */
.jh-strength-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 14px;
}

.jh-strength-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.jh-strength-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-900);
}

.jh-strength-pct {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
}

/* Progress bar */
.jh-progress-bar-wrap {
    background: var(--gray-200);
    border-radius: var(--radius-full);
    height: 8px;
    width: 100%;
    margin-bottom: 16px;
    overflow: hidden;
}

.jh-progress-bar-fill {
    height: 100%;
    width: 85%;
    background: var(--green);
    border-radius: var(--radius-full);
}

/* Checklist items */
.jh-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 10px;
}

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

.jh-check-icon-done {
    width: 18px;
    height: 18px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 10px;
    flex-shrink: 0;
}

.jh-check-icon-empty {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--gray-300);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Complete Profile button */
.btn-complete-profile-outline {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 11px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    margin-top: 16px;
    transition: background .18s, color .18s;
}

.btn-complete-profile-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Recommended card */
.jh-recommended-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.jh-recommended-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 18px;
}

.jh-rec-job {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.jh-rec-job:last-of-type {
    border-bottom: none;
    margin-bottom: 12px;
    padding-bottom: 0;
}

.jh-rec-job-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.jh-rec-job-company {
    font-size: 12.5px;
    color: var(--text-sub);
    margin-bottom: 8px;
}

.jh-rec-job-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.jh-rec-salary {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.jh-rec-badge {
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
}

.jh-rec-badge-new {
    background: var(--primary-light);
    color: var(--primary);
}

.jh-rec-badge-hot {
    background: #fde8d8;
    color: #c2540a;
}

.btn-explore-all {
    width: 100%;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    padding: 8px 0 0;
    text-align: center;
    transition: color .18s;
}

.btn-explore-all:hover {
    color: var(--primary);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .jh-sidebar-col {
        margin-top: 8px;
    }
}

@media (max-width: 767.98px) {
    .jh-page-title {
        font-size: 22px;
    }

    .jh-app-title-row {
        flex-direction: column;
        gap: 8px;
    }

    .jh-total-card {
        margin-bottom: 16px;
    }
}

@media (max-width: 575.98px) {
    .job-history-body {
        padding: 20px 0 48px;
    }

    .jh-page-title {
        font-size: 20px;
    }

    .jh-filter-tabs {
        gap: 6px;
    }

    .jh-tab {
        font-size: 12.5px;
        padding: 7px 14px;
    }

    .jh-app-card {
        flex-wrap: wrap;
    }
}

/* ==============================================
   VIEW JOB HISTORY DETAIL PAGE
   ============================================== */

.vjh-body {
    background: var(--gray-50);
    padding: 32px 0 60px;
    min-height: calc(100vh - 58px - 64px);
}

/* =====================
   SECTION CARD base
   ===================== */
.vjh-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    margin-bottom: 16px;
}

/* =====================
   JOB HEADER CARD
   ===================== */
.vjh-job-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.vjh-company-logo {
    width: 72px;
    height: 72px;
    background: var(--gray-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-600);
    flex-shrink: 0;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.vjh-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vjh-job-title-wrap {
    flex: 1;
    min-width: 0;
}

.vjh-job-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.vjh-job-company-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    color: var(--gray-500);
    flex-wrap: wrap;
}

.vjh-status-shortlisted {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #dcfce7;
    color: #15803d;
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}

/* =====================
   APPLICATION TIMELINE
   ===================== */
.vjh-timeline {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-top: 4px;
}

/* connecting line behind circles */
.vjh-timeline-track {
    position: absolute;
    top: 17px;
    left: 17px;
    right: 17px;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

.vjh-timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 55%; /* Applied → Reviewed → Shortlisted filled */
    background: var(--primary);
    border-radius: 2px;
}

.vjh-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.vjh-step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.vjh-step-circle.done {
    background: var(--primary);
    color: var(--white);
}

.vjh-step-circle.active-step {
    background: var(--primary);
    color: var(--white);
}

.vjh-step-circle.pending {
    background: var(--white);
    border: 2px solid var(--gray-300);
    color: var(--gray-400);
}

.vjh-step-label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
    text-align: center;
}

.vjh-step-label.done {
    color: var(--primary);
}

.vjh-step-label.active-step {
    color: var(--primary);
}

.vjh-step-label.pending {
    color: var(--gray-400);
}

.vjh-step-date {
    font-size: 11.5px;
    color: var(--gray-400);
    text-align: center;
}

/* =====================
   COMPENSATION & TYPE
   ===================== */
.vjh-comp-shift-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.vjh-comp-card {
    flex: 1;
    min-width: 200px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 22px;
}

.vjh-comp-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.vjh-comp-icon {
    width: 30px;
    height: 30px;
    background: #fde8d8;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #c2540a;
}

.vjh-clock-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-light);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--primary);
}

.vjh-comp-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-900);
}

.vjh-salary-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.vjh-salary-amount {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.vjh-salary-amount span {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
}

.vjh-type-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vjh-type-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--gray-300);
    color: var(--gray-600);
    background: var(--white);
}

/* Shift table */
.vjh-shift-table {
    width: 100%;
    border-collapse: collapse;
}

.vjh-shift-table tr {
    border-bottom: 1px solid var(--gray-100);
}

.vjh-shift-table tr:last-child {
    border-bottom: none;
}

.vjh-shift-table td {
    padding: 10px 0;
    font-size: 13.5px;
}

.vjh-shift-table td:first-child {
    color: var(--gray-500);
}

.vjh-shift-table td:last-child {
    font-weight: 700;
    color: var(--gray-900);
    text-align: right;
}

/* =====================
   JOB DESCRIPTION CARD
   ===================== */
.vjh-desc-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.vjh-desc-text {
    font-size: 13.5px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 20px;
}

.vjh-resp-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.vjh-resp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vjh-resp-list li {
    font-size: 13.5px;
    color: var(--gray-700);
    line-height: 1.6;
    padding-left: 2px;
}

/* =====================
   LOCATION & RECRUITER
   ===================== */
.vjh-loc-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.vjh-loc-rec-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.vjh-factory-block {
    flex: 0 0 auto;
    min-width: 180px;
}

.vjh-factory-icon-wrap {
    width: 38px;
    height: 38px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.vjh-factory-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.vjh-factory-addr {
    font-size: 12.5px;
    color: var(--gray-500);
    line-height: 1.65;
}

/* Contact box */
.vjh-contact-box {
    flex: 1;
    min-width: 240px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    background-color: #E5EEFF;
}

.vjh-contact-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.vjh-contact-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.vjh-contact-avatar {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.vjh-contact-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.vjh-contact-role {
    font-size: 12px;
    color: var(--text-sub);
}

.vjh-contact-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-contact-outline {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 11px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: border-color .18s, color .18s;
}

.btn-contact-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* =====================
   RIGHT SIDEBAR
   ===================== */

/* Application Status card */
.vjh-status-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 14px;
}

.vjh-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.vjh-status-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
}

.vjh-status-active {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
}

/* Good news banner */
.vjh-goodnews-banner {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 16px;
}

.vjh-goodnews-banner strong {
    color: var(--gray-900);
}

.btn-contact-employer {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .18s;
    margin-bottom: 10px;
}

.btn-contact-employer:hover {
    background: var(--primary-dark);
}

.btn-withdraw {
    width: 100%;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    padding: 6px;
    transition: color .18s;
    text-align: center;
}

.btn-withdraw:hover {
    color: var(--gray-800);
}

/* Profile Match card */
.vjh-match-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.vjh-match-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.vjh-match-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

/* Donut ring */
.vjh-donut-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.vjh-donut-wrap svg {
    transform: rotate(-90deg);
}

.vjh-donut-track {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 6;
}

.vjh-donut-fill {
    fill: none;
    stroke: var(--primary);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 163;
    stroke-dashoffset: 24.5; /* 85% */
}

.vjh-donut-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
}

.vjh-match-strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.vjh-match-sub {
    font-size: 12px;
    color: var(--text-sub);
}

/* Skill items */
.vjh-skill-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 8px;
}

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

.vjh-skill-item .bi-check-circle-fill {
    color: var(--green);
    font-size: 14px;
}

.vjh-skill-item .bi-circle {
    color: var(--gray-300);
    font-size: 14px;
}

.vjh-skill-done {
    color: var(--primary);
    font-weight: 500;
}

.vjh-skill-miss {
    color: var(--gray-500);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 991.98px) {
    .vjh-sidebar {
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    .vjh-job-header {
        flex-wrap: wrap;
    }

    .vjh-comp-card {
        min-width: 100%;
    }

    .vjh-comp-shift-row {
        flex-direction: column;
    }

    .vjh-loc-rec-grid {
        flex-direction: column;
    }

    .vjh-job-title {
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .vjh-body {
        padding: 20px 0 48px;
    }

    .vjh-card {
        padding: 16px;
    }

    .vjh-salary-amount {
        font-size: 18px;
    }

    .vjh-timeline {
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .vjh-step {
        min-width: 60px;
    }
}

/* ==============================================
   APPLIED SUCCESSFULLY PAGE
   ============================================== */

.applied-success-body {
    background: var(--white);
    padding: 40px 0 60px;
    min-height: calc(100vh - 58px - 64px);
}

/* ---- Success hero section ---- */
.as-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px 44px;
}

/* Decorative confetti dots + green circle */
.as-icon-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    margin-bottom: 28px;
}

/* Main green circle */
.as-green-circle {
    width: 110px;
    height: 110px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: var(--white);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Decorative dots */
.as-dot {
    position: absolute;
    border-radius: 50%;
}

.as-dot-red {
    width: 14px;
    height: 14px;
    background: #ef4444;
    top: 14px;
    right: 14px;
}

.as-dot-amber {
    width: 18px;
    height: 18px;
    background: #f59e0b;
    top: 10px;
    right: 2px;
}

.as-dot-navy {
    width: 12px;
    height: 12px;
    background: var(--primary);
    bottom: 16px;
    left: 2px;
}

/* Title */
.as-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 10px;
}

/* Subtitle */
.as-sub {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.65;
    max-width: 360px;
    margin-bottom: 28px;
}

/* View applications link */
.as-view-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .18s;
}

.as-view-link:hover {
    opacity: 0.75;
}

.as-view-link .bi {
    font-size: 17px;
}

/* ---- Similar Jobs section ---- */
.as-similar-section {
    padding: 0 0 8px;
}

/* Section header */
.as-similar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.as-similar-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray-900);
}

.as-filter-pills {
    display: flex;
    gap: 6px;
}

/* ---- Job list card (full-width, bordered rows) ---- */
.as-job-list {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.as-job-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: background .15s;
}

.as-job-row:last-child {
    border-bottom: none;
}

.as-job-row:hover {
    background: var(--gray-50);
}

/* Company initials */
.as-job-logo {
    width: 52px;
    height: 52px;
    background: var(--gray-100);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.as-job-info {
    flex: 1;
    min-width: 0;
}

.as-job-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.as-job-company {
    font-size: 12.5px;
    color: var(--text-sub);
    margin-bottom: 6px;
}

.as-job-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.as-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--gray-500);
}

.as-meta-item .bi {
    font-size: 12px;
    color: var(--gray-400);
}

/* Row right actions */
.as-job-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.as-bookmark-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    color: var(--gray-400);
    transition: all .18s;
}

.as-bookmark-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-apply-now-as {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transition: background .18s;
}

.btn-apply-now-as:hover {
    background: var(--primary-dark);
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
    .as-title {
        font-size: 22px;
    }

    .as-sub {
        font-size: 14px;
    }

    .as-job-row {
        flex-wrap: wrap;
        padding: 16px 14px;
    }

    .as-job-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 575.98px) {
    .applied-success-body {
        padding: 28px 0 48px;
    }

    .as-title {
        font-size: 20px;
    }

    .as-green-circle {
        width: 94px;
        height: 94px;
        font-size: 38px;
    }

    .as-icon-wrap {
        width: 112px;
        height: 112px;
    }
}

/* ==============================================
   PROFILE PAGE
   ============================================== */

.profile-page-body {
    background: var(--gray-100);
    padding: 0 0 60px;
    min-height: calc(100vh - 58px - 64px);
}

/* =============================================
   LEFT ACCOUNT SIDEBAR  col-3
   ============================================= */
.profile-sidebar {
    background: var(--white);
    border-right: 1px solid var(--border);
    min-height: calc(100vh - 58px - 64px);
    padding: 28px 0 40px;
}

.profile-sidebar-head {
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
}

.profile-sidebar-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.profile-sidebar-sub {
    font-size: 12.5px;
    color: var(--text-sub);
}

/* Nav items */
.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background .15s, color .15s;
    position: relative;
}

.profile-nav-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.profile-nav-item.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    border-left-color: var(--primary);
}

.profile-nav-item .bi {
    font-size: 16px;
    flex-shrink: 0;
}

/* =============================================
   MAIN CONTENT  col-9
   ============================================= */
.profile-main {
    padding: 28px 28px 28px 32px;
}

/* ---- User info header ---- */
.profile-user-header {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

/* Avatar circle */
.profile-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
}

.profile-user-info {
    flex: 1;
}

.profile-user-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.profile-user-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 14px;
}

.profile-user-phone .bi {
    font-size: 14px;
}

.btn-change-photo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: border-color .18s, color .18s;
}

.btn-change-photo:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ---- Edit Profile form card ---- */
.profile-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 24px;
}

/* Field labels */
.pf-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

/* Text inputs */
.pf-input {
    width: 100%;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    outline: none;
    transition: border-color .18s;
}

.pf-input:focus {
    border-color: var(--primary);
}

.pf-input::placeholder {
    color: var(--gray-400);
}

/* Select input */
.pf-select-wrap {
    position: relative;
}

.pf-select-wrap .bi-chevron-down {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
    font-size: 13px;
}

.pf-select {
    width: 100%;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 11px 36px 11px 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: border-color .18s;
}

.pf-select:focus {
    border-color: var(--primary);
}

/* Gender radio row */
.pf-radio-group {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 0 2px;
}

.pf-radio-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
}

.pf-radio-label input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* Form action row */
.pf-action-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 12px;
}

.btn-pf-cancel {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    padding: 10px 20px;
    transition: color .18s;
}

.btn-pf-cancel:hover {
    color: var(--gray-900);
}

.btn-pf-save {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .18s;
}

.btn-pf-save:hover {
    background: var(--primary-dark);
}

/* =============================================
   BOTTOM ROW — Profile Strength + KYC
   ============================================= */
.profile-bottom-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-left: 32px;
    margin-right: 28px;
}

/* Profile Strength green banner */
.profile-strength-banner {
    flex: 1;
    min-width: 260px;
    background: #16a34a;
    border-radius: var(--radius-md);
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.profile-strength-banner::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    top: -50px;
    right: -30px;
    pointer-events: none;
}

.psb-left {
    flex: 1;
    position: relative;
}

.psb-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.psb-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-complete-now {
    background: var(--white);
    color: var(--gray-800);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: opacity .18s;
}

.btn-complete-now:hover {
    opacity: 0.88;
}

/* Circular progress ring (white on green) */
.psb-ring-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    flex-shrink: 0;
}

.psb-ring-wrap svg {
    transform: rotate(-90deg);
}

.psb-ring-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 7;
}

.psb-ring-fill {
    fill: none;
    stroke: var(--white);
    stroke-width: 7;
    stroke-linecap: round;
    stroke-dasharray: 226;
    stroke-dashoffset: 34; /* 85% = 226 * 0.15 ≈ 34 */
    transition: stroke-dashoffset .6s ease;
}

.psb-ring-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: var(--white);
}

/* KYC card */
.kyc-card {
    width: 230px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.kyc-icon-wrap {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 4px;
}

.kyc-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-900);
}

.kyc-sub {
    font-size: 12.5px;
    color: var(--text-sub);
    line-height: 1.55;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
    .profile-sidebar {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 20px 0 12px;
    }

    .profile-main {
        padding: 20px 16px;
    }

    .profile-bottom-row {
        margin-left: 16px;
        margin-right: 16px;
        flex-direction: column;
    }

    .kyc-card {
        width: 100%;
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .profile-user-header {
        flex-wrap: wrap;
        gap: 16px;
    }

    .profile-form-card {
        padding: 20px 16px;
    }

    .pf-action-row {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .btn-pf-save, .btn-pf-cancel {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .profile-page-body {
        padding-bottom: 48px;
    }

    .profile-main {
        padding: 16px 12px;
    }

    .profile-strength-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .psb-ring-wrap {
        display: none;
    }
}

/* ==============================================
   PROFILE PAGE — Offcanvas overrides
   ============================================== */

/* Trigger bar shown on mobile/tablet */
.profile-account-trigger {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    cursor: pointer;
}

.profile-account-trigger-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-account-trigger-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}

.profile-account-trigger-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
}

.profile-account-trigger-sub {
    font-size: 12px;
    color: var(--text-sub);
}

.profile-trigger-chevron {
    font-size: 18px;
    color: var(--gray-400);
}

@media (max-width: 991.98px) {
    .profile-account-trigger {
        display: flex;
    }

    /* Hide the static sidebar on mobile — use offcanvas instead */
    .profile-sidebar-static {
        display: none;
    }
}

/* Offcanvas customisation */
.profile-offcanvas .offcanvas-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 20px 16px;
}

.profile-offcanvas .offcanvas-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.profile-offcanvas .offcanvas-title-sub {
    font-size: 12.5px;
    color: var(--text-sub);
    font-weight: 400;
    margin-top: 2px;
}

.profile-offcanvas .offcanvas-body {
    padding: 10px 0 20px;
    background: var(--white);
}

.profile-offcanvas .btn-close {
    filter: none;
    opacity: 0.5;
}

/* Active state within offcanvas mirrors static sidebar */
.profile-offcanvas .profile-nav-item.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    border-left-color: var(--primary);
}

/* ==============================================
   RESUME PAGE
   ============================================== */

.resume-page-body {
    background: var(--gray-50);
    padding: 0 0 60px;
    min-height: calc(100vh - 58px - 64px);
}

.resume-main {
    padding: 28px 32px 28px 32px;
}

/* Section header */
.resume-section-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.resume-section-icon {
    width: 34px;
    height: 34px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.resume-section-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.resume-section-sub {
    font-size: 13px;
    color: var(--text-sub);
}

/* Upload drop zone */
.resume-dropzone {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md);
    background: var(--white);
    padding: 52px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    cursor: pointer;
    transition: border-color .18s, background .18s;
    margin-bottom: 24px;
}

.resume-dropzone:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.resume-dropzone-icon {
    width: 64px;
    height: 64px;
    background: #fde8d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #c2540a;
    margin-bottom: 10px;
}

.resume-dropzone-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-800);
}

.resume-dropzone-hint {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.btn-choose-file {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    transition: background .18s;
}

.btn-choose-file:hover {
    background: var(--primary-dark);
}

/* Current Resume label */
.current-resume-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

/* Resume file row */
.resume-file-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
}

.resume-file-icon {
    width: 42px;
    height: 42px;
    background: #fde8d8;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #c2540a;
    flex-shrink: 0;
}

.resume-file-info {
    flex: 1;
    min-width: 0;
}

.resume-file-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.resume-file-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.resume-file-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--gray-400);
}

.resume-file-meta-item .bi {
    font-size: 12px;
}

.resume-file-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.resume-action-link {
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .18s;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    padding: 0;
}

.resume-action-link:hover {
    opacity: 0.72;
}

.resume-action-view {
    color: var(--primary);
}

.resume-action-download {
    color: var(--primary);
}

.resume-action-delete {
    color: #dc2626;
}

/* Responsive */
@media (max-width: 991.98px) {
    .resume-main {
        padding: 20px 16px;
    }
}

@media (max-width: 575.98px) {
    .resume-file-row {
        flex-wrap: wrap;
    }

    .resume-file-actions {
        width: 100%;
        justify-content: flex-end;
        gap: 14px;
    }
}


/* ==============================================
   PREFERENCES PAGE
   ============================================== */

.prefs-page-body {
    background: var(--gray-50);
    padding: 0 0 60px;
    min-height: calc(100vh - 58px - 64px);
}

.prefs-main {
    padding: 28px 32px 28px 32px;
}

/* Each preference section */
.prefs-section {
    margin-bottom: 36px;
}

.prefs-section-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.prefs-section-sub {
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 14px;
}

/* Pill toggle buttons (Job Type, Shift, Relocate) */
.prefs-pill-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.prefs-pill {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    transition: all .18s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.prefs-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.prefs-pill.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Category chips */
.prefs-chip-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.prefs-chip {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    transition: all .18s;
}

.prefs-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.prefs-chip.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Salary range inputs */
.prefs-salary-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.prefs-salary-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    background: var(--white);
    transition: border-color .18s;
    min-width: 0;
    flex: 0 0 auto;
    width: 140px;
}

.prefs-salary-input-wrap:focus-within {
    border-color: var(--primary);
}

.prefs-salary-symbol {
    font-size: 14px;
    color: var(--gray-500);
    flex-shrink: 0;
}

.prefs-salary-input {
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    width: 100%;
    min-width: 0;
}

.prefs-salary-to {
    font-size: 13.5px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Location dropdown */
.prefs-location-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    background: var(--white);
    cursor: pointer;
    transition: border-color .18s;
    max-width: 300px;
    margin-bottom: 14px;
}

.prefs-location-dropdown:hover {
    border-color: var(--primary);
}

.prefs-location-dropdown span {
    flex: 1;
    font-size: 13.5px;
    color: var(--gray-500);
}

.prefs-location-dropdown .bi-chevron-down {
    font-size: 13px;
    color: var(--gray-400);
}

.prefs-location-dropdown .bi-geo-alt {
    font-size: 14px;
    color: var(--gray-400);
}

/* City tag chips */
.prefs-city-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.prefs-city-chip {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-full);
    padding: 5px 14px;
    background: var(--white);
    cursor: default;
}

/* Experience level grid */
.prefs-exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 560px;
}

.prefs-exp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    cursor: pointer;
    transition: all .18s;
    background: var(--white);
    font-family: 'Inter', sans-serif;
}

.prefs-exp-item:hover {
    border-color: var(--primary);
}

.prefs-exp-item.active {
    border-color: var(--primary);
    background: var(--primary-light);
}

.prefs-exp-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .18s;
}

.prefs-exp-item.active .prefs-exp-radio {
    border-color: var(--primary);
    background: var(--white);
}

.prefs-exp-radio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    display: none;
}

.prefs-exp-item.active .prefs-exp-radio-dot {
    display: block;
}

.prefs-exp-label {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--gray-700);
}

.prefs-exp-item.active .prefs-exp-label {
    color: var(--primary);
    font-weight: 600;
}

/* Save button */
.prefs-save-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.btn-save-prefs {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 13px 36px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .18s;
}

.btn-save-prefs:hover {
    background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 991.98px) {
    .prefs-main {
        padding: 20px 16px;
    }

    .resume-main {
        padding: 20px 16px;
    }
}

@media (max-width: 575.98px) {
    .prefs-page-body {
        padding-bottom: 48px;
    }

    .prefs-exp-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .prefs-salary-row {
        flex-wrap: wrap;
    }

    .prefs-salary-input-wrap {
        width: 100%;
    }

    .btn-save-prefs {
        width: 100%;
        justify-content: center;
    }

    .prefs-save-row {
        justify-content: stretch;
    }
}

/* ==============================================
   NOTIFICATIONS OFFCANVAS / POPUP
   ============================================== */

/* Trigger button */
.btn-notif-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background .18s;
    position: relative;
    width: 36px;
    height: 36px;
    background: none;
    border-radius: 50%;
    font-size: 18px;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    border: 1px solid var(--gray-600);
}

.btn-notif-trigger:hover {
    background: var(--gray-100);
}

.btn-notif-trigger .notif-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: #ef4444;
    color: var(--white);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

/* Offcanvas shell — mobile phone frame width */
#notificationsOffcanvas {
    width: 420px;
    max-width: 100vw;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Header */
.notif-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 14px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    flex-shrink: 0;
}

.notif-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notif-back-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.notif-header-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray-900);
}

.notif-mark-all {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
    transition: opacity .18s;
}

.notif-mark-all:hover {
    opacity: 0.72;
}

/* Scrollable list body */
.notif-list-body {
    overflow-y: auto;
    flex: 1;
    background: var(--white);
}

/* Single notification row */
.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    position: relative;
    cursor: pointer;
    transition: background .15s;
}

.notif-item:last-child {
    border-bottom: none;
}

.notif-item.unread {
    background: #eef6fb;
}

.notif-item:hover {
    background: var(--gray-50);
}

.notif-item.unread:hover {
    background: #deeef8;
}

/* Icon circle */
.notif-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--white);
}

.notif-icon-green {
    background: #16a34a;
}

.notif-icon-teal {
    background: #0d9488;
}

.notif-icon-navy {
    background: var(--primary);
}

/* Content */
.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    line-height: 1.3;
}

.notif-body {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.55;
    margin-bottom: 6px;
}

.notif-time {
    font-size: 12px;
    color: var(--gray-400);
}

/* Unread blue dot */
.notif-dot {
    width: 9px;
    height: 9px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

/* ---- Responsive ---- */
@media (max-width: 575.98px) {
    #notificationsOffcanvas {
        width: 100vw;
    }
}

.range-slider {
    position: relative;
    height: 40px;
    margin-top: 10px;
}

.range-slider .rs-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 6px;
    border-radius: 4px;
    background: var(--gray-200, #e5e7eb);
}

.range-slider .rs-fill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    border-radius: 4px;
    background: var(--primary);
}

.range-slider input[type="range"] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    pointer-events: all;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary);
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.range-slider input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary);
    cursor: pointer;
}

/* min thumb-ah maela vechikradhu, overlap aanaalum drag panna mudiyum */
#salMin {
    z-index: 3;
}

/* ══ BGV Badge on Profile ══ */
.profile-bgv-badge {
    margin-top: 18px;
    width: 100%;
}

.bgv-badge-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1.5px solid #86efac;
    border-radius: 14px;
    padding: 14px 18px;
    position: relative;
    overflow: hidden;
}

/* Subtle shimmer line */
.bgv-badge-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #16a34a, #4ade80, #16a34a);
    border-radius: 14px 14px 0 0;
}

.bgv-badge-icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid #bbf7d0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(22,163,74,.15);
}

.bgv-badge-icon-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 8px;
}

.bgv-badge-icon-emoji {
    font-size: 1.6rem;
    line-height: 1;
}

.bgv-badge-info {
    flex: 1;
    min-width: 0;
}

.bgv-badge-top {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.bgv-shield-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #16a34a;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .03em;
    white-space: nowrap;
}

.bgv-badge-name {
    font-size: .88rem;
    font-weight: 700;
    color: #15803d;
}

.bgv-badge-desc {
    font-size: .75rem;
    color: #4b7c5a;
    line-height: 1.5;
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .bgv-badge-inner {
        padding: 12px 14px;
        gap: 10px;
    }
    .bgv-badge-icon-wrap {
        width: 44px;
        height: 44px;
    }
    .bgv-badge-icon-img {
        width: 32px;
        height: 32px;
    }
    .bgv-badge-name {
        font-size: .82rem;
    }
    .bgv-badge-desc {
        font-size: .7rem;
    }
}

/* ── Dual Range Slider ── */
.salary-range-wrap {
    margin-bottom: 8px;
}
.salary-range-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    background: var(--gray-50, #f9fafb);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 6px 10px;
}
.salary-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 6px;
}
.dual-slider-wrap {
    position: relative;
    height: 28px;
    display: flex !important;
    align-items: center;
}
.dual-slider-track {
    position: absolute;
    left: 0; right: 0;
    height: 4px;
    border-radius: 99px;
    background: var(--gray-200, #e5e7eb);
    pointer-events: none;
    z-index: 0;
}
.dual-thumb {
    position: absolute;
    width: 100%;
    height: 4px;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    pointer-events: none;
    outline: none;
    border: none;
}
.dual-thumb::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange, #f97316);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 3;
    transition: transform .15s;
}
.dual-thumb::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
.dual-thumb::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange, #f97316);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
    cursor: pointer;
    pointer-events: all;
}
.thumb-min { z-index: 2; }

/* =============================================
   PROFILE: Education / Employment / Qualification
   ============================================= */
.profile-section-heading {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900);
}

.btn-add-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: 7px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s;
}

.btn-add-pill:hover {
    background: var(--primary-dark);
}

.profile-entry-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1.5px solid var(--gray-200, #e5e7eb);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 10px;
    background: var(--white);
}

.profile-entry-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.profile-entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: var(--text-sub, #6b7280);
}

.profile-entry-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.profile-entry-delete {
    background: none;
    border: none;
    color: #dc2626;
    font-size: 17px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    transition: background .18s;
}

.profile-entry-delete:hover {
    background: #fef2f2;
}

.profile-empty-hint {
    font-size: 13px;
    color: var(--text-sub, #6b7280);
    padding: 14px 0;
}

/* Qualification sections */
.qual-section {
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
}

.qual-section:last-of-type {
    border-bottom: none;
}

.qual-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.qual-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-900);
}

.qual-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.qual-chip-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.qual-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    background: #eef4fb;
    color: var(--primary);
}

.qual-chip-remove {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    display: none;
}

.qual-section.editing .qual-chip-remove {
    display: inline-flex;
}

.qual-tag-input-row {
    display: none;
    gap: 8px;
    margin-top: 12px;
}

.qual-section.editing .qual-tag-input-row {
    display: flex;
}

.qual-tag-input {
    flex: 1;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 9px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
}

.qual-tag-input:focus {
    border-color: var(--primary);
}

.qual-empty {
    font-size: 13px;
    color: var(--text-sub, #6b7280);
}
.thumb-max { z-index: 2; }