/* Hero Section Styles */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    color: var(--primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section .lead {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Why Join Us Section Styles */
.why-join-section {
    padding: 80px 0;
    background-color: white;
}

.why-join-section .section-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.why-join-section .lead {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-light);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.benefit-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.benefit-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Jobs Section Styles */
.jobs-section {
    padding: 80px 0;
    background-color: var(--primary-light);
}

.jobs-section .section-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.jobs-section .lead {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-light);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.job-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.job-type {
    background: var(--primary-light);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.job-location, .job-experience {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.job-location i, .job-experience i {
    color: var(--primary);
}

.job-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.skill-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-apply-btn {
    width: 100%;
    padding: 12px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.job-apply-btn:focus,
.job-apply-btn:active {
    border: none;
    outline: none;
}

button {
    border: none;
    outline: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .benefit-card {
        padding: 30px;
    }

    .job-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .job-details {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 40px 0;
    }

    .benefit-card {
        margin-bottom: 30px;
    }
} 