/*=============== HERO DETAIL SECTION ===============*/
.hero-detail {
    background: linear-gradient(45deg, #68B92E, #0056b3, #ff6600);
    background-size: 600% 600%;
    animation: gradientAnimation 10s ease infinite;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/*=============== JOB DESCRIPTION SECTION ===============*/
.job-description {
    padding: 2rem 1.5rem;
    background-color: #fff;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.job-description h2 {
    font-size: 2rem;
    color: #68B92E;
    margin-bottom: 1rem;
}

.job-description p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.job-description h3 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.job-tasks, .job-qualifications {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-tasks li, .job-qualifications li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.job-tasks li i, .job-qualifications li i {
    color: #68B92E;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/*=============== JOB APPLICATION SECTION ===============*/
.job-application {
    padding: 2rem 1.5rem;
    background-color: #f8f8f8;
    color: #333;
    max-width: 800px;
    margin: 2rem auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.job-application h2 {
    font-size: 2rem;
    color: #68B92E;
    width: 100%;
    text-align: left;
    margin-bottom: 1.5rem;
}

.job-application form {
    flex: 1;
    margin-right: 1rem;
}

.job-application .form-group {
    margin-bottom: 1rem;
}

.job-application .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.job-application .form-group input,
.job-application .form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.apply-button {
    background-color: #68B92E;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

.apply-button:hover {
    background-color: #5ba826;
}

.application-info {
    flex: 1;
    margin-left: 1rem;
}

.application-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.application-info p {
    color: #555;
    line-height: 1.6;
}

.application-info a {
    text-decoration: none;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 1rem;
}

.whatsapp-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.whatsapp-button:hover {
    background-color: #1DA851;
}

/*=============== RESPONSIVE DESIGN ===============*/
@media (max-width: 768px) {
    .job-application {
        flex-direction: column;
    }

    .job-application form, .application-info {
        margin: 0;
        margin-bottom: 2rem;
        width: 100%;
    }

    .job-application h2 {
        text-align: center;
    }
}
