/* =============================================
   Rozgar Dunia Portal - Main Stylesheet
   ============================================= */

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    font-size: 14px;
}

a { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; }
ul { list-style: none; }

/* ---- HEADER ---- */
.header {
    background: linear-gradient(135deg, #1a3c6e 0%, #0d6efd 100%);
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 65px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo span { color: #ffd700; }

.navbar ul {
    display: flex;
    gap: 5px;
    align-items: center;
}

/* asp:Panel renders as <div> inside <ul> — make it invisible to layout */
.navbar ul > div {
    display: contents;
}

.navbar ul li a {
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    background: rgba(255,255,255,0.2);
}

.btn-login {
    background: #fff !important;
    color: #1a3c6e !important;
    font-weight: 600 !important;
}

.btn-register {
    background: #ffd700 !important;
    color: #1a3c6e !important;
    font-weight: 600 !important;
}

/* ---- HERO SECTION ---- */
.hero {
    background: linear-gradient(135deg, #0d2b5e 0%, #1565C0 60%, #1e88e5 100%);
    color: #fff;
    padding: 90px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,215,0,0.06);
    border-radius: 50%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.4);
    color: #ffd700;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero h1 span { color: #ffd700; }

.hero > p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Search Box */
.search-box {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    max-width: 900px;
    margin: 0 auto 28px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    position: relative;
    z-index: 1;
}

.search-field {
    flex: 1;
    min-width: 180px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    font-size: 15px;
    pointer-events: none;
}

.search-field input {
    width: 100%;
    padding: 12px 12px 12px 36px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
}

.search-box select {
    flex: 1;
    min-width: 160px;
    padding: 12px 14px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    background: #fff;
}

.search-field input:focus,
.search-box select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
}

.btn-search {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-search:hover {
    background: linear-gradient(135deg, #0b5ed7, #084298);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13,110,253,0.4);
}

.hero-tags {
    font-size: 13px;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.hero-tags span {
    margin-right: 8px;
    font-weight: 500;
    opacity: 0.7;
}

.hero-tags a {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 4px 14px;
    border-radius: 20px;
    margin: 3px 4px;
    font-size: 12px;
    transition: background 0.2s;
}

.hero-tags a:hover {
    background: rgba(255,255,255,0.25);
}

/* ---- STATS BAR ---- */
.stats-bar {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stats-bar .stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.stat-item {
    flex: 1;
    padding: 0 20px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e9ecef;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
}

.stat-item p { color: #666; font-size: 13px; margin-top: 4px; }

/* ---- MAIN CONTENT ---- */
.main-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

/* ---- SECTION TITLE ---- */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    background: #e8f0fe;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 6px;
}

.section-title p { color: #666; font-size: 15px; margin-top: 5px; }

.section-title .title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #1565C0);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ---- JOB CARD ---- */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.job-card {
    background: #fff;
    border-radius: 10px;
    padding: 22px;
    border: 1px solid #e9ecef;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #0d6efd;
}

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

.company-logo {
    width: 50px;
    height: 50px;
    background: #e8f0fe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #0d6efd;
}

.job-type-badge {
    background: #e8f0fe;
    color: #0d6efd;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.job-type-badge.part     { background: #fff3cd; color: #856404; }
.job-type-badge.freelance { background: #d1e7dd; color: #155724; }

.job-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a3c6e;
    margin-bottom: 4px;
}

.job-card .company-name {
    color: #0d6efd;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.job-meta span {
    color: #555;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-meta span::before { content: '•'; color: #0d6efd; font-weight: bold; }

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: 5px;
}

.salary     { font-weight: 600; color: #198754; font-size: 14px; }
.posted-date { color: #aaa; font-size: 12px; }

.btn-apply {
    background: #0d6efd;
    color: #fff;
    padding: 7px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-apply:hover { background: #0b5ed7; }

/* ---- CATEGORIES ---- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.category-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 26px 15px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #1e88e5);
    transform: scaleX(0);
    transition: transform 0.25s;
}

.category-card:hover {
    background: linear-gradient(135deg, #0d6efd, #1565C0);
    color: #fff;
    border-color: #0d6efd;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13,110,253,0.3);
}

.category-card:hover::before { transform: scaleX(0); }
.category-card:hover .cat-count { background: rgba(255,255,255,0.2); color: #fff; }

.category-card .cat-icon { font-size: 32px; margin-bottom: 10px; display: block; }
.category-card p { font-size: 13px; font-weight: 600; margin-bottom: 6px; }

.cat-count {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    background: #e8f0fe;
    color: #0d6efd;
    padding: 2px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

/* ---- VIEW ALL BUTTON ---- */
.view-all-wrap {
    text-align: center;
    margin: 20px 0 40px;
}

.btn-view-all {
    display: inline-block;
    padding: 13px 40px;
    background: transparent;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-view-all:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,110,253,0.3);
}

/* ---- HOW IT WORKS ---- */
.how-it-works-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    padding: 70px 20px;
    margin-top: 0;
}

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 28px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    box-shadow: 0 5px 25px rgba(13,110,253,0.08);
    border: 1px solid #dce8fd;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(13,110,253,0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0d6efd, #1565C0);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.step-icon {
    font-size: 40px;
    margin: 10px 0 14px;
}

.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.step-arrow {
    font-size: 30px;
    color: #0d6efd;
    opacity: 0.4;
    font-weight: 300;
    padding: 0 5px;
    flex-shrink: 0;
}

/* ---- WHY CHOOSE US ---- */
.why-section {
    padding: 70px 20px;
    background: #fff;
    max-width: 100%;
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 22px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 30px 24px;
    border: 1px solid #e9ecef;
    transition: all 0.25s;
}

.feature-card:hover {
    background: #fff;
    border-color: #0d6efd;
    box-shadow: 0 10px 35px rgba(13,110,253,0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* ---- TOP COMPANIES ---- */
.companies-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
}

.companies-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.company-pill {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #1a3c6e;
    cursor: default;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.company-pill:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13,110,253,0.25);
}

/* ---- EMPLOYER CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, #1a3c6e 0%, #0d6efd 100%);
    padding: 70px 20px;
    color: #fff;
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 20px;
    max-width: 500px;
    line-height: 1.6;
}

.cta-perks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-perks span {
    font-size: 13px;
    font-weight: 600;
    background: rgba(255,255,255,0.12);
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-action {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
    align-items: center;
}

.btn-cta-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: #ffd700;
    color: #1a3c6e;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-cta-primary:hover {
    background: #ffe033;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-cta-secondary {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.2s;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}

/* ---- FORMS ---- */
.form-page {
    max-width: 550px;
    margin: 40px auto;
    padding: 0 20px;
}

.form-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.form-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 5px;
    text-align: center;
}

.form-card .form-subtitle {
    color: #888;
    font-size: 13px;
    text-align: center;
    margin-bottom: 25px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #dee2e6;
    border-radius: 7px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-primary-full {
    width: 100%;
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
    margin-top: 10px;
}

.btn-primary-full:hover { background: #0b5ed7; }

.form-link {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}

.form-link a { color: #0d6efd; font-weight: 500; }

/* ---- CONTACT MAP ---- */
.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

/* ---- ALERT MESSAGES ---- */
.msg-success {
    background: #d1e7dd;
    color: #0f5132;
    padding: 12px 16px;
    border-radius: 7px;
    margin-bottom: 15px;
    font-size: 13px;
    border: 1px solid #badbcc;
}

.msg-error {
    background: #f8d7da;
    color: #842029;
    padding: 12px 16px;
    border-radius: 7px;
    margin-bottom: 15px;
    font-size: 13px;
    border: 1px solid #f5c2c7;
}

/* ---- PAGE HEADER ---- */
.page-header {
    background: linear-gradient(135deg, #1a3c6e 0%, #0d6efd 100%);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.page-header h1 { font-size: 30px; font-weight: 700; }
.page-header p  { opacity: 0.85; margin-top: 5px; }

/* ---- LEGAL / POLICY PAGES ---- */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    border: 1px solid #e9ecef;
}

.legal-content .legal-updated {
    color: #666;
    font-size: 13px;
    margin-bottom: 25px;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a3c6e;
    margin: 28px 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
    color: #555;
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 0 0 14px 20px;
    color: #555;
    line-height: 1.75;
    font-size: 15px;
}

.legal-content ul li { margin-bottom: 6px; }

.legal-content a { color: #0d6efd; text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

.legal-content strong { color: #1a3c6e; }

/* ---- JOBS LIST PAGE ---- */
.jobs-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.filter-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 22px;
    border: 1px solid #e9ecef;
    height: fit-content;
    position: sticky;
    top: 85px;
}

.filter-sidebar h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0d6efd;
}

.filter-group { margin-bottom: 18px; }

.filter-group label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    display: block;
    margin-bottom: 6px;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
}

.btn-filter {
    width: 100%;
    background: #1a3c6e;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: background 0.2s;
}

.btn-filter:hover { background: #0d6efd; }

/* ---- JOB DETAIL PAGE ---- */
.job-detail-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 25px;
}

.job-detail-main {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #e9ecef;
}

.job-detail-main h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 5px;
}

.detail-company {
    color: #0d6efd;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 15px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-meta-item { font-size: 13px; color: #555; }
.detail-meta-item strong { display: block; color: #1a3c6e; font-size: 14px; }

.detail-section { margin-bottom: 25px; }

.detail-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.detail-section p { line-height: 1.7; color: #555; }

.job-detail-sidebar { height: fit-content; }

.apply-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e9ecef;
    margin-bottom: 20px;
    text-align: center;
}

.apply-card h4 { font-size: 17px; font-weight: 700; color: #1a3c6e; margin-bottom: 5px; }
.apply-card p  { color: #888; font-size: 13px; margin-bottom: 20px; }

.btn-apply-big {
    width: 100%;
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
}

.btn-apply-big:hover { background: #0b5ed7; }

.company-info-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.company-info-card h4 { font-size: 15px; font-weight: 700; color: #1a3c6e; margin-bottom: 12px; }
.company-info-card p  { font-size: 13px; color: #555; margin-bottom: 6px; }

/* ---- DASHBOARD ---- */
.dashboard-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 25px;
}

.dash-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e9ecef;
    height: fit-content;
    position: sticky;
    top: 85px;
}

.dash-user-info {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 15px;
}

.dash-avatar {
    width: 70px;
    height: 70px;
    background: #e8f0fe;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #0d6efd;
}

.dash-user-info h3 { font-size: 16px; font-weight: 700; color: #1a3c6e; }
.dash-user-info p  { font-size: 12px; color: #888; }

.dash-nav a {
    display: block;
    padding: 10px 15px;
    border-radius: 7px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px;
    transition: all 0.15s;
}

.dash-nav a:hover,
.dash-nav a.active { background: #e8f0fe; color: #0d6efd; }

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.stat-card h3 { font-size: 28px; font-weight: 700; color: #0d6efd; }
.stat-card p  { font-size: 13px; color: #666; margin-top: 3px; }

.dash-section {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.dash-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

/* GridView Table */
.grid-table { width: 100%; border-collapse: collapse; font-size: 13px; }

.grid-table th {
    background: #1a3c6e;
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
}

.grid-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

.grid-table tr:hover td { background: #f8f9fa; }

.badge-pending     { background:#fff3cd; color:#856404; padding:3px 10px; border-radius:20px; font-size:11px; font-weight:600; }
.badge-shortlisted { background:#d1e7dd; color:#155724; padding:3px 10px; border-radius:20px; font-size:11px; font-weight:600; }
.badge-rejected    { background:#f8d7da; color:#842029; padding:3px 10px; border-radius:20px; font-size:11px; font-weight:600; }

/* ---- FOOTER ---- */
.footer {
    background: #1a3c6e;
    color: #ccc;
    padding: 40px 20px 20px;
    margin-top: 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand .logo { font-size: 22px; display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: #aaa; }

.footer-col h5 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: #aaa; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: #ffd700; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .hero h1                  { font-size: 28px; }
    .hero-badge               { font-size: 11px; }
    .jobs-layout              { grid-template-columns: 1fr; }
    .job-detail-layout        { grid-template-columns: 1fr; }
    .dashboard-layout         { grid-template-columns: 1fr; }
    .footer-inner             { grid-template-columns: 1fr 1fr; }
    .form-row                 { grid-template-columns: 1fr; }
    .stats-bar .stats-inner   { gap: 0; flex-wrap: wrap; }
    .stat-item                { min-width: 45%; padding: 10px; }
    .stat-divider             { display: none; }
    .header-inner             { flex-wrap: wrap; height: auto; padding: 10px 20px; }
    .dash-stats               { grid-template-columns: 1fr; }
    .step-arrow               { display: none; }
    .steps-grid               { flex-direction: column; align-items: center; }
    .step-card                { max-width: 100%; width: 100%; }
    .cta-inner                { flex-direction: column; text-align: center; }
    .cta-content h2           { font-size: 24px; }
    .cta-perks                { justify-content: center; }
    .cta-action               { width: 100%; }
    .features-grid            { grid-template-columns: 1fr; }
    .hero-tags                { font-size: 12px; }
}
