/* ===========================
   Careers Page Styles
   =========================== */

.careers-intro-area {
    padding-top: 80px;
    padding-bottom: 50px;
}

.careers-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.careers-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.careers-card h4 {
    font-size: 24px;
    color: #0f2457;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.careers-card h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #00afef;
}

.careers-card p {
    color: #606060;
    line-height: 1.8;
}

.careers-form-area {
    padding-top: 50px;
    padding-bottom: 100px;
}

.application-form-wrap {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.application-form-wrap h2 {
    font-size: 32px;
    color: #0f2457;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.careers .form-group {
    margin-bottom: 25px;
}

.careers .form-control {
    height: 55px;
    background: #fbfbfb;
    border: 1px solid #eee;
    padding: 0 20px;
    border-radius: 5px;
    color: #0f2457;
}

.careers .form-control:focus {
    background: #fff;
    border-color: #00afef;
    box-shadow: none;
}

.careers select.form-control {
    appearance: auto;
}

.careers .file-input-label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}

.careers .btn-submit {
    width: 100%;
    margin-top: 10px;
    background: #00afef;
    color: #fff;
    padding: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.4s;
    border: none;
}

.careers .btn-submit:hover {
    background: #0f2457;
    transform: translateY(-2px);
}

.careers-note {
    background: #f9fbff;
    padding: 40px;
    border-left: 5px solid #00afef;
    margin-top: 50px;
    border-radius: 0 10px 10px 0;
}

.careers-note h3 {
    font-size: 20px;
    color: #0f2457;
    margin-bottom: 15px;
    font-weight: 700;
}

.careers-note p {
    margin-bottom: 0;
    font-size: 14.5px;
    color: #606060;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .application-form-wrap {
        padding: 30px 20px;
    }
}