/* Job Opening Section Styles */
.rs-jobs {
    padding: 50px 0;
}
.job-text{
    margin-left: 20%;
    margin-right: 20%;
    text-align: center;
}

.rs-jobs .job-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rs-jobs .job-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.rs-jobs .job-img {
    overflow: hidden;
}

.rs-jobs .job-img img {
    width: 100%;
    height: auto;
    display: block;
}

.rs-jobs .job-content {
    padding: 20px;
    flex-grow: 1;
}

.rs-jobs .job-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: #666;
}

.rs-jobs .job-meta i {
    margin-right: 5px;
}

.rs-jobs .job-title {
    font-size: 1.2em;
    margin: 15px 0;
}

.rs-jobs .job-title a {
    color: #333;
    text-decoration: none;
}

.rs-jobs .job-title a:hover {
    color: #007bff;
}

.rs-jobs .job-type {
    font-size: 0.9em;
    color: #777;
}

.rs-jobs .job-desc {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 15px;
}

.rs-jobs .job-btn a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.rs-jobs .job-btn a:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .rs-jobs .job-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .rs-jobs .job-title {
        font-size: 1.1em;
    }

    .rs-jobs .job-content {
        padding: 15px;
    }

    .rs-jobs .job-btn a {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}
