/* ================= CAREERS HERO ================= */
.careers-hero {
    padding: 120px 0 90px;
    background: #ffffff;
    position: relative;
}

.career-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: #0b132b;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.career-content p {
    font-size: 17px;
    color: #555;
    max-width: 520px;
    line-height: 1.7;
}

/* IMAGE */
.career-image img {
    max-width: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .careers-hero {
        padding: 90px 0 70px;
        text-align: center;
    }

    .career-content h1 {
        font-size: 40px;
    }

    .career-content p {
        margin: 0 auto;
    }

    .career-image {
        margin-top: 40px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .career-content h1 {
        font-size: 32px;
    }

    .career-content p {
        font-size: 15px;
    }
}


/* ================= JOB SECTION ================= */
.job-section {
    padding: 90px 15px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #0a2540;
}

/* FILTER BUTTONS */
.filter-buttons {
    text-align: center;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 26px;
    margin: 6px;
    border-radius: 30px;
    border: 1px solid #0d6efd;
    background: #fff;
    color: #0d6efd;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* GRID */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.job-card {
    background: #fff;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.job-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    color: #fff;
}

.job-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0a2540;
}

.job-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 25px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.job-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
}


/* ================= CAREER FORM ================= */
.career-form-section {
    padding: 90px 0;
    background: #f6f8fc;
}

.form-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
}

.form-heading p {
    color: #6b7280;
    margin-top: 8px;
}

.career-form-box {
    background: #fff;
    margin-top: 50px;
    padding: 45px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.career-form-box label {
    font-weight: 600;
    font-size: 14px;
    color: #0a2540;
}

.career-form-box label span {
    color: red;
}

.career-form-box input,
.career-form-box select,
.career-form-box textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    margin-top: 6px;
    font-size: 14px;
}

.career-form-box input:focus,
.career-form-box textarea:focus,
.career-form-box select:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.15);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
}

.hr-contact {
    margin-bottom: 20px;
    color: #374151;
}

.submit-btn {
    padding: 14px 40px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.35);
}

/* MOBILE */
@media (max-width: 768px) {
    .career-form-box {
        padding: 30px 20px;
    }

    .form-heading h2 {
        font-size: 28px;
    }
}