/* ===== Hero Banner ===== */
.career-hero-first {
    background: #0014ae;
    padding: 48px 0 40px;
    text-align: center;
}

.career-hero-first h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.career-hero-first p {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0;
    letter-spacing: 2px;
}

/* ===== Counter badge ===== */
.career-counter {
    display: inline-block;
    background: linear-gradient(135deg, #003366, #0077cc);
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== Slider Card ===== */
.career-slider-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 51, 102, 0.1);
    padding: 10px 10px 20px;
    border: 1px solid rgba(0, 51, 102, 0.06);
}

/* ===== Custom Slider ===== */
.career-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.career-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
}

.career-slide {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    overflow: hidden;
}

/* Arrows */
.career-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: #003366;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.85;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.career-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.career-arrow-left {
    left: 12px;
}

.career-arrow-right {
    right: 12px;
}

/* Dots */
.career-dots {
    text-align: center;
    padding: 16px 0 6px;
}

.career-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.career-dot.active {
    background: #003366;
    transform: scale(1.3);
}

/* ===== Slide item ===== */
.career-slide-item {
    text-align: center;
    padding: 30px 25px 20px;
}

.career-slide-number {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.career-slide-item a {
    display: block;
    position: relative;
    cursor: zoom-in;
}

.career-loker-img {
    object-fit: contain;
    width: 100%;
    max-height: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-slide-item a:hover .career-loker-img {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.15);
}

.career-zoom-hint {
    display: inline-block;
    margin-top: 14px;
    margin-bottom: 6px;
    font-size: 0.82rem;
    color: #aaa;
    transition: color 0.3s ease;
}

.career-slide-item a:hover .career-zoom-hint {
    color: #0077cc;
}

/* ===== Apply button ===== */
.career-apply-wrap {
    margin-top: 24px;
    padding-bottom: 10px;
}

.btn-apply-now {
    display: inline-block;
    width: auto;
    background: linear-gradient(135deg, #003366, #005a99);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-apply-now:hover {
    background: linear-gradient(135deg, #002244, #003366);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 51, 102, 0.4);
}

/* ===== CTA Box ===== */
.career-cta-box {
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0, 51, 102, 0.08);
}

.career-cta-icon {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 12px;
}

.career-cta-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0;
    line-height: 1.8;
}

.career-cta-email {
    color: #0077cc;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.career-cta-email:hover {
    color: #003366;
    text-decoration: underline;
}

/* ===== Empty state ===== */
.career-empty {
    padding: 40px 20px;
}

.career-empty-icon {
    font-size: 3.5rem;
    color: #ccd6e0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .career-slide-item {
        padding: 20px 15px 15px;
    }

    .career-loker-img {
        max-height: 350px;
    }

    .career-slider-card {
        border-radius: 12px;
    }

    .career-arrow {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .career-arrow-left {
        left: 6px;
    }

    .career-arrow-right {
        right: 6px;
    }
}
