/* =========================================
   TWL DATA - HERO BANNER
========================================= */

#banner {
    background:
        linear-gradient(
            rgba(0,0,0,0.60),
            rgba(0,0,0,0.60)
        ),
        url("../../images/careers-banner.jpeg");

    background-size: cover;
    background-position: center;

    padding: 10em 2em 8em;

    text-align: center;

    color: #fff;
}

#banner h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 0.5em;
}

#banner p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.8;
}


/* =========================================
   JOBS GRID
========================================= */

.jobs-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 25px;

    margin-top: 3em;
}

/* =========================================
   JOB CARD
========================================= */

.job-card {
    background: white;

    padding: 2.5em;

    border-radius: 12px;

    border-top: 5px solid #e4002b;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: 0.3s ease;

    position: relative;

    overflow: hidden;
}

/* =========================================
   HOVER EFFECT
========================================= */

.job-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* =========================================
   OPTIONAL TOP ACCENT
========================================= */

.job-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #003087,
        #e4002b,
        #ffb81c
    );
}

/* =========================================
   JOB TITLE
========================================= */

.job-title {
    font-size: 1.4rem;

    font-weight: 700;

    color: #003087;

    margin-bottom: 0.8em;

    line-height: 1.4;
}

/* =========================================
   JOB META
========================================= */

.job-meta {
    font-size: 0.95rem;

    color: #666;

    margin-bottom: 1.5em;

    line-height: 1.7;
}

/* =========================================
   JOB DESCRIPTION
========================================= */

.job-description {
    color: #444;

    line-height: 1.8;

    margin-bottom: 2em;

    flex-grow: 1;
}

/* =========================================
   BUTTON
========================================= */

.job-btn {
    display: inline-block;

    width: 100%;

    padding: 14px 20px;

    text-align: center;

    background: #d8893d;

    color: white;

    text-decoration: none;

    border-radius: 8px;

    font-weight: 600;

    transition: 0.3s ease;
}

.job-btn:hover {
    background: #c10025;

    transform: translateY(-2px);
}

/* =========================================
   JOB CATEGORY TAG
========================================= */

.job-tag {
    display: inline-block;

    background: #f4f7fb;

    color: #003087;

    padding: 6px 12px;

    border-radius: 30px;

    font-size: 0.8rem;

    font-weight: 600;

    margin-bottom: 1.5em;
}

.centered-text {
    text-align: center;
    margin-bottom: 2rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.process-step {
    background: #003087;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s ease;
}

.process-step:hover {
    background: #e4002b;
    transform: translateY(-3px);
}

@media screen and (max-width: 980px) {

    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media screen and (max-width: 980px) {

    .jobs-grid {
        grid-template-columns: 1fr;
    }

}

@media screen and (max-width: 600px) {

    .job-card {
        padding: 2em;
    }

    .job-title {
        font-size: 1.2rem;
    }

    .job-meta,
    .job-description {
        font-size: 0.95rem;
    }

    .job-btn {
        padding: 12px;
    }

}


.job-content {
    flex-grow: 1;
}

.job-action {
    margin-top: 15px;
}

.division-card-logo{
    height:50px;
    width:auto;
    display:block;
    margin:0 auto 15px auto;
}
.recruitment-process {
    padding: 4em 0;
    text-align: center;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 3em;
}

.process-step {
    width: 180px;
    min-height: 220px;

    background: white;
    border-radius: 12px;
    padding: 2em 1.5em;

    box-shadow: 0 10px 25px rgba(0,0,0,.08);

    border-top: 4px solid #003087;

    transition: all .3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-top-color: #e4002b;
}

.process-step .icon {
    font-size: 2.5em;
    color: #003087;
    margin-bottom: .75em;
}

.process-step h3 {
    color: #003087;
    margin-bottom: .5em;
}

.process-arrow {
    font-size: 2em;
    color: #e4002b;
}

@media screen and (max-width: 980px) {

    .process-flow {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

}

.recruitment-process {
    padding: 4em 0;
    text-align: center;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 3em;
}

.process-step {
    width: 180px;
    min-height: 220px;

    background: white;
    border-radius: 12px;
    padding: 2em 1.5em;

    box-shadow: 0 10px 25px rgba(0,0,0,.08);

    border-top: 4px solid #003087;

    transition: all .3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-top-color: #e4002b;
}

.process-step .icon {
    font-size: 2.5em;
    color: #003087;
    margin-bottom: .75em;
}

.process-step h3 {
    color: #003087;
    margin-bottom: .5em;
}

.process-arrow {
    font-size: 2em;
    color: #e4002b;
}

@media screen and (max-width: 980px) {

    .process-flow {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

}

.process-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 15px;
    margin-top: 3em;
    flex-wrap: nowrap;
}

.process-step {
    flex: 1;
    max-width: 220px;
    min-width: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: #ffffff;
    border-radius: 12px;
    padding: 2em 1.5em;

    border-top: 4px solid #003087;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);

    transition: all .3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-top-color: #e4002b;
}

.process-step .icon {
    font-size: 2.5em;
    color: #003087;
    margin-bottom: .75em;
}

.process-step h3 {
    color: #003087;
    margin-bottom: .5em;
    font-size: 1.1em;
}

.process-step p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.9em;

    /* Prevent overflow */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #e4002b;
    font-size: 2em;

    flex-shrink: 0;
}