#career-banner-custom {
    background: linear-gradient(135deg, #f5f7fa 0, #c3cfe2 100%);
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden
}

#career-banner-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/career-banner-pattern.svg') center center no-repeat;
    opacity: .05;
    z-index: 0
}

.career-header-custom h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50
}

.career-header-custom p {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 600px;
    margin: 0 auto 30px
}

.search-bar-custom {
    background: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center
}

.search-bar-custom input {
    border: none;
    flex: 1;
    padding: 10px 15px;
    outline: 0;
    font-size: 1rem
}

.search-bar-custom button {
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    cursor: pointer;
    transition: .3s
}

.search-bar-custom button:hover {
    background: #2980b9;
    transform: translateY(-2px)
}

.job-heading-custom {
    text-align: center;
    padding: 80px 0 50px
}

.job-heading-custom h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50
}

.job-heading-custom p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto
}

.job-container-custom {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px 80px;
    max-width: 1200px;
    margin: 0 auto
}

.job-card-custom {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    transition: .4s
}

.job-card-custom.animate__animated {
    opacity: 1;
    transform: translateY(0)
}

.job-card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15)
}

.job-card-custom img {
    margin-left: 25px;
    height: 85px;
    object-fit: cover
}

.job-card-content-custom {
    padding: 25px
}

.job-card-custom h6 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50
}

.job-card-custom h6 a {
    color: inherit;
    text-decoration: none;
    transition: color .3s
}

.job-card-custom h6 a:hover {
    color: #3498db
}

.loction-custom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #7f8c8d;
    font-size: .9rem
}

.require-skills-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px
}

.require-skills-custom span {
    background: #f3f7fb;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .8rem;
    color: #3498db
}

.job-apply-custom {
    width: 100%;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s
}

.job-apply-custom:hover {
    background: #2980b9
}

.job-apply-custom a {
    color: #fff;
    text-decoration: none;
    display: block
}

#job-experience-custom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 0;
    background: #f8f9fa
}

.container-experience-custom {
    flex: 1;
    min-width: 300px;
    padding: 20px
}

.container-experience-custom img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.content-container-custom {
    flex: 1;
    min-width: 300px;
    padding: 40px
}

.content-container-custom span {
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.content-container-custom h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    color: #2c3e50
}

.content-container-custom p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 30px
}

.content-container-custom button {
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s
}

.content-container-custom button:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, .3)
}

.content-container-custom button a {
    color: #fff;
    text-decoration: none
}

@media (max-width:768px) {
    .career-header-custom h1 {
        font-size: 2.5rem
    }

    .content-container-custom h2,
    .job-heading-custom h2 {
        font-size: 2rem
    }

    #job-experience-custom {
        flex-direction: column
    }
}