/* =========================================================
   NEAT ENGAGEMENTS
   JOBS PAGE — PREMIUM UI
   jobs.css
========================================================= */


/* =========================================================
   01. ROOT VARIABLES
========================================================= */

:root {

    --jobs-blue: #075a9c;
    --jobs-blue-dark: #063b68;
    --jobs-blue-deep: #032b4d;

    --jobs-green: #8cc63f;
    --jobs-green-light: #b4df69;
    --jobs-green-dark: #639b20;

    --jobs-white: #ffffff;
    --jobs-off-white: #f7fafc;
    --jobs-light: #eef4f8;

    --jobs-text: #102b40;
    --jobs-text-light: #647789;
    --jobs-border: rgba(7, 90, 156, 0.12);

    --jobs-shadow:
        0 20px 60px rgba(3, 43, 77, 0.10);

    --jobs-shadow-hover:
        0 30px 80px rgba(3, 43, 77, 0.18);

    --jobs-radius: 24px;

    --jobs-transition:
        0.35s cubic-bezier(0.22, 1, 0.36, 1);

}


/* =========================================================
   02. GLOBAL JOBS PAGE
========================================================= */

html {
    scroll-behavior: smooth;
}


body {
    overflow-x: hidden;
}


main {
    overflow: hidden;
}


.jobs-section-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


.jobs-section-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 14px;

    color: var(--jobs-green-dark);

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* =========================================================
   03. LOADING SCREEN
========================================================= */

.jobs-loader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(140, 198, 63, 0.10),
            transparent 35%
        ),
        var(--jobs-blue-deep);

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;

}


.jobs-loader-inner {

    width: min(320px, 85%);

    text-align: center;

}


.jobs-loader-logo {

    color: var(--jobs-white);

    font-family: "Poppins", sans-serif;

    font-size: 38px;

    font-weight: 800;

    letter-spacing: 5px;

    animation:
        jobsLoaderPulse 1.5s ease-in-out infinite;

}


.jobs-loader-line {

    position: relative;

    width: 100%;

    height: 3px;

    margin: 22px 0 16px;

    overflow: hidden;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.15);

}


.jobs-loader-line::after {

    content: "";

    position: absolute;

    top: 0;
    left: -40%;

    width: 40%;
    height: 100%;

    border-radius: inherit;

    background: var(--jobs-green);

    animation:
        jobsLoaderLine 1.2s ease-in-out infinite;

}


.jobs-loader p {

    margin: 0;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 12px;

    letter-spacing: 1px;

}


@keyframes jobsLoaderPulse {

    0%,
    100% {
        opacity: 0.65;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

}


@keyframes jobsLoaderLine {

    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }

}


/* =========================================================
   04. SCROLL PROGRESS
========================================================= */

.jobs-progress {

    position: fixed;

    top: 0;
    left: 0;

    z-index: 10001;

    width: 0;

    height: 4px;

    border-radius:
        0 10px 10px 0;

    background:
        linear-gradient(
            90deg,
            var(--jobs-green),
            var(--jobs-green-light),
            var(--jobs-blue)
        );

    box-shadow:
        0 0 15px rgba(140, 198, 63, 0.55);

}

/* =========================================================
   05. HEADER
========================================================= */

#header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 14px 6%;

    background:
        rgba(255, 255, 255, 0.94);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.05);

    backdrop-filter: blur(15px);

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.05);
}


.logo {
    display: flex;

    align-items: center;
}


.logo img {
    width: 150px;
    height: auto;
}


#header nav ul {
    display: flex;

    align-items: center;

    gap: 8px;

    list-style: none;
}


#header nav a {
    position: relative;

    display: inline-flex;

    align-items: center;

    padding: 10px 16px;

    border-radius: 10px;

    color: var(--dark-blue);

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


#header nav a::after {
    content: "";

    position: absolute;

    left: 16px;
    right: 16px;

    bottom: 5px;

    height: 2px;

    transform:
        scaleX(0);

    transform-origin: center;

    border-radius: 10px;

    background: var(--secondary);

    transition:
        transform 0.3s ease;
}


#header nav a:hover,
#header nav a.active {
    color: var(--primary);
}


#header nav a:hover::after,
#header nav a.active::after {
    transform:
        scaleX(1);
}



/* =========================================================
   05. HERO
========================================================= */

.jobs-hero {

    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        110px 0 90px;

    background:
        linear-gradient(
            120deg,
            #032b4d 0%,
            #064d80 48%,
            #075a9c 100%
        );

    color: var(--jobs-white);

}


.jobs-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(140, 198, 63, 0.22),
            transparent 26%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(255, 255, 255, 0.10),
            transparent 30%
        );

    pointer-events: none;

}


.jobs-hero-grid {

    position: absolute;

    inset: 0;

    opacity: 0.08;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.5) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

    animation:
        jobsGridMove 18s linear infinite;

}


@keyframes jobsGridMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(70px);
    }

}


/* =========================================================
   HERO ORBS
========================================================= */

.jobs-hero-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;

}


.orb-one {

    width: 300px;
    height: 300px;

    top: -120px;
    left: -80px;

    background:
        rgba(140, 198, 63, 0.12);

    animation:
        heroOrbOne 9s ease-in-out infinite;

}


.orb-two {

    width: 220px;
    height: 220px;

    right: 4%;
    top: 12%;

    background:
        rgba(255, 255, 255, 0.08);

    animation:
        heroOrbTwo 7s ease-in-out infinite;

}


.orb-three {

    width: 180px;
    height: 180px;

    right: 30%;
    bottom: -100px;

    background:
        rgba(140, 198, 63, 0.14);

    animation:
        heroOrbThree 10s ease-in-out infinite;

}


@keyframes heroOrbOne {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0);
    }

    50% {
        transform:
            translate3d(40px, 30px, 0);
    }

}


@keyframes heroOrbTwo {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    50% {
        transform:
            translate3d(-30px, 35px, 0)
            scale(1.12);
    }

}


@keyframes heroOrbThree {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0);
    }

    50% {
        transform:
            translate3d(-40px, -35px, 0);
    }

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.jobs-hero-container {

    position: relative;

    z-index: 2;

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(400px, 0.95fr);

    align-items: center;

    gap: 60px;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.jobs-hero-content {

    animation:
        heroContentIn 0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;

}


@keyframes heroContentIn {

    from {

        opacity: 0;

        transform:
            translateY(35px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.jobs-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    padding:
        9px 14px;

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 100px;

    background:
        rgba(255, 255, 255, 0.07);

    backdrop-filter:
        blur(12px);

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.pulse-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--jobs-green);

    box-shadow:
        0 0 0 0
        rgba(140, 198, 63, 0.7);

    animation:
        hiringPulse 2s infinite;

}


@keyframes hiringPulse {

    0% {
        box-shadow:
            0 0 0 0
            rgba(140, 198, 63, 0.7);
    }

    70% {
        box-shadow:
            0 0 0 9px
            rgba(140, 198, 63, 0);
    }

    100% {
        box-shadow:
            0 0 0 0
            rgba(140, 198, 63, 0);
    }

}


.jobs-hero-content h1 {

    max-width: 720px;

    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size:
        clamp(52px, 6vw, 82px);

    line-height: 0.98;

    font-weight: 800;

    letter-spacing: -3px;

}


.jobs-hero-content h1 span {

    display: block;

    color: var(--jobs-green);

    text-shadow:
        0 0 35px
        rgba(140, 198, 63, 0.16);

}


.jobs-hero-content > p {

    max-width: 590px;

    margin:
        28px 0 32px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.jobs-hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.jobs-primary-btn,
.jobs-secondary-btn {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding:
        0 22px;

    border-radius: 12px;

    font-size: 13px;

    font-weight: 800;

    text-decoration: none;

    transition:
        var(--jobs-transition);

}


.jobs-primary-btn {

    color: var(--jobs-blue-deep);

    background: var(--jobs-green);

    box-shadow:
        0 12px 30px
        rgba(140, 198, 63, 0.20);

}


.jobs-primary-btn:hover {

    transform:
        translateY(-4px);

    background:
        var(--jobs-green-light);

    box-shadow:
        0 18px 40px
        rgba(140, 198, 63, 0.30);

}


.jobs-secondary-btn {

    color: var(--jobs-white);

    border:
        1px solid
        rgba(255, 255, 255, 0.22);

    background:
        rgba(255, 255, 255, 0.06);

    backdrop-filter:
        blur(10px);

}


.jobs-secondary-btn:hover {

    transform:
        translateY(-4px);

    background:
        rgba(255, 255, 255, 0.12);

    border-color:
        rgba(255, 255, 255, 0.40);

}


/* =========================================================
   HERO QUICK STATS
========================================================= */

.jobs-quick-stats {

    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 48px;

}


.quick-stat {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.quick-stat strong {

    font-family: "Poppins", sans-serif;

    font-size: 25px;

    font-weight: 800;

    color: var(--jobs-white);

}


.quick-stat span {

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.quick-stat-divider {

    width: 1px;

    height: 34px;

    background:
        rgba(255, 255, 255, 0.16);

}


/* =========================================================
   HERO VISUAL
========================================================= */

.jobs-hero-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    animation:
        heroVisualIn 1s
        0.15s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;

}


@keyframes heroVisualIn {

    from {

        opacity: 0;

        transform:
            translateX(45px)
            scale(0.95);

    }

    to {

        opacity: 1;

        transform:
            translateX(0)
            scale(1);

    }

}


/* =========================================================
   HERO ORBIT
========================================================= */

.hero-job-orbit {

    position: relative;

    width: 390px;
    height: 390px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.orbit-ring {

    position: absolute;

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: 50%;

}


.ring-one {

    width: 290px;
    height: 290px;

    animation:
        orbitRotate 18s linear infinite;

}


.ring-two {

    width: 390px;
    height: 390px;

    border-style: dashed;

    animation:
        orbitRotateReverse 25s linear infinite;

}


@keyframes orbitRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes orbitRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   HERO CENTER
========================================================= */

.hero-job-center {

    position: relative;

    z-index: 3;

    width: 180px;
    height: 180px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.20);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.05)
        );

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.20),
        inset 0 0 35px
        rgba(255, 255, 255, 0.05);

    backdrop-filter:
        blur(18px);

    animation:
        heroCenterFloat 4s ease-in-out infinite;

}


@keyframes heroCenterFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


.hero-job-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    border-radius: 17px;

    color: var(--jobs-blue-deep);

    background: var(--jobs-green);

    font-size: 23px;

    box-shadow:
        0 10px 30px
        rgba(140, 198, 63, 0.25);

}


.hero-job-center span {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color:
        rgba(255, 255, 255, 0.55);

}


.hero-job-center strong {

    font-family: "Poppins", sans-serif;

    font-size: 22px;

    letter-spacing: 1px;

}


/* =========================================================
   ORBIT ITEMS
========================================================= */

.orbit-item {

    position: absolute;

    z-index: 5;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 15px;

    color: var(--jobs-white);

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.14);

    font-size: 17px;

}


.orbit-item-one {

    top: 42px;
    left: 168px;

    color: var(--jobs-green);

    animation:
        orbitFloatOne 4s ease-in-out infinite;

}


.orbit-item-two {

    right: 16px;
    top: 168px;

    animation:
        orbitFloatTwo 5s ease-in-out infinite;

}


.orbit-item-three {

    bottom: 42px;
    left: 168px;

    animation:
        orbitFloatThree 4.5s ease-in-out infinite;

}


.orbit-item-four {

    left: 16px;
    top: 168px;

    color: var(--jobs-green);

    animation:
        orbitFloatFour 5.5s ease-in-out infinite;

}


@keyframes orbitFloatOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


@keyframes orbitFloatTwo {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(9px);
    }

}


@keyframes orbitFloatThree {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }

}


@keyframes orbitFloatFour {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-9px);
    }

}


/* =========================================================
   FLOATING HERO CARDS
========================================================= */

.hero-floating-card {

    position: absolute;

    z-index: 8;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        12px 15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.09);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.15);

}


.card-top {

    top: 28px;
    right: 0;

    animation:
        floatingCardOne 4s ease-in-out infinite;

}


.card-bottom {

    left: 0;
    bottom: 35px;

    animation:
        floatingCardTwo 4.5s ease-in-out infinite;

}


@keyframes floatingCardOne {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }

}


@keyframes floatingCardTwo {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(8px);
    }

}


.floating-icon,
.mini-check {

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: var(--jobs-blue-deep);

    background: var(--jobs-green);

}


.hero-floating-card strong {

    display: block;

    margin-bottom: 2px;

    color: var(--jobs-white);

    font-size: 11px;

}


.hero-floating-card span {

    display: block;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 9px;

}


/* =========================================================
   HERO SCROLL
========================================================= */

.hero-scroll {

    position: absolute;

    left: 50%;
    bottom: 25px;

    z-index: 4;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    color:
        rgba(255, 255, 255, 0.55);

    text-decoration: none;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

    transform:
        translateX(-50%);

    animation:
        heroScrollFloat 2s ease-in-out infinite;

}


.hero-scroll i {

    color: var(--jobs-green);

}


@keyframes heroScrollFloat {

    0%,
    100% {
        transform:
            translate(-50%, 0);
    }

    50% {
        transform:
            translate(-50%, 6px);
    }

}


/* =========================================================
   06. OPPORTUNITIES SECTION
========================================================= */

.jobs-opportunities {

    position: relative;

    padding:
        110px 0 120px;

    background:
        var(--jobs-off-white);

}


.jobs-opportunities::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: 100px;
    right: -180px;

    border-radius: 50%;

    background:
        rgba(140, 198, 63, 0.07);

    filter: blur(20px);

    pointer-events: none;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.jobs-section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 42px;

}


.jobs-section-heading h2,
.process-heading h2 {

    margin: 0;

    font-family: "Poppins", sans-serif;

    color: var(--jobs-text);

    font-size:
        clamp(34px, 4vw, 52px);

    line-height: 1.05;

    letter-spacing: -2px;

}


.jobs-section-heading h2 span,
.process-heading h2 span {

    color: var(--jobs-blue);

}


.jobs-section-heading > p {

    max-width: 390px;

    margin: 0 0 3px;

    color: var(--jobs-text-light);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   07. SEARCH PANEL
========================================================= */

.jobs-search-panel {

    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(280px, 1fr)
        auto;

    gap: 12px;

    margin-bottom: 24px;

    padding: 10px;

    border:
        1px solid
        var(--jobs-border);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        0 15px 50px
        rgba(3, 43, 77, 0.07);

    backdrop-filter:
        blur(15px);

}


.jobs-search-main {

    position: relative;

    display: flex;

    align-items: center;

}


.jobs-search-main > i {

    position: absolute;

    left: 18px;

    color:
        var(--jobs-blue);

    font-size: 14px;

}


.jobs-search-main input {

    width: 100%;

    height: 54px;

    padding:
        0 48px;

    border: 0;

    outline: 0;

    border-radius: 12px;

    color: var(--jobs-text);

    background:
        var(--jobs-light);

    font-family: "Inter", sans-serif;

    font-size: 13px;

}


.jobs-search-main input::placeholder {

    color:
        #8a9aaa;

}


.jobs-search-main input:focus {

    box-shadow:
        inset 0 0 0 2px
        rgba(7, 90, 156, 0.14);

}


.jobs-search-clear {

    position: absolute;

    right: 12px;

    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    color:
        var(--jobs-text-light);

    background:
        transparent;

    font-size: 20px;

    cursor: pointer;

    opacity: 0;

    pointer-events: none;

    transition:
        var(--jobs-transition);

}


.jobs-search-clear.active {

    opacity: 1;

    pointer-events: auto;

}


.jobs-search-clear:hover {

    color: var(--jobs-blue);

    background:
        rgba(7, 90, 156, 0.08);

}


.jobs-filter-group {

    display: flex;

    align-items: center;

    gap: 8px;

}


.jobs-filter {

    position: relative;

    display: flex;

    align-items: center;

}


.jobs-filter > i {

    position: absolute;

    left: 14px;

    z-index: 2;

    color:
        var(--jobs-blue);

    font-size: 12px;

    pointer-events: none;

}


.jobs-filter select {

    height: 54px;

    min-width: 155px;

    padding:
        0 32px 0 36px;

    border:
        1px solid
        rgba(7, 90, 156, 0.08);

    outline: 0;

    border-radius: 12px;

    color: var(--jobs-text);

    background:
        var(--jobs-light);

    font-family: "Inter", sans-serif;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

}


.jobs-reset-btn {

    height: 54px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding:
        0 17px;

    border: 0;

    border-radius: 12px;

    color: var(--jobs-blue);

    background:
        rgba(7, 90, 156, 0.07);

    font-size: 11px;

    font-weight: 800;

    cursor: pointer;

    transition:
        var(--jobs-transition);

}


.jobs-reset-btn:hover {

    color: var(--jobs-white);

    background:
        var(--jobs-blue);

    transform:
        translateY(-2px);

}


/* =========================================================
   RESULTS BAR
========================================================= */

.jobs-results-bar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin:
        25px 2px;

    color:
        var(--jobs-text-light);

    font-size: 11px;

}


.jobs-results-bar strong {

    color: var(--jobs-blue);

    font-weight: 800;

}


.jobs-status {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--jobs-green-dark);

    font-weight: 700;

}


.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--jobs-green);

    box-shadow:
        0 0 0 4px
        rgba(140, 198, 63, 0.12);

}


/* =========================================================
   08. JOB GRID
========================================================= */

.jobs-v2-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

}


/* =========================================================
   JOB CARD
========================================================= */

.job-v2-card {

    position: relative;

    overflow: hidden;

    border:
        1px solid
        rgba(7, 90, 156, 0.08);

    border-radius:
        var(--jobs-radius);

    background:
        var(--jobs-white);

    box-shadow:
        0 12px 35px
        rgba(3, 43, 77, 0.06);

    transition:
        transform 0.45s
        cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s
        cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;

    animation:
        jobCardReveal 0.7s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;

}


.job-v2-card:nth-child(1) {
    animation-delay: 0.05s;
}


.job-v2-card:nth-child(2) {
    animation-delay: 0.10s;
}


.job-v2-card:nth-child(3) {
    animation-delay: 0.15s;
}


.job-v2-card:nth-child(4) {
    animation-delay: 0.20s;
}


.job-v2-card:nth-child(5) {
    animation-delay: 0.25s;
}


.job-v2-card:nth-child(6) {
    animation-delay: 0.30s;
}


@keyframes jobCardReveal {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.job-v2-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(140, 198, 63, 0.30);

    box-shadow:
        var(--jobs-shadow-hover);

}


.job-v2-card.job-hidden {

    display: none;

}


.job-v2-card.job-filter-show {

    animation:
        jobFilterShow 0.5s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;

}


@keyframes jobFilterShow {

    from {

        opacity: 0;

        transform:
            translateY(15px)
            scale(0.98);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


/* =========================================================
   JOB IMAGE / VISUAL AREA
========================================================= */

.job-card-image {

    position: relative;

    height: 190px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--jobs-blue-deep),
            var(--jobs-blue)
        );

}


.job-card-image::before {

    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    right: -70px;
    top: -80px;

    border-radius: 50%;

    background:
        rgba(140, 198, 63, 0.17);

    transition:
        transform 0.6s
        cubic-bezier(0.22, 1, 0.36, 1);

}


.job-v2-card:hover
.job-card-image::before {

    transform:
        scale(1.4)
        translate(-15px, 10px);

}


.job-card-pattern {

    position: absolute;

    inset: 0;

    opacity: 0.15;

    background-image:
        radial-gradient(
            rgba(255,255,255,0.8) 1px,
            transparent 1px
        );

    background-size: 15px 15px;

}


.job-card-icon {

    position: relative;

    z-index: 2;

    width: 82px;
    height: 82px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,0.25);

    border-radius: 24px;

    color:
        var(--jobs-blue-deep);

    background:
        var(--jobs-green);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,0.16);

    font-size: 30px;

    transition:
        transform 0.55s
        cubic-bezier(0.22, 1, 0.36, 1);

}


.job-v2-card:hover
.job-card-icon {

    transform:
        translateY(-5px)
        rotate(-4deg)
        scale(1.08);

}


.job-category {

    position: absolute;

    right: 16px;
    bottom: 15px;

    z-index: 3;

    padding:
        7px 10px;

    border:
        1px solid
        rgba(255,255,255,0.15);

    border-radius: 50px;

    color:
        rgba(255,255,255,0.88);

    background:
        rgba(0,0,0,0.16);

    backdrop-filter:
        blur(10px);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.job-featured-badge {

    position: absolute;

    left: 15px;
    top: 15px;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding:
        7px 10px;

    border-radius: 50px;

    color:
        var(--jobs-blue-deep);

    background:
        var(--jobs-green);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.8px;

    box-shadow:
        0 8px 20px
        rgba(140, 198, 63, 0.20);

}


/* =========================================================
   JOB CONTENT
========================================================= */

.job-card-content {

    padding:
        23px 22px 20px;

}


.job-card-company {

    margin-bottom: 5px;

    color:
        var(--jobs-green-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.job-card-content h3 {

    margin: 0;

    color:
        var(--jobs-text);

    font-family: "Poppins", sans-serif;

    font-size: 22px;

    line-height: 1.2;

    font-weight: 700;

    transition:
        color 0.3s ease;

}


.job-v2-card:hover
.job-card-content h3 {

    color:
        var(--jobs-blue);

}


.job-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 10px 16px;

    margin-top: 17px;

    padding-bottom: 18px;

    border-bottom:
        1px solid
        rgba(7, 90, 156, 0.08);

}


.job-meta span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color:
        var(--jobs-text-light);

    font-size: 10px;

}


.job-meta i {

    color:
        var(--jobs-blue);

}


/* =========================================================
   JOB FOOTER
========================================================= */

.job-card-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding-top: 16px;

}


.job-v2-details {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 0;

    border: 0;

    color:
        var(--jobs-blue);

    background: transparent;

    font-size: 11px;

    font-weight: 800;

    cursor: pointer;

}


.job-v2-details i {

    transition:
        transform 0.3s ease;

}


.job-v2-details:hover i {

    transform:
        translateX(4px);

}


.job-arrow {

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color:
        var(--jobs-blue);

    background:
        rgba(7, 90, 156, 0.07);

    transition:
        var(--jobs-transition);

}


.job-v2-card:hover
.job-arrow {

    color:
        var(--jobs-blue-deep);

    background:
        var(--jobs-green);

    transform:
        rotate(-45deg);

}


/* =========================================================
   09. EMPTY STATE
========================================================= */

.jobs-v2-empty {

    display: none;

    padding:
        70px 25px;

    text-align: center;

    border:
        1px solid
        var(--jobs-border);

    border-radius:
        var(--jobs-radius);

    background:
        var(--jobs-white);

}


.jobs-v2-empty.active {

    display: block;

    animation:
        emptyStateIn 0.5s ease both;

}


@keyframes emptyStateIn {

    from {

        opacity: 0;

        transform:
            translateY(15px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.empty-icon {

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 18px;

    border-radius: 20px;

    color:
        var(--jobs-blue);

    background:
        rgba(7, 90, 156, 0.07);

    font-size: 22px;

}


.jobs-v2-empty h3 {

    margin: 0 0 8px;

    color:
        var(--jobs-text);

    font-family: "Poppins", sans-serif;

    font-size: 21px;

}


.jobs-v2-empty p {

    max-width: 400px;

    margin:
        0 auto 22px;

    color:
        var(--jobs-text-light);

    font-size: 12px;

    line-height: 1.7;

}


.jobs-v2-empty button {

    padding:
        12px 18px;

    border: 0;

    border-radius: 10px;

    color:
        var(--jobs-white);

    background:
        var(--jobs-blue);

    font-size: 11px;

    font-weight: 800;

    cursor: pointer;

}


/* =========================================================
   VIEW ALL
========================================================= */

.jobs-v2-footer {

    display: flex;

    justify-content: center;

    margin-top: 42px;

}


.jobs-v2-view-all {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding:
        13px 18px 13px 22px;

    border:
        1px solid
        rgba(7, 90, 156, 0.15);

    border-radius: 100px;

    color:
        var(--jobs-blue);

    background:
        var(--jobs-white);

    font-size: 11px;

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 10px 30px
        rgba(3, 43, 77, 0.05);

    transition:
        var(--jobs-transition);

}


.jobs-v2-view-all:hover {

    color:
        var(--jobs-white);

    background:
        var(--jobs-blue);

    border-color:
        var(--jobs-blue);

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(7, 90, 156, 0.20);

}


.jobs-v2-arrow {

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(7, 90, 156, 0.08);

    transition:
        var(--jobs-transition);

}


.jobs-v2-view-all:hover
.jobs-v2-arrow {

    color:
        var(--jobs-blue);

    background:
        var(--jobs-green);

}


/* =========================================================
   10. SECTION DIVIDER
========================================================= */

.jobs-section-divider {

    height: 80px;

    margin-top: -1px;

    overflow: hidden;

    background:
        var(--jobs-off-white);

}


.jobs-section-divider svg {

    width: 100%;

    height: 100%;

    display: block;

}


.jobs-section-divider polygon {

    fill:
        var(--jobs-blue-deep);

}


/* =========================================================
   11. RECRUITMENT PROCESS
========================================================= */

.jobs-process {

    position: relative;

    padding:
        105px 0 110px;

    color:
        var(--jobs-white);

    background:
        var(--jobs-blue-deep);

    overflow: hidden;

}


.jobs-process::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -300px;
    right: -180px;

    border-radius: 50%;

    background:
        rgba(140, 198, 63, 0.09);

    filter: blur(10px);

}


.jobs-process::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -230px;
    bottom: -250px;

    border-radius: 50%;

    background:
        rgba(7, 90, 156, 0.35);

}


/* =========================================================
   PROCESS HEADING
========================================================= */

.process-heading {

    position: relative;

    z-index: 2;

    text-align: center;

    margin-bottom: 55px;

}


.process-heading .jobs-section-label {

    color:
        var(--jobs-green-light);

}


.process-heading h2 {

    color:
        var(--jobs-white);

}


.process-heading h2 span {

    color:
        var(--jobs-green);

}


.process-heading p {

    max-width: 500px;

    margin:
        14px auto 0;

    color:
        rgba(255,255,255,0.58);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   ONE-LINE PROCESS
========================================================= */

.process-horizontal {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    width: 100%;

}


/*
   The process connector remains behind
   the six steps.
*/

.process-connector {

    position: relative;

    flex: 1;

    height: 2px;

    margin-top: 27px;

    background:
        linear-gradient(
            90deg,
            rgba(140, 198, 63, 0.25),
            rgba(255, 255, 255, 0.18),
            rgba(140, 198, 63, 0.25)
        );

    overflow: hidden;

}


.process-connector::after {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--jobs-green),
            transparent
        );

    animation:
        processLineMove 3s
        ease-in-out infinite;

}


@keyframes processLineMove {

    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }

}


/* =========================================================
   PROCESS ITEM
========================================================= */

.process-item {

    position: relative;

    width: 135px;

    flex: 0 0 135px;

    text-align: center;

}


.process-number {

    margin-bottom: 8px;

    color:
        rgba(255,255,255,0.32);

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.process-dot {

    position: relative;

    z-index: 4;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 17px;

    border:
        2px solid
        rgba(140,198,63,0.55);

    border-radius: 50%;

    color:
        var(--jobs-green);

    background:
        var(--jobs-blue-deep);

    box-shadow:
        0 0 0 7px
        rgba(140,198,63,0.05);

    transition:
        var(--jobs-transition);

}


.process-item:hover
.process-dot {

    color:
        var(--jobs-blue-deep);

    background:
        var(--jobs-green);

    border-color:
        var(--jobs-green);

    transform:
        translateY(-5px)
        scale(1.08);

    box-shadow:
        0 0 0 10px
        rgba(140,198,63,0.08),
        0 15px 35px
        rgba(140,198,63,0.18);

}


.process-item h3 {

    margin: 0 0 7px;

    color:
        var(--jobs-white);

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 700;

}


.process-item p {

    margin: 0;

    color:
        rgba(255,255,255,0.47);

    font-size: 9px;

    line-height: 1.55;

}


/* =========================================================
   12. RESUME CTA
========================================================= */

.jobs-resume-cta {

    position: relative;

    padding:
        80px 0;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #075a9c,
            #0a6dad
        );

}


.cta-decoration {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.cta-decoration-one {

    width: 350px;
    height: 350px;

    right: -130px;
    top: -180px;

    background:
        rgba(140,198,63,0.13);

}


.cta-decoration-two {

    width: 220px;
    height: 220px;

    left: -100px;
    bottom: -140px;

    background:
        rgba(255,255,255,0.06);

}


.resume-cta-content {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 25px;

    padding:
        34px;

    border:
        1px solid
        rgba(255,255,255,0.14);

    border-radius:
        var(--jobs-radius);

    background:
        rgba(255,255,255,0.07);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 25px 70px
        rgba(0,0,0,0.12);

}


.resume-cta-icon {

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    color:
        var(--jobs-blue-deep);

    background:
        var(--jobs-green);

    font-size: 23px;

    box-shadow:
        0 12px 30px
        rgba(140,198,63,0.18);

}


.resume-cta-text > span {

    color:
        var(--jobs-green-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.resume-cta-text h2 {

    max-width: 620px;

    margin:
        6px 0 7px;

    color:
        var(--jobs-white);

    font-family: "Poppins", sans-serif;

    font-size:
        clamp(21px, 3vw, 30px);

    line-height: 1.2;

}


.resume-cta-text p {

    max-width: 620px;

    margin: 0;

    color:
        rgba(255,255,255,0.58);

    font-size: 11px;

    line-height: 1.65;

}


.resume-cta-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding:
        0 20px;

    border-radius: 12px;

    color:
        var(--jobs-blue-deep);

    background:
        var(--jobs-green);

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;

    transition:
        var(--jobs-transition);

}


.resume-cta-button:hover {

    color:
        var(--jobs-blue-deep);

    background:
        var(--jobs-green-light);

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 35px
        rgba(140,198,63,0.22);

}

/* =========================================================
   25. FOOTER
========================================================= */

footer {
    position: relative;

    padding:
        20px 4%
        0;

    color:
        rgba(255,255,255,0.75);

    background:
        #071c2f;
}


.footer-container {
    width:
        min(1250px, 100%);

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1.4fr;

    gap: 60px;

    padding-bottom: 0px;
}


.footer-column h3 {
    margin-bottom: 20px;

    color:
        white;

    font-size: 17px;

    font-weight: 700;
}


.footer-logo {
    width: 160px;

    margin-bottom: 18px;

    filter:
        brightness(0)
        invert(1);
}


.footer-column p {
    margin-bottom: 11px;

    color:
        rgba(255,255,255,0.64);

    font-size: 13px;

    line-height: 1.7;
}


.footer-column ul {
    list-style: none;
}


.footer-column li {
    margin-bottom: 10px;
}


.footer-column a {
    color:
        rgba(255,255,255,0.64);

    font-size: 13px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-column a:hover {
    color:
        var(--secondary);
}


.footer-column p i {
    width: 22px;

    color:
        var(--secondary);
}


.footer-bottom {
    padding:
        20px 0;

    border-top:
        1px solid
        rgba(255,255,255,0.08);

    text-align: center;
}


.footer-bottom p {
    margin: 0;

    color:
        rgba(255,255,255,0.45);

    font-size: 11px;
}


/* =========================================================
   13. BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 9990;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 15px;

    color:
        var(--jobs-blue-deep);

    background:
        var(--jobs-green);

    box-shadow:
        0 15px 35px
        rgba(3,43,77,0.20);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    transition:
        var(--jobs-transition);

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


.back-to-top:hover {

    color:
        var(--jobs-white);

    background:
        var(--jobs-blue);

    transform:
        translateY(-5px);

}


/* =========================================================
   14. RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1100px) {


    .jobs-hero-container {

        grid-template-columns:
            1fr 0.85fr;

        gap: 35px;

    }


    .jobs-hero-content h1 {

        font-size:
            clamp(48px, 6vw, 70px);

    }


    .jobs-hero-visual {

        transform:
            scale(0.88);

    }


    .jobs-v2-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .process-item {

        width: 110px;

        flex-basis: 110px;

    }


    .process-item p {

        font-size: 8px;

    }

}


/* =========================================================
   15. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {


    .jobs-hero {

        min-height: auto;

        padding:
            100px 0 90px;

    }


    .jobs-hero-container {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .jobs-hero-content > p {

        margin-left: auto;
        margin-right: auto;

    }


    .jobs-hero-buttons {

        justify-content: center;

    }


    .jobs-quick-stats {

        justify-content: center;

    }


    .jobs-hero-visual {

        min-height: 430px;

        transform:
            scale(0.82);

        margin-top: -25px;

    }


    .jobs-section-heading {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

    }


    .jobs-search-panel {

        grid-template-columns: 1fr;

    }


    .jobs-filter-group {

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

    }


    .jobs-filter select {

        width: 100%;

    }


    .resume-cta-content {

        grid-template-columns:
            auto 1fr;

    }


    .resume-cta-button {

        grid-column:
            1 / -1;

        justify-self: start;

    }


}


/* =========================================================
   16. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {


    .jobs-section-container {

        width:
            min(100% - 28px, 550px);

    }


    .jobs-hero {

        padding:
            90px 0 70px;

    }


    .jobs-hero-content h1 {

        font-size:
            clamp(43px, 14vw, 60px);

        letter-spacing: -2px;

    }


    .jobs-hero-content > p {

        font-size: 13px;

    }


    .jobs-quick-stats {

        gap: 12px;

        margin-top: 35px;

    }


    .quick-stat strong {

        font-size: 21px;

    }


    .quick-stat span {

        font-size: 8px;

        letter-spacing: 0.5px;

    }


    .quick-stat-divider {

        height: 28px;

    }


    .jobs-hero-visual {

        min-height: 340px;

        transform:
            scale(0.70);

        margin:
            -55px 0 -35px;

    }


    .hero-floating-card {

        display: none;

    }


    .hero-scroll {

        display: none;

    }


    .jobs-opportunities {

        padding:
            75px 0 80px;

    }


    .jobs-section-heading h2,
    .process-heading h2 {

        font-size:
            36px;

    }


    .jobs-search-panel {

        padding: 8px;

    }


    .jobs-filter-group {

        grid-template-columns:
            1fr;

    }


    .jobs-filter select,
    .jobs-reset-btn {

        width: 100%;

    }


    .jobs-results-bar {

        align-items:
            flex-start;

        flex-direction: column;

        gap: 10px;

    }


    .jobs-v2-grid {

        grid-template-columns:
            1fr;

        gap: 16px;

    }


    .job-card-image {

        height: 175px;

    }


    .jobs-section-divider {

        height: 55px;

    }


    .jobs-process {

        padding:
            75px 0 80px;

    }


    /*
       Mobile process becomes a compact
       horizontal scrolling timeline.
    */

    .process-horizontal {

        width:
            calc(100vw - 28px);

        margin-left:
            -14px;

        padding:
            5px 14px 15px;

        overflow-x: auto;

        scroll-snap-type:
            x mandatory;

        scrollbar-width:
            thin;

    }


    .process-horizontal::-webkit-scrollbar {

        height: 4px;

    }


    .process-horizontal::-webkit-scrollbar-track {

        background:
            rgba(255,255,255,0.08);

    }


    .process-horizontal::-webkit-scrollbar-thumb {

        border-radius: 20px;

        background:
            rgba(140,198,63,0.5);

    }


    .process-item {

        width: 120px;

        flex:
            0 0 120px;

        scroll-snap-align:
            start;

    }


    .process-connector {

        min-width: 30px;

        flex:
            0 0 30px;

    }


    .process-item h3 {

        font-size: 12px;

    }


    .process-item p {

        font-size: 8px;

    }


    .jobs-resume-cta {

        padding:
            55px 0;

    }


    .resume-cta-content {

        grid-template-columns: 1fr;

        text-align: center;

        padding: 25px 20px;

    }


    .resume-cta-icon {

        margin: 0 auto;

    }


    .resume-cta-button {

        width: 100%;

        grid-column:
            auto;

    }


}


/* =========================================================
   17. SMALL MOBILE
========================================================= */

@media (max-width: 430px) {


    .jobs-hero-content h1 {

        font-size:
            42px;

    }


    .jobs-hero-buttons {

        flex-direction: column;

        width: 100%;

    }


    .jobs-primary-btn,
    .jobs-secondary-btn {

        width: 100%;

    }


    .jobs-quick-stats {

        gap: 8px;

    }


    .quick-stat strong {

        font-size: 18px;

    }


    .quick-stat span {

        font-size: 7px;

    }


    .jobs-hero-visual {

        transform:
            scale(0.58);

        margin:
            -85px 0 -65px;

    }


    .jobs-section-heading h2,
    .process-heading h2 {

        font-size:
            32px;

    }


    .job-card-content h3 {

        font-size: 20px;

    }


}


/* =========================================================
   18. ACCESSIBILITY
========================================================= */

.jobs-primary-btn:focus-visible,
.jobs-secondary-btn:focus-visible,
.jobs-v2-details:focus-visible,
.jobs-v2-view-all:focus-visible,
.jobs-reset-btn:focus-visible,
.resume-cta-button:focus-visible,
.back-to-top:focus-visible,
.jobs-search-clear:focus-visible {

    outline:
        3px solid
        rgba(140, 198, 63, 0.65);

    outline-offset:
        3px;

}


/* =========================================================
   19. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {


    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            0.01ms !important;

    }

}

