@import url('../default/style.css');
/* Career Page Css */

.sec {
    width: 70%;
    margin: auto;
    padding-top: 40px;
    text-align: center;
}

.sec h1 {
    font-size: 4rem;
    color: var(--primary-color);
    text-shadow: 2px 4px 5px var(--text1-color);
    margin-bottom: 20px;
}

.sec p {
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: var(--text2-color);
    margin-bottom: 40px;
}

.career-section {
    margin-bottom: 60px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.career-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    flex-basis: 100%;
}

.job-listing {
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    width: 300px;
}

.job-listing:hover {
    transform: translateY(-5px);
}

.job-listing h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.job-listing .job-type, .job-listing .location {
    font-size: 1rem;
    color: var(--text1-color);
    margin-bottom: 5px;
}

.job-listing p {
    font-size: 1rem;
    color: var(--text3-color);
    line-height: 1.5;
    margin-bottom: 15px;
}

.job-listing ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.job-listing li {
    font-size: 1rem;
    color: var(--text3-color);
    line-height: 1.5;
    margin-bottom: 5px;
}

.apply-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.apply-btn:hover {
    background-color: var(--secondary-color);
}

.benefits-section {
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-item h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 1rem;
    color: var(--text3-color);
    line-height: 1.5;
}
