:root{
    --bg: #ffffff;
    --card-border: #e6e6e6;
    --primary: #2563eb;
    --accent: #0d6efd;
    --primary-strong: #0f172a;
    --success: #28a745;
    --danger: #dc3545;
    --muted: #64748b;
    --muted-2: #475569;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-strong: 0 6px 18px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --gap: 20px;
}

/* GRID LAYOUT */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--gap);
    margin-top: 20px;
}

/* CARD */
.job-card {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 18px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-left: 6px solid var(--card-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

/* STATUS COLORS */
.job-card.success { border-left-color: var(--success); }
.job-card.danger { border-left-color: var(--danger); }
.job-card.expired { border-left-color: #6b7280; }

/* HEADER */
.job-number {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* NOTE: duplicate `.job-title` removed here; consolidated further down. */

/* TEXT */
.job-info {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.job-info strong {
    color: #111;
}

/* STATUS BADGES */
.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
}

.status-success {
    background: #28a745;
}

.status-danger {
    background: #dc3545;
}

.status-expired {
    background: #6c757d;
}

/* BUTTON */
.delete-btn {
    margin-top: auto;
    width: fit-content;
    border-radius: 6px;
    padding: 8px 14px;
}
.action-buttons{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:15px;
    flex-wrap:wrap;
}

.action-buttons form{
    margin:0;
}

.action-buttons .btn{
    min-width:120px;
}
.application-guide{
    background:#ffffff;
    border-radius:12px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 2px 12px rgba(0,0,0,0.08);
    border-left:6px solid #0d6efd;
}

.application-guide h3{
    margin-top:0;
    color:#0d6efd;
    font-weight:700;
    margin-bottom:18px;
}

.application-steps{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.application-steps li{
    padding:12px 15px;
    margin-bottom:10px;
    background:#f8f9fa;
    border-radius:8px;
    font-size:15px;
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.step-number{
    min-width:28px;
    height:28px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    font-weight:bold;
    text-align:center;
    line-height:28px;
    font-size:14px;
}

.application-warning{
    background:#fff3cd;
    color:#856404;
    border:1px solid #ffe69c;
    border-radius:8px;
    padding:15px;
    margin-top:20px;
    font-size:14px;
}

.application-warning strong{
    color:#664d03;
}

.application-tip{
    margin-top:15px;
    color:#555;
    font-size:14px;
}

/* MOBILE */
@media (max-width: 768px) {

    .job-grid {
        grid-template-columns: 1fr;
    }

    .job-title {
        font-size: 18px;
    }
}
/* PAGE */
.progress-wrapper{
    padding:20px 0;
}

/* HEADER */
.page-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:5px;
    color:#0f172a;
}

.page-subtitle{
    color:#64748b;
    margin-bottom:30px;
}

/* GRID */
.progress-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(380px,1fr));
    gap:25px;
}

/* CARD */
.progress-card{
    background:#fff;
    border-radius:14px;
    padding:22px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    border-left:6px solid #ddd;
    transition:0.3s ease;
}

.progress-card:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

/* STATUS COLORS */
.card-submitted{
    border-left-color:#16a34a;
}

.card-shortlisted{
    border-left-color:#2563eb;
}

.card-interview{
    border-left-color:#d97706;
}

.card-appointed{
    border-left-color:#9333ea;
}

.card-expired{
    border-left-color:#6b7280;
}

.card-cancelled{
    border-left-color:#dc2626;
}

/* TITLE */
.job-title{
    font-size:22px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
    line-height:1.4;
}

.job-code{
    color:#2563eb;
}

/* DETAILS */
.info-row{
    margin-bottom:12px;
    color:#334155;
    font-size:15px;
}

.info-row strong{
    color:#111827;
}

/* BADGES */
.status-badge{
    display:inline-block;
    padding:7px 14px;
    border-radius:30px;
    color:#fff;
    font-size:13px;
    font-weight:700;
}

.badge-submitted{
    background:#16a34a;
}

.badge-shortlisted{
    background:#2563eb;
}

.badge-interview{
    background:#d97706;
}

.badge-appointed{
    background:#9333ea;
}

.badge-expired{
    background:#6b7280;
}

.badge-danger{
    background:#dc2626;
}

.badge-warning{
    background:#f59e0b;
}

/* MESSAGE BOX */
.status-message{
    margin-top:18px;
    padding:14px;
    border-radius:10px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    color:#334155;
    font-size:14px;
}

/* INTERVIEW BOX */
.interview-box{
    margin-top:18px;
    padding:15px;
    border-radius:10px;
    background:#eff6ff;
    border:1px solid #bfdbfe;
}

.interview-box h5{
    margin-top:0;
    color:#1d4ed8;
    font-weight:700;
}

/* EMPTY */
.empty-box{
    background:#fff;
    padding:40px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* MOBILE */
@media(max-width:768px){

    .progress-grid{
        grid-template-columns:1fr;
    }

    .job-title{
        font-size:18px;
    }
}
.faq-section{
    margin-top:40px;
}

/* TITLE */
.faq-title{
    text-align:center;
    font-size:30px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:30px;
    text-transform:uppercase;
}

/* GRID */
.faq-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:20px;
}

/* CARD */
.faq-card{
    background:#fff;
    border-radius:14px;
    padding:22px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    transition:0.3s ease;
    border-top:5px solid #2563eb;
    height:100%;
}

.faq-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 18px rgba(0,0,0,0.12);
}

/* FAQ NUMBER */
.faq-number{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:18px;
}

/* QUESTION */
.faq-question{
    font-size:19px;
    font-weight:700;
    color:#dc2626;
    margin-bottom:15px;
    line-height:1.5;
}


.faq-answer{
    color:#475569;
    font-size:15px;
    line-height:1.8;
}

/* LABELS */
.faq-label{
    color:#0f172a;
    font-weight:700;
}

@media(max-width:768px){

    .faq-grid{
        grid-template-columns:1fr;
    }

    .faq-title{
        font-size:24px;
    }

    .faq-question{
        font-size:17px;
    }
}

/* SECTION */
.board-section{
    padding:50px 0;
}

/* HEADER */
.board-header{
    text-align:center;
    margin-bottom:40px;
}

.board-header h2{
    font-size:36px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
}

.board-header p{
    color:#64748b;
    font-size:16px;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

/* GRID */
.board-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

/* CARD */
.board-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 3px 14px rgba(0,0,0,0.08);
    transition:0.3s ease;
    position:relative;
}

.board-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 24px rgba(0,0,0,0.14);
}

/* IMAGE */
.board-image{
    width:100%;
    height:320px;
    object-fit:cover;
    background:#f1f5f9;
}

/* BODY */
.board-body{
    padding:22px;
    text-align:center;
}

/* NAME */
.board-name{
    font-size:22px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:8px;
}

/* DESIGNATION */
.board-designation{
    color:#2563eb;
    font-size:15px;
    font-weight:600;
    margin-bottom:15px;
}

/* DIVIDER */
.board-divider{
    width:60px;
    height:4px;
    background:#2563eb;
    margin:0 auto 18px;
    border-radius:30px;
}

/* DESCRIPTION */
.board-description{
    color:#64748b;
    line-height:1.8;
    font-size:14px;
}

/* SPECIAL TAG */
.board-tag{
    position:absolute;
    top:15px;
    right:15px;
    background:#2563eb;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

/* MOBILE */
@media(max-width:768px){

    .board-header h2{
        font-size:28px;
    }

    .board-grid{
        grid-template-columns:1fr;
    }

    .board-image{
        height:280px;
    }
}
/* =========================================
SECTION
========================================= */

.about-wrapper{
    padding:50px 0;
}

/* =========================================
HEADER
========================================= */

.about-header{
    text-align:center;
    margin-bottom:45px;
}

.about-header h2{
    font-size:38px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:12px;
}

.about-header p{
    max-width:850px;
    margin:auto;
    color:#64748b;
    font-size:16px;
    line-height:1.8;
}

/* =========================================
GRID
========================================= */

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(540px,1fr));
    gap:25px;
}

/* =========================================
CARD
========================================= */

.about-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    border:1px solid #e5e7eb;
    transition:0.3s ease;
}

.about-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,0.12);
}

/* =========================================
TITLE
========================================= */

.about-card h3{
    font-size:26px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:18px;
    position:relative;
    padding-bottom:12px;
    text-transform:capitalize;
}

.about-card h3:after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:4px;
    background:#2563eb;
    border-radius:50px;
}

/* =========================================
TEXT
========================================= */

.about-card p{
    color:#475569;
    font-size:15px;
    line-height:2;
    margin:0;
}

/* =========================================
LISTS
========================================= */

.about-card ul{
    padding-left:20px;
    margin-top:10px;
}

.about-card li{
    margin-bottom:10px;
    line-height:1.8;
    color:#475569;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:768px){

    .about-header h2{
        font-size:30px;
    }

    .about-card{
        padding:22px;
    }

    .about-card h3{
        font-size:22px;
    }
}

/* Accessibility & Utilities */
.btn, button, .delete-btn, .action-buttons .btn {
    cursor: pointer;
}

:where(.btn, button, a):focus-visible {
    outline: 3px solid rgba(37,99,235,0.25);
    outline-offset: 2px;
    border-radius: 6px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Performance-friendly shadow variant */
.no-shadow {
    box-shadow: none !important;
}
