@font-face {
    font-family: 'Abar';
    src: url('../fonts/AbarFaNum-VF.woff2') format('woff2'),
         url('../fonts/AbarFaNum-VF.woff') format('woff'),
         url('../fonts/AbarFaNum-VF.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root{
    --primary:#111111;
    --secondary:#6c757d;
    --light:#f7f7f7;
    --border:#e9e9e9;
    --text:#1f1f1f;
    --muted:#7b7b7b;
    --radius:18px;
    --shadow:0 10px 30px rgba(0,0,0,.06);
}

*{
    box-sizing:border-box;
}
html,
body{
    margin:0;
    padding:0;
    background:#f5f7fb;
    color:var(--text);
    font-family:'Abar', Tahoma, Arial, sans-serif !important;
    font-weight:400;
    line-height:1.8;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-rendering:optimizeLegibility;
}

a{
    text-decoration:none;
}

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(0,0,0,.05);
}

.site-navbar{
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.site-logo{
    display:flex;
    align-items:center;
    gap:12px;
    color:#111;
    font-weight:800;
    font-size:20px;
}

.site-logo img,
.footer-logo img{
    max-height:42px;
    max-width:220px;
    width:auto;
}

.site-logo-mark{
    width:42px;
    height:42px;
    border-radius:12px;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
}

.site-brand{
    display:flex;
    align-items:center;
    gap:14px;
}

.site-logo img{
    height:58px;
    width:auto;
    display:block;
}

.site-brand-text{
    font-size:18px;
    font-weight:900;
    color:#111;
    white-space:nowrap;
    line-height:1.4;
}

.footer-logo img{
    height:64px;
    width:auto;
    display:block;
}

.footer-brand p{
    margin-top:14px;
}

.site-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.site-nav a{
    color:#444;
    font-size:14px;
    transition:.2s;
}

.site-nav a:hover{
    color:#000;
}

.site-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.site-main{
    min-height:calc(100vh - 180px);
    !padding:40px 0;
}

.card{
    border:none!important;
    border-radius:var(--radius)!important;
    box-shadow:var(--shadow)!important;
}

.card-body{
    padding:28px;
}

.btn{
    border-radius:12px!important;
    padding:10px 18px!important;
}

.btn-dark{
    background:#111!important;
    border-color:#111!important;
}

.btn-outline-dark:hover{
    background:#111!important;
    color:#fff!important;
}

.form-control,
.form-select{
    min-height:50px;
    border-radius:12px!important;
    border:1px solid #ddd!important;
    box-shadow:none!important;
}

textarea.form-control{
    min-height:120px;
}

.form-control:focus,
.form-select:focus{
    border-color:#111!important;
    box-shadow:0 0 0 3px rgba(0,0,0,.06)!important;
}

.table{
    margin:0;
}

.table thead{
    background:#fafafa;
}

.table th{
    font-size:13px;
    color:#666;
    border-bottom:1px solid #eee!important;
}

.table td{
    vertical-align:middle;
    border-color:#f0f0f0!important;
}

.badge{
    border-radius:999px;
    padding:8px 12px;
    font-weight:600;
}

.progress{
    border-radius:999px;
    overflow:hidden;
}

.site-footer{
    background:#111;
    color:#fff;
    padding:60px 0 25px;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
    margin-bottom:40px;
}

.footer-logo{
    font-size:24px;
    font-weight:900;
    margin-bottom:14px;
}

.footer-brand p{
    color:rgba(255,255,255,.7);
    line-height:1.9;
}

.footer-links h6{
    margin-bottom:16px;
    font-size:15px;
    font-weight:700;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:rgba(255,255,255,.7);
    margin-bottom:10px;
    transition:.2s;
}

.footer-links a:hover{
    color:#fff;
}

.footer-bottom{
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.08);
    color:rgba(255,255,255,.5);
    font-size:13px;
}

.section-title{
    margin-bottom:24px;
}

.section-title h2{
    font-size:32px;
    font-weight:900;
    margin-bottom:10px;
}

.section-title p{
    color:#777;
    margin:0;
}

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.dashboard-card{
    background:#fff;
    border-radius:20px;
    padding:24px;
    box-shadow:var(--shadow);
}

.dashboard-card-label{
    color:#777;
    font-size:13px;
    margin-bottom:12px;
}

.dashboard-card-value{
    font-size:34px;
    font-weight:900;
}

.empty-state{
    padding:50px 20px;
    text-align:center;
    color:#777;
}

@media(max-width:992px){

    .site-navbar{
        flex-wrap:wrap;
        padding:14px 0;
    }

    .site-nav{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:16px;
    }

    .footer-top{
        grid-template-columns:1fr;
    }

    .dashboard-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .dashboard-grid{
        grid-template-columns:1fr;
    }

    .site-actions{
        width:100%;
        justify-content:center;
    }

    .card-body{
        padding:20px;
    }

    .section-title h2{
        font-size:26px;
    }
}
.hero-section{
    padding:70px 0 50px;
}

.hero-badge{
    display:inline-flex;
    padding:8px 16px;
    border-radius:999px;
    background:#fff;
    box-shadow:var(--shadow);
    color:#555;
    font-size:13px;
    margin-bottom:22px;
}

.hero-title{
    font-size:52px;
    line-height:1.35;
    font-weight:900;
    letter-spacing:-1px;
    margin-bottom:20px;
}

.hero-text{
    font-size:17px;
    line-height:2;
    color:#666;
    max-width:620px;
    margin-bottom:26px;
}

.hero-search{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    border-radius:20px;
    padding:10px;
    box-shadow:var(--shadow);
    max-width:720px;
    margin-bottom:18px;
}

.hero-search-field{
    flex:1;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 14px;
}

.hero-search-field input{
    border:0;
    outline:0;
    width:100%;
    min-height:46px;
    font-size:15px;
}

.hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.hero-card{
    background:#111;
    color:#fff;
    border-radius:28px;
    padding:32px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.hero-card-header{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:30px;
}

.hero-card-title{
    font-size:24px;
    font-weight:900;
}

.hero-card-subtitle{
    color:rgba(255,255,255,.65);
    margin-top:6px;
}

.hero-card-icon{
    width:54px;
    height:54px;
    border-radius:18px;
    background:#fff;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.hero-stat-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:28px;
}

.hero-stat-item{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.hero-stat-item span{
    color:rgba(255,255,255,.65);
}

.hero-stat-item strong{
    color:#fff;
}

.home-section{
    padding:50px 0;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.category-card{
    background:#fff;
    border-radius:22px;
    padding:22px;
    display:flex;
    align-items:center;
    gap:16px;
    color:#111;
    box-shadow:var(--shadow);
    transition:.2s;
}

.category-card:hover{
    transform:translateY(-4px);
    color:#111;
}

.category-icon{
    width:50px;
    height:50px;
    border-radius:16px;
    background:#f3f3f3;
    display:flex;
    align-items:center;
    justify-content:center;
}

.category-card h5{
    margin:0 0 6px;
    font-weight:800;
    font-size:16px;
}

.category-card span{
    color:#777;
    font-size:13px;
}

.jobs-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.job-card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    box-shadow:var(--shadow);
    transition:.2s;
}

.job-card:hover{
    transform:translateY(-4px);
}

.job-card-top{
    display:flex;
    gap:14px;
    align-items:center;
    margin-bottom:20px;
}

.company-avatar{
    width:52px;
    height:52px;
    border-radius:16px;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
}

.job-card h5{
    margin:0 0 6px;
    font-size:17px;
    font-weight:900;
}

.job-card span{
    color:#777;
    font-size:13px;
}

.job-meta{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:20px;
}

.job-meta span{
    background:#f5f5f5;
    border-radius:999px;
    padding:7px 12px;
    color:#555;
}



.cta-box{
    background:#111;
    color:#fff;
    border-radius:30px;
    padding:42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.14);
}

.cta-box h2{
    font-weight:900;
    margin-bottom:10px;
}

.cta-box p{
    color:rgba(255,255,255,.7);
    margin:0;
}

@media(max-width:992px){
    .hero-title{
        font-size:38px;
    }

    .category-grid,
    .jobs-grid{
        grid-template-columns:1fr 1fr;
    }

    .cta-box{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:768px){
    .hero-search{
        flex-direction:column;
        align-items:stretch;
    }

    .category-grid,
    .jobs-grid{
        grid-template-columns:1fr;
    }

    .hero-title{
        font-size:32px;
    }
}
body{
    font-family: Abar,Tahoma,sans-serif!important;
}

.super-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    border-bottom:1px solid rgba(0,0,0,.05);
}

.super-navbar{
    min-height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.super-navbar-right,
.super-navbar-left{
    display:flex;
    align-items:center;
    gap:14px;
}

.super-logo{
    display:flex;
    align-items:center;
    gap:14px;
    color:#111;
    font-weight:900;
    font-size:20px;
}

.super-logo:hover{
    color:#111;
}

.super-logo-icon{
    width:54px;
    height:54px;
    border-radius:18px;
    background:#c59b32;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:22px;
}

.super-nav{
    display:flex;
    align-items:center;
    gap:36px;
}

.super-nav a{
    color:#202124;
    font-size:15px;
    font-weight:600;
    transition:.2s;
}

.super-nav a:hover{
    color:#c59b32;
}

.super-btn,
.super-btn-light,
.super-btn-primary{
    min-height:52px;
    padding:0 26px!important;
    border-radius:16px!important;
    display:flex;
    align-items:center;
    justify-content:center;
}

.super-btn-light{
    background:#f5f7fc!important;
    border:0!important;
    color:#111!important;
}

.super-btn-primary{
    background:#c59b32!important;
    border-color:#c59b32!important;
}

.super-btn-primary:hover{
    background:#a98224!important;
    border-color:#a98224!important;
}

@media(max-width:992px){

    .super-navbar{
        flex-wrap:wrap;
        padding:18px 0;
    }

    .super-navbar-center{
        width:100%;
        order:3;
    }

    .super-nav{
        justify-content:center;
        flex-wrap:wrap;
        gap:18px;
    }

    .super-navbar-left{
        width:100%;
        justify-content:center;
    }
}
.super-hero{
    padding:40px 0 30px;
    background:#f5f7fc;
}

.super-hero-box{
    background:#eef3fb;
    border-radius:42px;
    padding:70px;
    overflow:hidden;
    position:relative;
}

.super-hero-box::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    left:-300px;
    top:-300px;
}

.super-hero-content{
    position:relative;
    z-index:2;
}

.super-hero-badge{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;
    background:#fff;
    color:#666;
    margin-bottom:26px;
    font-size:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.super-hero-title{
    font-size:64px;
    line-height:1.3;
    font-weight:900;
    color:#111827;
    margin-bottom:24px;
    letter-spacing:-2px;
}

.super-hero-text{
    font-size:17px;
    line-height:2;
    color:#5f6368;
    margin-bottom:34px;
}

.super-search-wrapper{
    background:#fff;
    border-radius:24px;
    min-height:100px;
    display:flex;
    align-items:center;
    padding:14px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    margin-bottom:24px;
}

.super-search-input{
    flex:1;
    padding:0 24px;
}

.super-search-label{
    font-size:14px;
    color:#111;
    margin-bottom:10px;
}

.super-search-input input{
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    color:#666;
    font-size:15px;
}

.super-search-divider{
    width:1px;
    height:50px;
    background:#ececec;
}

.super-search-btn{
    min-width:170px;
    min-height:72px;
    border-radius:18px!important;
    font-weight:800!important;
    background:#c59b32!important;
    border-color:#c59b32!important;
}

.super-popular-searches{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    align-items:center;
}

.super-popular-searches span{
    color:#666;
}

.super-popular-searches a{
    color:#c59b32;
    font-weight:600;
}

.super-hero-image{
    position:relative;
    z-index:2;
}

.super-hero-image img{
    width:100%;
    border-radius:28px;
    object-fit:cover;
}

.logo-carousel-section{
    padding:24px 0 60px;
    background:#f5f7fc;
}

.logo-carousel{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.logo-carousel-track{
    display:flex;
    gap:60px;
    align-items:center;
    width:max-content;
    padding:28px 40px;
    animation:logo-scroll 24s linear infinite;
}

.logo-item{
    font-size:30px;
    font-weight:900;
    color:#b0b0b0;
    white-space:nowrap;
}

@keyframes logo-scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:992px){

    .super-hero-box{
        padding:40px;
    }

    .super-hero-title{
        font-size:42px;
    }
}

@media(max-width:768px){

    .super-search-wrapper{
        flex-direction:column;
        align-items:stretch;
        gap:14px;
    }

    .super-search-divider{
        display:none;
    }

    .super-search-btn{
        width:100%;
    }

    .super-hero-title{
        font-size:34px;
    }

    .super-hero-box{
        padding:26px;
    }
}
.container{
    max-width:1600px!important;
}
.logo-slider-section{
    padding:30px 0 70px;

}

.logo-slide-item{
    height:110px;
    border-radius:28px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:900;
    color:#b5b5b5;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.logo-slide-item-v2{
    height:110px;
    border-radius:28px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:20px;
}

.logo-slide-right{
    flex-shrink:0;
}

.logo-slide-right img,
.logo-placeholder{
    width:82px;
    height:82px;
    border-radius:0;
    object-fit:contain;
    background:transparent;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    color:#c59b32;
    padding:0;
}

.logo-slide-left{
    flex:1;
    min-width:0;
}

.logo-company-name{
    font-size:16px;
    font-weight:800;
    color:#111827;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.logo-slide-item-v2{
    min-height:120px;
}
.category-icon-v2{
    width:58px;
    height:58px;
    border-radius:18px;
    background:#f3f5fa;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:10px;
}

.category-icon-v2 img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    display:block;
}

.category-icon-v2{
    width:58px;
    height:58px;
    border-radius:18px;
    background:#f3f5fa;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    margin-bottom:18px;
    padding:10px;
    flex-shrink:0;
}

.category-icon-v2 img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.category-icon-v2{
    width:58px;
    height:58px;
    border-radius:18px;
    background:#f3f5fa;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    margin-bottom:18px;
    padding:10px;
    flex-shrink:0;
}

.category-icon-v2 img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.job-company-logo{
    width:64px;
    height:64px;
    border-radius:18px;
    background:#111827;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex-shrink:0;
}

.job-company-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}
.jobs-hero-section{
    padding:70px 0 40px;
}

.jobs-hero-box{
    background:#f6f7fb;
    border-radius:40px;
    padding:50px;
}

.jobs-main-title{
    font-size:54px;
    font-weight:900;
    line-height:1.4;
    margin-bottom:18px;
}

.jobs-main-desc{
    color:#6b7280;
    font-size:16px;
}

.jobs-search-box{
    margin-top:40px;
    background:#fff;
    border-radius:26px;
    padding:22px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 180px;
    gap:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.jobs-search-field label{
    display:block;
    font-size:13px;
    margin-bottom:10px;
    color:#6b7280;
}

.jobs-search-field input,
.jobs-search-field select{
    width:100%;
    height:58px;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:0 18px;
    background:#fff;
}

.jobs-search-btn{
    height:58px;
    border:none;
    border-radius:18px;
    background:#c59b32;
    color:#fff;
    margin-top:28px;
}

.jobs-list-section{
    padding:50px 0 80px;
}

.jobs-filter-box{
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    position:sticky;
    top:120px;
}

.jobs-filter-title{
    font-size:20px;
    font-weight:800;
    margin-bottom:24px;
}

.jobs-filter-item{
    margin-bottom:18px;
}

.job-v6-card{
    background:#fff;
    border-radius:30px;
    padding:28px;
}
.jobs-hero-section{
    padding:70px 0 40px;
}

.jobs-hero-box{
    background:#f6f7fb;
    border-radius:40px;
    padding:50px;
}

.jobs-mini-title{
    display:inline-flex;
    padding:8px 16px;
    border-radius:999px;
    background:#fff;
    color:#c59b32;
    font-weight:700;
    margin-bottom:18px;
}

.jobs-main-title{
    font-size:54px;
    font-weight:900;
    line-height:1.4;
    margin-bottom:18px;
}

.jobs-main-desc{
    color:#6b7280;
    font-size:16px;
}

.jobs-search-box{
    margin-top:40px;
    background:#fff;
    border-radius:26px;
    padding:22px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 180px;
    gap:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.jobs-search-field label{
    display:block;
    font-size:13px;
    margin-bottom:10px;
    color:#6b7280;
}

.jobs-search-field input,
.jobs-search-field select{
    width:100%;
    height:58px;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:0 18px;
    background:#fff;
    outline:none;
}

.jobs-search-btn{
    height:58px;
    border:none;
    border-radius:18px;
    background:#c59b32;
    color:#fff;
    margin-top:28px;
}

.jobs-list-section{
    padding:50px 0 80px;
    background:#f5f7fc;
}

.jobs-filter-box{
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    position:sticky;
    top:120px;
}

.jobs-filter-title{
    font-size:20px;
    font-weight:900;
    margin-bottom:18px;
}

.jobs-filter-clear{
    color:#c59b32;
    font-weight:800;
}

.jobs-filter-separator{
    height:1px;
    background:#eee;
    margin:22px 0;
}

.jobs-filter-summary{
    font-size:15px;
    margin-bottom:14px;
}

.jobs-filter-summary strong{
    font-size:28px;
    color:#111827;
}

.jobs-filter-help{
    color:#6b7280;
    line-height:1.9;
    font-size:14px;
}

.job-v6-card{
    background:#fff;
    border-radius:30px;
    padding:28px;
    display:flex;
    gap:24px;
    margin-bottom:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.25s ease;
}

.job-v6-card:hover{
    transform:translateY(-4px);
}

.job-v6-logo{
    width:88px;
    height:88px;
    background:#111827;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:14px;
    overflow:hidden;
    color:#fff;
    font-size:28px;
    font-weight:900;
    flex-shrink:0;
}

.job-v6-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.job-v6-content{
    flex:1;
}

.job-v6-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
}

.job-v6-title{
    font-size:24px;
    font-weight:900;
    margin-bottom:8px;
}

.job-v6-title a{
    color:#111827;
    text-decoration:none;
}

.job-v6-company{
    color:#6b7280;
}

.job-v6-badge,
.job-v6-featured{
    border-radius:999px;
    padding:10px 16px;
    font-size:13px;
    font-weight:800;
    white-space:nowrap;
}

.job-v6-badge{
    background:#fff4d8;
    color:#c59b32;
}

.job-v6-featured{
    background:#fff4d6;
    color:#9a6a00;
}

.job-v6-meta{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:22px;
    color:#6b7280;
}

.job-v6-desc{
    color:#6b7280;
    line-height:2;
    margin:18px 0 0;
}

.job-v6-footer{
    margin-top:24px;
}

.job-v6-link{
    color:#c59b32;
    font-weight:900;
    text-decoration:none;
}

@media(max-width:991px){
    .jobs-search-box{
        grid-template-columns:1fr;
    }

    .jobs-search-btn{
        margin-top:0;
    }

    .job-v6-card{
        flex-direction:column;
    }

    .job-v6-top{
        flex-direction:column;
    }

    .jobs-main-title{
        font-size:36px;
    }

    .jobs-hero-box{
        padding:30px;
    }
}
.superio-job-hero{
    background:#f5f7fc;
    padding:70px 0 40px;
}

.superio-job-box{
    background:#fff;
    border-radius:40px;
    padding:40px;
    display:flex;
    gap:30px;
    align-items:center;
    box-shadow:0 15px 45px rgba(0,0,0,.05);
}

.superio-job-logo{
    width:120px;
    height:120px;
    border-radius:30px;
    background:#111827;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
    overflow:hidden;
    color:#fff;
    font-size:42px;
    font-weight:900;
    flex-shrink:0;
}

.superio-job-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.superio-job-content{
    flex:1;
}

.superio-company-name{
    color:#6b7280;
    font-weight:700;
    margin-bottom:12px;
}

.superio-job-title{
    font-size:42px;
    font-weight:900;
    line-height:1.4;
    margin-bottom:20px;
}

.superio-job-meta{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    color:#6b7280;
}

.superio-job-action{
    min-width:220px;
}

.superio-job-action .btn{
    min-height:58px;
    border-radius:18px;
    font-weight:900;
}

.superio-job-detail-section{
    background:#f5f7fc;
    padding:30px 0 80px;
}

.superio-card,
.superio-sidebar-card{
    background:#fff;
    border-radius:32px;
    padding:34px;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    margin-bottom:24px;
}

.superio-section-title,
.superio-sidebar-title{
    font-size:24px;
    font-weight:900;
    margin-bottom:24px;
}

.superio-content-text{
    color:#4b5563;
    line-height:2.2;
    font-size:15px;
}

.superio-skills{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.superio-skill-item{
    padding:12px 18px;
    border-radius:16px;
    background:#f3f5fa;
    color:#111827;
    font-weight:700;
}

.superio-info-item{
    display:flex;
    justify-content:space-between;
    gap:14px;
    padding:16px 0;
    border-bottom:1px solid #f0f0f0;
}

.superio-info-item span{
    color:#6b7280;
}

.superio-info-item strong{
    color:#111827;
}

.superio-company-box{
    display:flex;
    gap:16px;
    align-items:center;
}

.superio-company-logo{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#111827;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:12px;
    overflow:hidden;
    color:#fff;
    font-weight:900;
    flex-shrink:0;
}

.superio-company-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.superio-company-box strong{
    display:block;
    margin-bottom:6px;
}

.superio-company-box a{
    color:#c59b32;
    font-weight:700;
}

.superio-company-desc{
    margin-top:22px;
    color:#6b7280;
    line-height:2;
}

@media(max-width:991px){

    .superio-job-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .superio-job-action{
        width:100%;
    }

    .superio-job-title{
        font-size:32px;
    }

}

/* =========================================================
   DotOneJobs Persian Font Polish
   Keeps Abar font consistent across all public/candidate pages
   ========================================================= */

html,
body,
body *,
input,
select,
textarea,
button,
.btn,
.form-control,
.form-select,
.dropdown-menu,
.table,
.badge,
.alert {
    font-family: 'Abar', Tahoma, Arial, sans-serif !important;
}

body {
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Persian headings need heavier Abar weight to look like the cafe site */
h1, h2, h3, h4, h5, h6,
.section-title h2,
.hero-title,
.super-hero-title,
.jobs-main-title,
.job-v6-title,
.superio-job-title,
.dashboard-card-value,
.site-logo,
.super-logo,
.footer-logo {
    font-family: 'Abar', Tahoma, Arial, sans-serif !important;
    font-weight: 850 !important;
    line-height: 1.45;
}

/* Buttons and navigation */
a,
button,
.btn,
.site-nav a,
.super-nav a,
.site-actions,
.super-btn,
.super-btn-light,
.super-btn-primary,
.jobs-search-btn,
.job-v6-link {
    font-family: 'Abar', Tahoma, Arial, sans-serif !important;
   !font-weight: 750 !important;
    letter-spacing: -0.01em;
}

/* Form controls */
input,
select,
textarea,
.form-control,
.form-select {
    font-family: 'Abar', Tahoma, Arial, sans-serif !important;
    font-weight: 450;
    letter-spacing: -0.01em;
}

input::placeholder,
textarea::placeholder {
    font-family: 'Abar', Tahoma, Arial, sans-serif !important;
    font-weight: 400;
    color: #8a8a8a;
}

/* Candidate dashboard/resume pages */
.candidate-page,
.candidate-page *,
.resume-page,
.resume-page *,
.resume-dashboard,
.resume-dashboard *,
.candidate-sidebar,
.candidate-sidebar *,
.resume-sidebar,
.resume-sidebar * {
    font-family: 'Abar', Tahoma, Arial, sans-serif !important;
}

.candidate-hero h1,
.resume-hero h1,
.candidate-card h2,
.resume-card h2,
.candidate-sidebar strong,
.resume-sidebar strong {
    font-weight: 850 !important;
    letter-spacing: -0.035em;
}

/* Numbers should stay Persian-friendly and aligned */
.badge,
.table td,
.table th,
.job-meta span,
.job-v6-meta,
.superio-job-meta {
    font-feature-settings: "ss01" 1;
}
.site-brand .site-logo img,
.site-header .site-logo img,
.super-header .site-logo img,
.super-logo img{
    height:64px !important;
    max-height:64px !important;
    width:auto !important;
    max-width:none !important;
    display:block !important;
}

.site-footer .footer-logo img,
.footer-logo img{
    height:72px !important;
    max-height:72px !important;
    width:auto !important;
    max-width:none !important;
    display:block !important;
}

.site-brand{
    display:flex !important;
    align-items:center !important;
    gap:14px !important;
}

.site-brand-text{
    font-size:18px !important;
    font-weight:900 !important;
    color:#111 !important;
    white-space:nowrap !important;
}
/* DotOne gold theme overrides */
:root{
    --gold:#c59b32;
    --gold-dark:#a98224;
    --gold-soft:#fff4d8;
}
.btn-primary,
.super-btn-primary{
    background:var(--gold)!important;
    border-color:var(--gold)!important;
    color:#111!important;
}
.btn-primary:hover,
.super-btn-primary:hover{
    background:var(--gold-dark)!important;
    border-color:var(--gold-dark)!important;
    color:#fff!important;
}
.text-primary{color:var(--gold)!important;}
.bg-primary{background-color:var(--gold)!important;}
.border-primary{border-color:var(--gold)!important;}
a{--bs-link-color:var(--gold);--bs-link-hover-color:var(--gold-dark);}
.job-badges-v2 span{
    display:inline-flex;
    align-items:center;
    gap:6px;
}

.job-badges-v2 span svg{
    flex:0 0 auto;
    width:14px;
    height:14px;
}


/* =========================================================
   Home page final fixes: no horizontal scroll + clean province combo
   ========================================================= */

html,
body{
    max-width:100%;
    overflow-x:hidden;
}

.home-page,
.page-section,
.hero-section,
.super-hero,
.super-hero-box,
.categories-section,
.latest-jobs-section,
.talent-pool-section,
.companies-slider-section,
.footer-vector-section{
    max-width:100%;
}

.super-hero{
    position:relative;
    z-index:30;
    overflow:visible!important;
}

.super-hero::before,
.super-hero::after{
    pointer-events:none;
}

.super-hero .container,
.super-hero .row{
    max-width:100%;
}

.super-hero-box,
.super-hero-content,
.super-search-wrapper,
.super-search-input{
    overflow:visible!important;
}

.super-search-wrapper{
    position:relative!important;
    z-index:50!important;
    grid-template-columns:minmax(0,2fr) minmax(220px,1fr) 140px!important;
    align-items:end!important;
}

.super-search-input{
    position:relative!important;
    min-width:0!important;
}

.home-location-combo{
    position:relative!important;
    width:100%;
    z-index:60!important;
}

.home-location-trigger{
    width:100%;
    height:58px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    background:#f7f8fb;
    color:#111;
    box-shadow:0 18px 42px rgba(0,0,0,.18);
    padding:0 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    font-size:13px;
    text-align:right;
    cursor:pointer;
}

.home-location-arrow{
    font-size:18px;
    line-height:1;
    color:#111;
    opacity:.75;
    flex:0 0 auto;
}

.home-location-panel{
    position:absolute!important;
    top:68px!important;
    right:0!important;
    left:0!important;
    z-index:999999!important;
    display:none;
    background:#fff;
    border:1px solid rgba(0,0,0,.06);
    border-radius:16px;
    box-shadow:0 18px 42px rgba(0,0,0,.18);
    padding:10px;
}

.home-location-combo.is-open .home-location-panel{
    display:block;
}

.home-location-search{
    width:100%!important;
    height:44px!important;
    border:1px solid #e8e8e8!important;
    border-radius:12px!important;
    background:#f7f8fb!important;
    color:#111!important;
    box-shadow:none!important;
    padding:0 12px!important;
    font-size:13px!important;
    margin-bottom:8px!important;
}

.home-location-options{
    max-height:220px!important;
    overflow-y:auto!important;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.home-location-option{
    width:100%;
    min-height:38px;
    border:0;
    border-radius:10px;
    background:#fff;
    color:#111;
    text-align:right;
    padding:8px 12px;
    font-size:13px;
    font-weight:800;
    cursor:pointer;
}

.home-location-option:hover,
.home-location-option.active{
    background:#f3ead0;
}

.categories-section{
    position:relative;
    z-index:1;
}

.super-hero-image,
.super-hero-image img,
.footer-vector-section img{
    max-width:100%;
}

.row{
    --bs-gutter-x:min(1.5rem, 24px);
}

.super-search-btn{
    background:#d6a72c!important;
    border-color:#d6a72c!important;
    color:#111!important;
    box-shadow:0 18px 42px rgba(214,167,44,.22)!important;
}

.super-search-btn:hover{
    background:#c99922!important;
    border-color:#c99922!important;
    color:#111!important;
}

.job-badges-v2 span{
    display:inline-flex;
    align-items:center;
    gap:6px;
}

.job-badges-v2 span svg{
    flex:0 0 auto;
    width:14px;
    height:14px;
}

@media(max-width:768px){
    .super-search-wrapper{
        display:flex!important;
        flex-direction:column!important;
        align-items:stretch!important;
    }

    .home-location-panel{
        position:absolute!important;
        top:66px!important;
    }
}

/* ===== DotOne footer - Jobinja-like dark layout ===== */
.dotone-footer{
    background:#000000;
    color:#fff;
    padding:58px 0 24px;
}

.dotone-footer .container{
    max-width:1320px!important;
}

.dotone-footer-grid{
    display:grid;
    grid-template-columns:1.35fr 1fr 1fr 1fr;
    gap:54px;
    align-items:start;
    margin-bottom:42px;
}

.dotone-footer-logo{
    display:inline-flex;
    align-items:center;
    margin-bottom:18px;
}

.dotone-footer-logo img{
    height:68px!important;
    max-height:68px!important;
    width:auto!important;
    display:block;
    filter:grayscale(1) brightness(2.6);
    opacity:.88;
}

.dotone-footer-brand p{
    color:rgba(255,255,255,.58);
    font-size:14px;
    line-height:2.1;
    max-width:330px;
    margin:0 0 20px;
}

.footer-socials{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:18px;
}

.footer-socials a{
    width:38px;
    height:38px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:#fff!important;
    font-weight:900;
    text-decoration:none;
    transition:.2s ease;
}

.footer-socials a:hover{
    background:#c59b32;
    color:#111!important;
}

.dotone-footer .footer-links{
    display:flex;
    flex-direction:column;
}

.dotone-footer .footer-links h6{
    position:relative;
    color:rgb(115, 113, 113);
    font-size:16px;
    font-weight:900;
    margin:0 0 22px;
    padding-bottom:12px;
}

.dotone-footer .footer-links h6::after{
    content:'';
    position:absolute;
    right:0;
    left:0;
    bottom:0;
    height:1px;
    background:rgba(255,255,255,.12);
}

.dotone-footer .footer-links a{
    color:#fff;
    opacity:.82;
    font-size:14px;
    line-height:1.9;
    margin-bottom:9px;
    text-decoration:none;
    transition:.2s ease;
}

.dotone-footer .footer-links a:hover{
    color:#c59b32;
    opacity:1;
    transform:translateX(-3px);
}

.dotone-footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.10);
    color:rgba(255,255,255,.48);
    font-size:13px;
}

@media(max-width:992px){
    .dotone-footer-grid{
        grid-template-columns:1fr 1fr;
        gap:34px;
    }
}

@media(max-width:768px){
    .dotone-footer{
        padding:42px 0 22px;
    }

    .dotone-footer-grid{
        grid-template-columns:1fr;
    }

    .dotone-footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }
}

.job-status-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.job-status-badge::before{
    content:'';
    width:8px;
    height:8px;
    border-radius:50%;
    display:block;
}

.job-status-badge.active::before{
    background:#22c55e;
    box-shadow:0 0 6px rgba(34,197,94,.5);
}

.job-status-badge.inactive::before{
    background:#ef4444;
    box-shadow:0 0 6px rgba(239,68,68,.5);
}
.footer-socials{
    display:flex;
    gap:12px;
}

.social-link{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#1a1a1a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s;
}

.social-link:hover{
    color:#d4af37;
    transform:translateY(-2px);
}