/* Careers page styling */

/* Active link highlight */
#careers .careers {
    color: #cc0000 !important;
    font-weight: 600;
}

/* Base styles & variables */
:root {
    --careers-blue: #013f88;
    --careers-yellow: #ffbb00;
    --careers-yellow-hover: #e0a500;
    --careers-light-bg: #F7F8FA;
    --careers-dark: #182333;
    --careers-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --careers-shadow-hover: 0 15px 35px rgba(1, 63, 136, 0.15);
    --careers-radius: 12px;
}

/* Custom CSS classes for Careers */
.careers-hero {
    position: relative;
    background: url('../images/delightchemicals-home-banner copy.png') no-repeat center center;
    background-size: cover;
    padding: 40px 0;
    color: #ffffff;
    text-align: center;
}

.careers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 63, 136, 0.95), rgba(24, 35, 51, 0.88));
    z-index: 1;
}

.careers-hero .container {
    position: relative;
    z-index: 2;
}

.careers-hero h1 {
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-transform: capitalize;
}

.careers-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.careers-btn-yellow {
    background-color: var(--careers-yellow) !important;
    color: var(--careers-dark) !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--careers-radius);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 187, 0, 0.3);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: inline-block;
}

.careers-btn-yellow:hover {
    background-color: var(--careers-yellow-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 187, 0, 0.4);
}

.careers-btn-outline-white {
    background-color: transparent;
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--careers-radius);
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    margin-left: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: inline-block;
}

.careers-btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--careers-blue) !important;
    transform: translateY(-2px);
}

/* Why Work With Us Section */
.careers-section {
    padding: 00px 0;
}

.careers-section-bg {
    background-color: var(--careers-light-bg);
}

.careers-section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.careers-section-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--careers-blue);
    margin-bottom: 15px;
}

.careers-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--careers-yellow);
    margin: 15px auto 0;
    border-radius: 2px;
}

.feature-card {
    background: #ffffff;
    border-radius: var(--careers-radius);
    padding: 35px 25px;
    box-shadow: var(--careers-shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--careers-shadow-hover);
    border-color: rgba(1, 63, 136, 0.1);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(1, 63, 136, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--careers-blue);
}

.feature-icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: var(--careers-blue);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper svg {
    fill: var(--careers-yellow);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--careers-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Open Positions Cards */
.job-card {
    background: #ffffff;
    border-radius: var(--careers-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--careers-shadow);
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--careers-shadow-hover);
    border-color: rgba(1, 63, 136, 0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--careers-blue);
    margin-bottom: 8px;
}

.job-dept {
    font-size: 0.9rem;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.job-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-exp {
    background-color: rgba(255, 187, 0, 0.12);
    color: #c98200;
}

.badge-loc {
    background-color: rgba(1, 63, 136, 0.08);
    color: var(--careers-blue);
}

.badge-type {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.job-body h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--careers-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.job-summary {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-reqs {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.job-reqs li {
    position: relative;
    padding-left: 22px;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
}

.job-reqs li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--careers-yellow);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.85rem;
}

.job-actions {
    display: flex;
    gap: 15px;
}

.btn-careers-blue {
    background-color: var(--careers-blue) !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--careers-radius);
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-careers-blue:hover {
    background-color: var(--careers-yellow) !important;
    color: var(--careers-dark) !important;
    box-shadow: 0 4px 12px rgba(255, 187, 0, 0.25);
}

/* Final CTA Banner */
.cta-banner {
    position: relative;
    background-color: var(--careers-blue);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 35px;
    color: #ffffff;
    opacity: 1;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .careers-hero h1 {
        font-size: 2.75rem;
    }
    .job-header {
        flex-direction: column;
        gap: 15px;
    }
    .job-badges {
        margin-top: 5px;
    }
}

@media (max-width: 575px) {
    .careers-hero h1 {
        font-size: 2.25rem;
    }
    .careers-hero p {
        font-size: 1.1rem;
    }
    .careers-btn-outline-white {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
    .careers-btn-yellow {
        display: block;
        width: 100%;
    }
    .job-actions {
        flex-direction: column;
    }
    .job-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Split Layout for Job Cards */
.border-start-md {
    border-left: none;
}

@media (max-width: 767px) {
.careers-hero {    
    padding: 30px 0;
}
}


@media (min-width: 768px) {



	
    .border-start-md {
        border-left: 1px solid #eee !important;
    }
}
.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.skill-badge {
    background-color: rgba(1, 63, 136, 0.05) !important;
    color: var(--careers-blue) !important;
    border: 1px solid rgba(1, 63, 136, 0.1) !important;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}
.job-sidebar strong {
    color: var(--careers-dark);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}
.job-sidebar ul.job-reqs {
    margin-bottom: 0;
}
.job-sidebar ul.job-reqs li {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

