/* Start custom CSS for shortcode, class: .elementor-element-f6e52d3 */.jobs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* CARD */
.job-card {
    position: relative;
    background: #fff;
    padding: 32px 24px;
    border-radius: 18px;
    border: 1px solid #e5efe8;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}
.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* DATE BADGE */
.last-date {
    position: absolute;
    right: 0;
    top: 0;
    background: #d63c3c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 0 14px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}
.last-date i {
    font-size: 16px;
}

/* Shine Animation */
.last-date::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80px;
    width: 60px;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.55) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    animation: shineMove 2.2s infinite;
}
@keyframes shineMove {
    0% { left: -80px; }
    40% { left: 130%; }
    100% { left: 130%; }
}

/* TITLE */
.job-title {
    font-size: 22px;
    font-weight: 800;
    color: #0a5f34;
    margin-top: 45px;
    margin-bottom: 20px;
}

/* DETAILS */
.details p {
    margin: 12px 0;
    font-size: 16px;
    color: #333;
    display: flex;
    gap: 8px;
    align-items: center;
}
.details i {
    color: #0f8a4a;
    font-size: 17px;
}

/* APPLY BUTTON */
.apply-wrap {
    margin-top: 25px;
    text-align: center;
}
.apply-btn {
    background: #0f8a4a;
    color: #fff;
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.apply-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.35);
    animation: btnShine 2.8s infinite;
}
@keyframes btnShine {
    0% { left: -100%; }
    40% { left: 130%; }
    100% { left: 130%; }
}

/* EXPLORE MORE */
.explore-more-wrap {
    text-align: center;
    margin-top: 20px;
}
.explore-more-btn {
    background: #0f8a4a;
    color: #fff;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

/* FADE-IN ANIMATION */
.fade-in {
    animation: fadeIn 0.4s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */