/* ============================= */
/* SECTION SPACING */
/* ============================= */
.career-section {
    padding: 80px 0;
}

.bg-light-blue {
    background: #eef4ff;
}

/* ============================= */
/* TITLES */
/* ============================= */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a3d7c;
}

.section-sub {
    color: #6b7280;
    margin-top: 8px;
    font-size: 15px;
}

/* ============================= */
/* WHY WORK CARDS */
/* ============================= */
.career-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.career-card:hover {
    transform: translateY(-4px);
}

.circle {
    width: 55px;
    height: 55px;
    background: #0a66e8;
    border-radius: 50%;
    margin: 0 auto 14px;
}

/* ============================= */
/* JOB CARDS */
/* ============================= */
/* ============================= */
/* JOB CARD - EXACT UI */
/* ============================= */
.job-card {
    position: relative;
    background: #ffffff;
    padding: 18px 18px 16px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.job-card:hover {
    transform: translateY(-4px);
}

/* Bookmark */
.bookmark {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 16px;
    color: #94a3b8;
    cursor: pointer;
}

/* Title */
.job-card h6 {
    font-weight: 700;
    color: #1a3d7c;
    margin-bottom: 2px;
}

/* Company */
.company {
    font-size: 13px;
    color: #6b7280;
}

/* Info list */
.job-info {
    list-style: none;
    padding: 0;
    margin: 12px 0 14px;
}

.job-info li {
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-info i {
    font-size: 14px;
    color: #0a66e8;
}

/* Footer badges */
.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge-custom {
    background: #eaf2ff;
    color: #0a66e8;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

/* Right side badge */
.badge-custom.light {
    background: #f3f4f6;
    color: #6b7280;
}

/* ============================= */
/* CULTURE IMAGE */
/* ============================= */
.culture-img {
    width: 100%;
    border-radius: 16px;
    border: 6px solid #ffffff;
    box-shadow: 0 6px 22px rgba(0,0,0,0.1);
}

/* ============================= */
/* PROCESS */
/* ============================= */
.process-card {
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.step-number {
    width: 36px;
    height: 36px;
    background: #0a66e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ============================= */
/* BREADCRUMB (MATCH SCREENSHOT) */
/* ============================= */
.breadcrumb-bar {
    background: #f5f7fa;
    padding: 12px 0;
    font-size: 13px;
    color: #9aa3af;
}

.breadcrumb-bar span {
    color: #9aa3af;
}

.breadcrumb-bar span b,
.breadcrumb-bar span strong {
    color: #1a3d7c;
}

/* -------------------------------- */
/* ABOUT IMAGE FRAME */
/* -------------------------------- */

.careers-img-frame{
    display:inline-block;
    padding:12px;
    border:1px solid #e6ecf5;
    border-radius:18px;
    background:#ffffff;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.careers-img{
    width:100%;
    display:block;
    border-radius:12px;
    transition:transform .6s cubic-bezier(.2,.9,.3,1.1);
}

.careers-img-frame:hover .careers-img{
    transform:scale(1.08);
}
/* -------------------------------- */
/* CTA SECTION */
/* -------------------------------- */

.cta-about{
    background:url("../images/footer_image.jpg") center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 90px 0;
    text-align: center;
    position: relative;
}

.cta-about::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.cta-about .container{
    position:relative;
    z-index:2;
}

.cta-about h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:10px;
}

.cta-about p{
    font-size:18px;
    margin-bottom:20px;
}

.btn-cta{
    display:inline-block;
    background:#ffffff;
    color:#1e40af;
    padding:14px 38px;
    border-radius:40px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-cta:hover{
    background:#1e40af;
    color:#fff;
}

.career-form-box {
        background: #fff;
        padding: 35px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    }

    .btn-submit {
        background: #0056d2;
        color: #fff;
        padding: 12px 30px;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-submit:hover {
        background: #003f9a;
    }
