/* =====================================
   BASE / RESET
===================================== */
body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #00204c;
    background: #ffffff;
    padding-top: 80px;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

/* =====================================
   HERO / COVER
===================================== */
.careers-hero {
    min-height: 60vh;
    background:
        linear-gradient(rgba(0,32,76,0.65), rgba(0,32,76,0.65)),
        url('../image/careers.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    margin-bottom: 40px; /* add this */
}

.careers-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.careers-hero p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: auto;
    font-size: 1.1rem;
}
section {
    padding: 55px 0;
}

/* =====================================
   SECTION TITLES
===================================== */
.section-padding {
    padding: 70px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.section-subtitle {
    color: #5a6f8f;
    font-size: 0.95rem;
}

/* =====================================
   JOB CARDS
===================================== */
.jobs-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.job-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.10);
}

.job-card .location {
    color: #b90c14;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.job-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.job-card .desc {
    color: #5a6f8f;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.job-card .posted {
    font-size: 0.8rem;
    color: #9aa9c2;
}

/* =====================================
   CTA / APPLY NOW
===================================== */
.cta {
    background: #00204c;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.btn-red {
    background: #b90c14;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-red:hover {
    background: #00204c;
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 992px) {
    .jobs-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .careers-hero h1 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }
}
