
.career-hero {
    position: relative;
    padding: 100px 0;
    background: var(--thm-gray);
    overflow: hidden;
}

.career-hero__inner {
    position: relative;
    z-index: 1;
}

.career-hero__text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 32px;
    color: var(--thm-text-dark);
    margin-top: 30px;
    margin-bottom: 50px;
}

.career-hero__stats {
    margin-top: 60px;
}

.career-hero__stat-item {
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.career-hero__stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
}

.career-hero__stat-icon {
    font-size: 50px;
    color: var(--thm-primary);
    margin-bottom: 20px;
    line-height: 1;
}

.career-hero__stat-item h3 {
    font-size: 50px;
    font-weight: 700;
    color: var(--thm-black);
    margin: 0;
    line-height: 1;
    display: inline-block;
}

.career-hero__stat-item span {
    font-size: 30px;
    font-weight: 700;
    color: var(--thm-primary);
}

.career-hero__stat-item p {
    font-size: 18px;
    color: var(--thm-text-dark);
    margin: 15px 0 0;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Why Join Us Section
--------------------------------------------------------------*/
.why-join-us {
    position: relative;
    padding: 120px 0 90px;
    background: #ffffff;
}

.why-join-us__shape-1 {
    position: absolute;
    top: 100px;
    left: 50px;
    z-index: -1;
    opacity: 0.1;
}

.why-join-us__shape-2 {
    position: absolute;
    bottom: 100px;
    right: 50px;
    z-index: -1;
    opacity: 0.1;
}

.why-join-us__item {
    position: relative;
    background: var(--thm-gray);
    border-radius: 10px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.why-join-us__item:hover {
    background: #ffffff;
    border-color: var(--thm-primary);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.why-join-us__icon {
    font-size: 60px;
    color: var(--thm-primary);
    margin-bottom: 25px;
    line-height: 1;
    transition: all 0.4s ease;
}

.why-join-us__item:hover .why-join-us__icon {
    transform: scale(1.1);
}

.why-join-us__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-join-us__text {
    font-size: 16px;
    line-height: 28px;
    color: var(--thm-text-dark);
    margin: 0;
}

/*--------------------------------------------------------------
# Job Openings Section
--------------------------------------------------------------*/
.job-openings {
    position: relative;
    padding: 120px 0;
    background: var(--thm-gray);
}

.job-openings__list {
    margin-top: 60px;
}

.job-openings__item {
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    border-left: 5px solid transparent;
}

.job-openings__item:hover {
    border-left-color: var(--thm-primary);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
    transform: translateX(5px);
}

.job-openings__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.job-openings__title {
    font-size: 26px;
    font-weight: 700;
    color: var(--thm-black);
    margin: 0 0 15px;
    line-height: 1.3;
}

.job-openings__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.job-openings__meta span {
    font-size: 15px;
    color: var(--thm-text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-openings__meta i {
    color: var(--thm-primary);
    font-size: 16px;
}

.job-openings__description p {
    font-size: 16px;
    line-height: 28px;
    color: var(--thm-text-dark);
    margin-bottom: 20px;
}

.job-openings__skills {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-openings__skills li {
    background: var(--thm-gray);
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.job-openings__skills li:hover {
    background: var(--thm-primary);
    color: #ffffff;
}

/*--------------------------------------------------------------
# Career Application Form Section
--------------------------------------------------------------*/
.career-application {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
}

.career-application__form-box {
    max-width: 1000px;
    margin: 60px auto 0;
    background: var(--thm-gray);
    border-radius: 10px;
    padding: 60px;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
}

.career-application__input-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.career-application__input-box {
    position: relative;
    margin-bottom: 30px;
}

.career-application__input-icon {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--thm-primary);
    z-index: 1;
}

.career-application__input-box input[type="text"],
.career-application__input-box input[type="email"],
.career-application__input-box input[type="tel"] {
    width: 100%;
    height: 60px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 0 25px 0 60px;
    font-size: 16px;
    color: var(--thm-black);
    background: #ffffff;
    transition: all 0.3s ease;
}

.career-application__input-box input:focus {
    border-color: var(--thm-primary);
    outline: none;
}

.career-application__input-box.text-message-box {
    margin-bottom: 40px;
}

.career-application__input-box textarea {
    width: 100%;
    height: 180px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 20px 25px 20px 60px;
    font-size: 16px;
    color: var(--thm-black);
    background: #ffffff;
    resize: none;
    transition: all 0.3s ease;
}

.career-application__input-box textarea:focus {
    border-color: var(--thm-primary);
    outline: none;
}

.career-application__file-input {
    position: relative;
    background: #ffffff;
    border: 2px dashed #e5e5e5;
    border-radius: 5px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.career-application__file-input:hover {
    border-color: var(--thm-primary);
    background: var(--thm-gray);
}

.career-application__file-input input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.career-application__file-label {
    display: block;
    font-size: 16px;
    color: var(--thm-text-dark);
    font-weight: 600;
}

.career-application__file-label::before {
    content: "\f093";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--thm-primary);
}

.career-application__btn-box {
    text-align: center;
    margin-top: 10px;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media only screen and (max-width: 1199px) {
    .career-hero__stat-item h3 {
        font-size: 40px;
    }
    
    .job-openings__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .career-hero {
        padding: 60px 0;
    }
    
    .career-hero__text {
        font-size: 16px;
        line-height: 28px;
    }
    
    .career-hero__stat-item {
        padding: 30px 20px;
    }
    
    .career-hero__stat-item h3 {
        font-size: 35px;
    }
    
    .why-join-us {
        padding: 80px 0 50px;
    }
    
    .why-join-us__item {
        padding: 30px 25px;
    }
    
    .why-join-us__icon {
        font-size: 50px;
    }
    
    .why-join-us__title {
        font-size: 20px;
    }
    
    .job-openings {
        padding: 80px 0;
    }
    
    .job-openings__item {
        padding: 25px;
    }
    
    .job-openings__title {
        font-size: 22px;
    }
    
    .job-openings__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .career-application {
        padding: 80px 0;
    }
    
    .career-application__form-box {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 575px) {
    .job-openings__skills {
        gap: 8px;
    }
    
    .job-openings__skills li {
        font-size: 13px;
        padding: 6px 15px;
    }
}
