/* ══════════════════════════════════════════
       CAREER HERO SECTION
   ══════════════════════════════════════════ */

   .banner-wrap {
    padding: 18px 40px 12px;
    /* background-color: #F5F4F0; */
}

.hero-banner {
    position: relative;
    min-height: 70vh;
    border-radius: 18px;
    overflow: hidden;
    padding: 18px 40px 12px !important;

    /* Background Image */
    background-image: url("../img/HERO-BANNER.jpg") no-repeat center center;
    background-size: cover;

    /* Flex Centering */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay using pseudo-element (clean approach) */
.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: black;
    z-index: 99;
    opacity: 0.5;
}

/* Content Layer */
.hero-content {
    position: relative;
    z-index: 999;
}

/* Title Styling */
.hero-header {
    color:white;
    font-size: 3rem;
    font-weight: 700;
    z-index: 999;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .banner-wrap {
        padding: 18px 12px 12px;
    }
}



/* ══════════════════════════════════════════
       CURRENT OPENINGS
   ══════════════════════════════════════════ */

/* Section Title */
.section-title h4 {
    font-weight: 600;
    letter-spacing: 1px;
    font-family: f5;
    color:#1E2B8C ;
}

.title-line {
    width: 40px;
    height: 2px;
    background-color: #1E2B8C;
}

/* Card */
.career-card {
    transition: all 0.3s ease;
}

/* Image */
.card-img {
    overflow: hidden;
    border-radius: 6px;
}

.card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover Effect */
.career-card:hover img {
    transform: scale(1.05);
}

/* Content */
.card-body {
    padding-top: 15px;
}

.card-body h5 {
    font-weight: 500;
    margin-bottom: 8px;
    margin-top: 16px;
}

/* Link */
.know-more {
    text-decoration: none;
    color: #2c4a6b;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.know-more span {
    transition: transform 0.3s ease;
}

/* Arrow Animation */
.know-more:hover span {
    transform: translateX(5px);
}


