:root{
    --gm-primary:#302283;
    --gm-primary-dark:#24196b;
    --gm-secondary:#5f56d8;
    --gm-text:#12131a;
    --gm-muted:#5d6473;
    --gm-light:#f5f6fb;
    --gm-white:#ffffff;
    --gm-border:#e4e8f1;
    --gm-shadow:0 18px 45px rgba(17, 24, 39, 0.07);
}

/* FIX HEADER CLICK ISSUE */
.cbp-af-header,
.header,
.top-container,
.navigation{
    position:relative;
    z-index:9999;
}

.inner-banner-wrap{
    position:relative;
    z-index:1;
}

.inner-banner,
.inner-banner img{
    position:relative;
    z-index:1;
}

.swiper-slide-caption-inner{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    z-index:2;
    pointer-events:none;
}

.swiper-slide-caption-inner .container{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
}

.jobs-banner-caption{
    min-height:520px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    width:100%;
    max-width:760px;
    padding:40px 0;
    pointer-events:auto;
}

.jobs-banner-breadcrumb{
    display:inline-flex;
    align-items:center;
    flex-wrap:nowrap;
    gap:10px;
    margin:0 0 18px;
    padding:0;
    white-space:nowrap;
}

.jobs-banner-breadcrumb a,
.jobs-banner-breadcrumb span{
    font-size:15px;
    line-height:1.4;
    font-weight:600;
    color:#fff;
    text-decoration:none;
}

.jobs-banner-breadcrumb a{
    opacity:.92;
}

.jobs-banner-breadcrumb a:hover{
    opacity:1;
    color:#fff;
}

.jobs-breadcrumb-sep{
    opacity:.85;
    font-weight:500;
}

.jobs-banner-copy{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.jobs-banner-copy .caption-bottom{
    margin-bottom:8px;
}

.jobs-banner-copy .banner-caption-mid{
    margin-bottom:0;
    font-size:42px;
}

.jobs-banner-consult{
    margin-top:28px;
    pointer-events:auto;
}

.jobs-page-main{
    background:
        radial-gradient(circle at top left, rgba(48,34,131,0.05) 0, transparent 24%),
        radial-gradient(circle at bottom right, rgba(95,86,216,0.06) 0, transparent 22%),
        linear-gradient(180deg, #f8f9fd 0%, #ffffff 34%, #f8f9fd 100%);
    overflow:hidden;
}

.jobs-mini-title,
.section-kicker{
    display:inline-block;
    font-size:13px;
    line-height:1.5;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2.2px;
    color:var(--gm-primary);
    margin-bottom:14px;
}

.jobs-hero-section{
    padding:68px 0 28px;
}

.jobs-hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:30px;
    align-items:center;
}

.jobs-hero-left h1{
    margin:0 0 16px;
    font-size:50px;
    line-height:1.08;
    font-weight:800;
    letter-spacing:-1.1px;
    color:var(--gm-text);
}

.jobs-hero-left p{
    margin:0;
    font-size:17px;
    line-height:1.9;
    color:var(--gm-muted);
    max-width:720px;
}

.jobs-search-panel{
    background-color:#dcdaeb;
    border:1px solid var(--gm-border);
    border-radius:26px;
    padding:26px 24px;
    box-shadow:var(--gm-shadow);
    position:relative;
    overflow:visible;
}

.jobs-search-panel:before{
    content:"";
    position:absolute;
    right:-48px;
    top:-48px;
    width:140px;
    height:140px;
    border-radius:50%;
    background:rgba(48,34,131,0.05);
}

.jobs-search-panel-head{
    position:relative;
    margin-bottom:16px;
}

.jobs-search-panel-head h2{
    margin:0 0 6px;
    font-size:28px;
    line-height:1.2;
    font-weight:800;
    color:var(--gm-text);
}

.jobs-search-panel-head p{
    margin:0;
    font-size:14px;
    line-height:1.8;
    color:var(--gm-muted);
}

.jobs-search-box-wrap{
    position:relative;
}

.jobs-search-box{
    position:relative;
    display:flex;
    align-items:center;
    background:#fff;
    border:1px solid #dfe4f0;
    border-radius:16px;
    min-height:56px;
    padding:0 52px 0 48px;
    transition:border-color .2s ease, box-shadow .2s ease;
}

.jobs-search-box:focus-within{
    border-color:var(--gm-primary);
    box-shadow:0 0 0 4px rgba(48,34,131,0.08);
}

.jobs-search-box > i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    font-size:16px;
    color:var(--gm-primary);
}

.jobs-search-input{
    width:100%;
    border:none;
    background:transparent;
    outline:none;
    font-size:15px;
    font-weight:500;
    color:var(--gm-text);
    padding:14px 0;
}

.jobs-search-input::placeholder{
    color:#8a90a0;
    font-weight:400;
}

.jobs-search-clear{
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    width:30px;
    height:30px;
    border:none;
    border-radius:50%;
    background:rgba(48,34,131,0.08);
    color:var(--gm-primary);
    cursor:pointer;
    transition:all .2s ease;
}

.jobs-search-clear:hover{
    background:var(--gm-primary);
    color:#fff;
}

.jobs-autocomplete{
    display:none;
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    background:#fff;
    border:1px solid var(--gm-border);
    border-radius:16px;
    box-shadow:0 18px 45px rgba(17, 24, 39, 0.10);
    overflow:hidden;
    z-index:20;
}

.jobs-autocomplete-item{
    width:100%;
    text-align:left;
    border:none;
    background:#fff;
    padding:12px 16px;
    font-size:14px;
    font-weight:500;
    color:var(--gm-text);
    cursor:pointer;
    border-bottom:1px solid #edf0f6;
    transition:background .2s ease, color .2s ease;
}

.jobs-autocomplete-item:last-child{
    border-bottom:none;
}

.jobs-autocomplete-item:hover{
    background:#f5f6fc;
    color:var(--gm-primary);
}

.jobs-search-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:14px;
    position:relative;
    z-index:2;
}

.jobs-search-tags span{
    display:inline-flex;
    align-items:center;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(48,34,131,0.08);
    color:var(--gm-primary);
    font-size:12px;
    line-height:1.4;
    font-weight:600;
}

.jobs-results-section{
    padding:14px 0 75px;
}

.jobs-results-top{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:18px;
}

.jobs-results-heading h2{
    margin:0;
    font-size:36px;
    line-height:1.15;
    font-weight:800;
    color:var(--gm-text);
}

.jobs-count-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--gm-border);
    box-shadow:0 10px 25px rgba(17, 24, 39, 0.05);
    color:var(--gm-primary);
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
}

.jobs-listing-wrap{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
}

.job-list-card{
    display:block;
}

.job-list-card-link{
    display:block;
    text-decoration:none !important;
}

.job-list-card-inner{
    background:linear-gradient(135deg, #ffffff 0%, #f8f9fe 100%);
    border:1px solid var(--gm-border);
    border-radius:20px;
    padding:18px 20px;
    box-shadow:0 8px 24px rgba(17, 24, 39, 0.04);
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.job-list-card-inner:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(17, 24, 39, 0.08);
    border-color:#d7dcec;
}

.job-list-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:14px;
}

.job-list-title-wrap{
    flex:1;
    min-width:0;
}

.job-list-badge{
    display:inline-flex;
    align-items:center;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(48,34,131,0.08);
    color:var(--gm-primary);
    font-size:11px;
    line-height:1.4;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.job-list-title{
    margin:0 0 6px;
    font-size:22px;
    line-height:1.25;
    font-weight:800;
    color:var(--gm-text);
}

.job-list-salary{
    font-size:15px;
    line-height:1.6;
    font-weight:600;
    color:var(--gm-secondary);
}

.job-list-cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:999px;
    background:var(--gm-primary);
    color:#fff;
    font-size:13px;
    line-height:1.4;
    font-weight:700;
    white-space:nowrap;
    transition:background .2s ease;
}

.job-list-card-inner:hover .job-list-cta{
    background:var(--gm-primary-dark);
}

.job-list-meta-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:10px;
}

.job-meta-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 12px;
    border-radius:14px;
    background:#fff;
    border:1px solid #edf0f6;
}

.job-meta-icon{
    width:34px;
    height:34px;
    min-width:34px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(48,34,131,0.08);
    color:var(--gm-primary);
    font-size:15px;
}

.job-meta-text{
    min-width:0;
}

.job-meta-text span{
    display:block;
    margin-bottom:2px;
    font-size:11px;
    line-height:1.4;
    font-weight:700;
    letter-spacing:.7px;
    text-transform:uppercase;
    color:#7a8090;
}

.job-meta-text strong{
    display:block;
    font-size:13px;
    line-height:1.5;
    font-weight:600;
    color:var(--gm-text);
    word-break:break-word;
}

.jobs-empty-state{
    text-align:center;
    padding:50px 24px;
    background:#fff;
    border:1px solid var(--gm-border);
    border-radius:24px;
    box-shadow:0 10px 32px rgba(17, 24, 39, 0.05);
}

.jobs-empty-icon{
    width:68px;
    height:68px;
    margin:0 auto 16px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(48,34,131,0.08);
    color:var(--gm-primary);
    font-size:26px;
}

.jobs-empty-state h3{
    margin:0 0 10px;
    font-size:26px;
    line-height:1.25;
    font-weight:800;
    color:var(--gm-text);
}

.jobs-empty-state p{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:var(--gm-muted);
}

.swiper-slide-caption-inner .caption-explore{
    font-size:17px;
}

@media (max-width: 1399px){
    .jobs-hero-left h1{
        font-size:44px;
    }

    .job-list-meta-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1199px){
    .jobs-banner-caption{
        min-height:440px;
        max-width:680px;
        padding:32px 0;
    }

    .jobs-hero-grid{
        grid-template-columns:1fr;
    }

    .jobs-search-panel{
        margin-top:4px;
    }
}

@media (max-width: 991px){
    .swiper-slide-caption-inner{
        align-items:center;
    }

    .swiper-slide-caption-inner .container{
        align-items:center;
    }

    .jobs-banner-caption{
        min-height:380px;
        max-width:100%;
        padding:28px 0;
    }

    .jobs-banner-breadcrumb{
        margin-bottom:14px;
    }

    .jobs-banner-breadcrumb a,
    .jobs-banner-breadcrumb span{
        font-size:13px;
    }

    .jobs-hero-section{
        padding:52px 0 24px;
    }

    .jobs-results-section{
        padding:10px 0 60px;
    }

    .jobs-hero-left h1{
        font-size:36px;
        line-height:1.12;
    }

    .jobs-results-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .jobs-results-heading h2{
        font-size:32px;
    }

    .job-list-card-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .job-list-cta{
        padding:9px 13px;
    }
}

@media (max-width: 767px){
    .inner-banner-wrap{
        min-height:400px;
    }

    .inner-banner-wrap .mob-view,
    .inner-banner-wrap .mob-view img{
        min-height:400px;
        height:400px;
        object-fit:cover;
    }

    .swiper-slide-caption-inner{
        align-items:center;
    }

    .swiper-slide-caption-inner .container{
        align-items:center;
    }

    .jobs-banner-caption{
        min-height:400px;
        height:400px;
        max-width:100%;
        padding:24px 0;
        justify-content:center;
    }

    .jobs-banner-breadcrumb{
        gap:8px;
        margin-bottom:12px;
        overflow-x:auto;
        overflow-y:hidden;
        max-width:100%;
        -ms-overflow-style:none;
        scrollbar-width:none;
    }

    .jobs-banner-breadcrumb::-webkit-scrollbar{
        display:none;
    }

    .jobs-banner-breadcrumb a,
    .jobs-banner-breadcrumb span{
        font-size:12px;
        line-height:1.4;
    }

    .jobs-banner-copy .caption-bottom{
        font-size:15px;
        line-height:1.5;
    }

    .jobs-banner-copy .banner-caption-mid{
        font-size:36px;
        line-height:1.12;
    }

    .jobs-banner-consult{
        margin-top:16px;
    }

    .jobs-hero-section{
        padding:42px 0 22px;
    }

    .jobs-results-section{
        padding:8px 0 48px;
    }

    .jobs-hero-left h1{
        font-size:30px;
        letter-spacing:-0.5px;
    }

    .jobs-hero-left p{
        font-size:15px;
        line-height:1.8;
    }

    .jobs-search-panel{
        border-radius:20px;
        padding:20px 16px;
    }

    .jobs-search-panel-head h2{
        font-size:22px;
    }

    .jobs-search-box{
        min-height:50px;
        border-radius:14px;
        padding:0 46px 0 42px;
    }

    .jobs-search-box > i{
        left:14px;
        font-size:15px;
    }

    .jobs-search-input{
        font-size:14px;
        padding:12px 0;
    }

    .jobs-search-clear{
        width:28px;
        height:28px;
        right:10px;
    }

    .jobs-results-heading h2{
        font-size:26px;
    }

    .job-list-card-inner{
        border-radius:18px;
        padding:16px 14px;
    }

    .job-list-title{
        font-size:19px;
    }

    .job-list-salary{
        font-size:14px;
    }

    .job-list-badge{
        margin-bottom:8px;
    }

    .job-list-meta-grid{
        grid-template-columns:1fr;
        gap:8px;
    }

    .job-meta-item{
        padding:10px 10px;
        border-radius:12px;
    }

    .job-meta-icon{
        width:30px;
        height:30px;
        min-width:30px;
        border-radius:9px;
        font-size:13px;
    }

    .job-meta-text span{
        font-size:10px;
    }

    .job-meta-text strong{
        font-size:12px;
    }

    .jobs-empty-state{
        border-radius:20px;
        padding:38px 16px;
    }

    .jobs-empty-state h3{
        font-size:22px;
    }

    .jobs-empty-state p{
        font-size:14px;
    }
}

/* JOB TABS SECTION */
.job-tabs-section {
    padding: 30px 0 10px;
    background: #fff;
}

.job-tabs-wrap {
    display: flex;
    justify-content: left;
    gap: 15px;
    flex-wrap: wrap;
}

/* TAB BUTTON */
.job-tab-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #302283;
    background: #f4f6fb;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}

/* HOVER EFFECT */
.job-tab-btn:hover {
    background: #302283;
    color: #fff;
    transform: translateY(-2px);
}

/* ACTIVE TAB */
.job-tab-btn.active {
    background: #302283;
    color: #fff;
    box-shadow: 0 8px 20px rgba(48, 34, 131, 0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .job-tabs-wrap {
        flex-direction: column;
        align-items: center;
    }

    .job-tab-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}