/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/


/* .container{
    max-width: 100% !important;
    padding: 0;
} */

.container-wrap{
    padding: 0 !important;
}

.career-page {
    background: #edf5f4;
    padding-bottom: 80px;
    font-family: Arial, sans-serif;
    color: #1d1d1d;
}

/* HERO SECTION */

.career-hero {
    padding: 90px 20px 150px;
    background: linear-gradient(135deg, #dceceb 0%, #edf5f4 100%);
    position: relative;
    overflow: hidden;
}

.career-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(0, 167, 157, 0.08);
    border-radius: 50%;
    top: -250px;
    right: -150px;
}

.career-hero-content {
    max-width: 1180px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.career-tag {
    display: inline-block;
    background: rgba(0, 167, 157, 0.12);
    color: #00877d;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.career-hero h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    max-width: 750px;
    margin-top: 10px;
}

.career-hero p {
    font-size: 18px;
    line-height: 1.9;
    max-width: 900px;
    color: #444;
}

/* STATS */

.career-stats {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.career-stat-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.career-stat-box h3 {
    font-size: 36px;
    color: #00a79d;
    margin-bottom: 8px;
}

.career-stat-box p {
    margin: 0;
    font-size: 15px;
    color: #777;
}

/* BENEFITS */

.career-benefits {
    max-width: 1180px;
    margin: -111px auto 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.career-benefit-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.career-benefit-card:hover {
    transform: translateY(-6px);
}

.career-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: rgba(0, 167, 157, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.career-icon svg{
    padding: 8px;
}

.career-benefit-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.career-benefit-card p {
    color: #777;
    line-height: 1.8;
}

/* JOB SECTION */

.career-job-section {
    max-width: 1180px;
    margin: auto;
    padding: 0 20px;
}

.career-job-header {
    /* display: flex; */
    /* justify-content: space-between; */
    /* gap: 30px; */
    align-items: flex-end;
    margin-bottom: 40px;
    /* flex-wrap: wrap; */
    margin-top: 150px;
}

.career-small-title {
    color: #00a79d;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
}

.career-job-header h2 {
    font-size: 42px;
    margin-top: 10px;
}

.career-job-header p {
    /* max-width: 450px; */
    line-height: 1.8;
    color: #777;
}

.job-desc-wrap{

}

/* JOB CARDS */

.career-job-list {
    /* display: flex; */
    /* flex-direction: column; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.career-job-card {
    background: #fff;
    padding: 28px 35px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.career-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.career-job-type {
    display: inline-block;
    background: rgba(0, 167, 157, 0.12);
    color: #00877d;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.career-job-info h3 {
    font-size: 21px !important;
    margin-bottom: 10px;
    height: 55px;
    line-height: 27px !important;

    display: flex;
    align-items: center;
}


.career-job-info p {
    color: #777;
    margin: 0;
    font-size: 17px;
    line-height: 29px;

    /* Ellipsis configuration */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.career-apply-btn {
    background: #0cb9af;
    color: #fff;
    text-decoration: none;
    padding: 5px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
    align-self: flex-end;
    font-size: 16px;
}

.career-apply-btn:hover {
    background: #4acdc5;
    color: #fff;
    transform: translateY(-2px);
}

/* RESPONSIVE */

@media(max-width: 991px){

    .career-hero h1 {
        font-size: 46px;
    }

    .career-benefits, 
    .career-job-list {
        grid-template-columns: 1fr;
    }

    .career-job-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .career-job-info h3 {
        font-size: 24px;
    }
}

@media(max-width: 767px){

    .career-hero {
        padding: 70px 20px 60px;
    }

    .career-hero h1 {
        font-size: 36px;
    }

    .career-hero p {
        font-size: 16px;
    }

    .career-stat-box {
        width: 100%;
    }

    .career-job-header h2 {
        font-size: 32px;
    }

    .career-benefit-card,
    .career-job-card {
        padding: 25px;
    }

    .career-benefits{
        margin: 0;
    }
 
    .career-job-header{
        margin-top: 80px;
    }
}