

/* ══════════════════════════════════════════
       CAREER DETAIL 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;
    opacity: 0.5;
    z-index: 99 !important;

}

/* 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;
    }
}

/* ══════════════════════════════════════════
       JOB INTRODUCATION
   ══════════════════════════════════════════ */

.jobintroducation-section {
    /* background: #F5F4F0; */
    padding: 40px 40px;
}

.jobintroducation-head{
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
}

.jobheading{
    font-family: f5;
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 52px;
}

.seosvc-h5 {
    font-family: "f1", serif;
    font-size: 24px;
    color: #111111;
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.seosvc-bold {
    font-family: "f3", serif;
    /* font-style: bold;
    color: #2C4A6E; */
    font-weight: 400;

}

em{
    font-style: normal;
}

.Apply-btn {
    font-family: "f1", sans-serif;
    font-size: 16px;
    background-color: #2C4A6E;
    color:white;
    text-decoration: none;
    border-radius: 100px;
    padding: 8px 20px;
    display: inline-block;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.jobintroducation-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.jobintroducation-h2 {
    font-family: "f3", serif;
    font-size: 32px;
    color: #111111;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.jobintroducation-body {
    font-family: "f1", sans-serif;
    font-size: 18px;
    color: #444444;
    line-height: 1.85;
    margin-bottom: 20px;
}

/* Responsive */
@media (min-width: 768px) {
    .jobintroducation-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
}

@media (max-width: 768px) {
    .Apply-btn{
    margin-bottom: 20px;
    margin-top: 20px;
}
}

/* ══════════════════════════════════════════
         KEY RESPONSIBILITES
   ══════════════════════════════════════════ */

    /* Section */
.seo-list-section {
    padding-bottom: 40px !important;
}

/* Title */
.Responsibilitiestitle {
    font-family: f3;
    margin-bottom: 32px;
}

/* List */
.seo-list {
    list-style: none;
    padding-left: 0;
}

/* List Item */
.seo-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 18px;
    color: #444444;
    font-size: 16px;
}

/* Custom Bullet */
.seo-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #444444;
    border-radius: 50%;
}