.hero {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    overflow: hidden;


    background:
        linear-gradient(135deg,
            rgba(0, 20, 60, 0.82) 0%,
            rgba(0, 74, 153, 0.72) 60%,
            rgba(0, 97, 194, 0.65) 100%),
        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80') center / cover no-repeat;
}


.hero-h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}

.hero-h6 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}


@media (max-width: 767px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 80px 0 60px;
    }
}


/* ── JOBS – scoped under .job-section ───────────────
   Requires: Bootstrap Icons, Manrope + Source Sans 3
   and your existing :root CSS variables.
   ─────────────────────────────────────────────────── */

.job-section {
    padding: 88px 0;
    background: var(--bg);
}

/* ── Header ──────────────────────────────────────── */
.job-section .job-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.job-section .job-all-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Manrope', sans-serif;
    font-size: .84rem;
    font-weight: 700;
    color: var(--blue);
    border: 2px solid var(--blue);
    border-radius: 8px;
    padding: 9px 20px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.job-section .job-all-link:hover {
    background: var(--blue);
    color: #fff;
}

/* ── Grid: 2 columns ─────────────────────────────── */
.job-section .job-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ── Card ────────────────────────────────────────── */
.job-section .job-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

/* Top accent line on hover */
.job-section .job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.job-section .job-card:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.job-section .job-card:hover::before {
    transform: scaleX(1);
}

/* ── Card top row ────────────────────────────────── */
.job-section .job-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 12px;
}

/* Job icon */
.job-section .job-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background .25s, color .25s;
}

.job-section .job-icon-wrap i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.job-section .job-card:hover .job-icon-wrap {
    background: var(--blue);
    color: var(--white);
}

/* Icon colour variants */
.job-section .job-icon-wrap--green {
    background: rgba(22, 163, 74, .1);
    color: var(--green);
}

.job-section .job-card:hover .job-icon-wrap--green {
    background: var(--green);
    color: #fff;
}

.job-section .job-icon-wrap--orange {
    background: rgba(249, 115, 22, .1);
    color: var(--accent);
}

.job-section .job-card:hover .job-icon-wrap--orange {
    background: var(--accent);
    color: #fff;
}

.job-section .job-icon-wrap--purple {
    background: rgba(139, 92, 246, .1);
    color: #7c3aed;
}

.job-section .job-card:hover .job-icon-wrap--purple {
    background: #7c3aed;
    color: #fff;
}

/* Badges */
.job-section .job-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.job-section .job-badge {
    font-family: 'Manrope', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 4px 10px;
}

.job-section .job-badge-full {
    background: var(--blue-light);
    color: var(--blue);
}

.job-section .job-badge-remote {
    background: rgba(22, 163, 74, .1);
    color: var(--green);
}

.job-section .job-badge-onsite {
    background: rgba(249, 115, 22, .1);
    color: var(--accent);
}

.job-section .job-badge-hybrid {
    background: rgba(139, 92, 246, .1);
    color: #7c3aed;
}

/* ── Job title ───────────────────────────────────── */
.job-section .job-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

/* ── Details list ────────────────────────────────── */
.job-section .job-details {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.job-section .job-details li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.job-section .job-detail-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    transition: background .2s, color .2s, border-color .2s;
}

.job-section .job-detail-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.job-section .job-card:hover .job-detail-icon {
    background: var(--blue-light);
    border-color: transparent;
}

.job-section .job-detail-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.job-section .job-detail-label {
    font-family: 'Manrope', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}

.job-section .job-detail-val {
    font-family: 'Manrope', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Card footer ─────────────────────────────────── */
.job-section .job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.job-section .job-posted {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Manrope', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    color: var(--muted);
}

.job-section .job-posted i {
    font-size: .72rem;
}

/* Apply button */
.job-section .job-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: .84rem;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-light);
    border-radius: 8px;
    padding: 8px 18px;
    text-decoration: none;
    transition: background .2s, color .2s, transform .2s, box-shadow .2s;
    white-space: nowrap;
}

.job-section .job-view-btn:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 74, 153, .25);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 991px) {
    .job-section .job-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .job-section {
        padding: 56px 0;
    }

    .job-section .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-section .job-all-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .job-section .job-card {
        padding: 22px 18px 20px;
    }

    .job-section .job-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .job-section .job-view-btn {
        width: 100%;
        justify-content: center;
    }
}









