

.breadcrumb-area-career {
    padding-top: 114px;
    padding-bottom: 114px;
    background-color: #f6f2ed;
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom-width: 0px;
    padding-top: 136px;
    padding-bottom: 131px;
    background-size: cover;
    z-index: 3;
    position: relative;
    background-image: url(../images/bg/career.jpg);

}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0073e6;
}

/* Checkbox Section */
.checkbox-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;
}

.checkbox-group input {
    margin-right: 8px;
}

/* Filter Section */
.filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 15px;
}

.filter select,
.filter input {
    flex: 1;
    min-width: 150px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.filter select:focus,
.filter input:focus {
    outline: none;
    border-color: #0073e6;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.5);
}

/* Job Listings */
.job-listings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.job-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.job-details {
    flex: 2;
}

.job-details h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #333;
    transition: color 0.3s;
}

.job-details h3:hover {
    color: #0073e6;
    cursor: pointer;
}

.job-details p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #777;
}

.job-meta {
    text-align: right;
    flex: 1;
}

.job-meta .job-type {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
    font-weight: bold;
}


.job-meta .job-date {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #aaa;
}



/* Responsive Design */
@media screen and (max-width: 768px) {
    .job-item {
        flex-direction: column;
        text-align: center;
    }

    .job-logo {
        margin: 0 auto 15px auto;
    }

    .job-meta {
        margin-top: 15px;
        text-align: center;
    }

    .filter {
        flex-direction: column;
    }

    .filter select,
    .filter input {
        width: 100%;
    }

    .checkbox-group {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .job-details h3 {
        font-size: 1.2rem;
    }

    .job-details p {
        font-size: 0.85rem;
    }

    .filter input,
    .filter select {
        font-size: 0.9rem;
        padding: 10px;
    }

    .checkbox-group label {
        font-size: 0.9rem;
    }
}