.job-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    transition: .3s ease-in-out;
    height: 100%;
    border: 1px solid #e9ecef
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #002855;
    margin-bottom: 15px
}

.job-details li {
    margin-bottom: 10px;
    color: #495057;
    font-size: .95rem
}

.job-details i {
    color: #0d6efd
}

.btn-apply {
    background: #003e65;
    color: #fff;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 30px;
    transition: .3s;
    border: none
}

.btn-apply:hover {
    background: #0b5ed7;
    color: #fff
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .55);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: left
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 700
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 25px !important
    }
}

.typing-text {
    font-size: 24px;
    font-weight: 400;
    color: #f8f9fa;
    border-right: 3px solid #f8f9fa;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: 4s steps(30, end) forwards typing, .8s step-end infinite blink
}

@keyframes typing {
    from {
        width: 0
    }
    to {
        width: 100%
    }
}

@keyframes blink {
    from, to {
        border-color: transparent
    }
    50% {
        border-color: #f8f9fa
    }
}

.career-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    z-index: 1
}

.career-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.btn:hover {
    color: white!important;
}

.career-content h2 {
    font-weight: 900;
    font-size: 37px;
    color: #002147
}

.career-content p {
    text-align: justify;
    color: #333;
    font-size: 18px;
    line-height: 1.7
}

.career-list a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 600;
    transition: .3s
}

.career-list a:hover {
    color: #002147;
    text-decoration: underline
}

.career-icon {
    color: #0d6efd;
    margin-right: 10px
}
