@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
    --primary:#00a65a;
    --primary-dark:#008d4c;
    --primary-light:#e8f5e9;
    --gradient: linear-gradient(135deg,#00c853 0%,#009688 100%);
    --text:#0f172a;
    --text-light:#64748b;
    --text-muted:#94a3b8;
    --bg:#f1f5f9;
    --white:#fff;
    --border:#e2e8f0;
    --shadow-sm:0 1px 3px rgba(0,0,0,0.05);
    --shadow-md:0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg:0 12px 30px rgba(0,0,0,0.08);
    --shadow-xl:0 20px 40px rgba(0,0,0,0.1);
    --radius:16px;
    --radius-sm:12px;
    --transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*{box-sizing:border-box;}

body{
    margin:0;
    font-family:'Inter', 'Segoe UI', sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
}

.jobs-wrapper{
    max-width:1100px;
    margin:40px auto;
    padding:0 20px 60px;
    position:relative;
    z-index:1;
}

.breadcrumb{
    font-size:14px;
    margin-bottom:20px;
    color:var(--text-light);
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.breadcrumb a{
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
    transition:var(--transition);
    display:flex;
    align-items:center;
    gap:6px;
}

.breadcrumb a:hover{
    color:var(--primary-dark);
    text-decoration:underline;
}

.breadcrumb span{
    color:var(--text-light);
    font-weight:500;
}

.jobs-header{
    background:var(--gradient);
    color:#fff;
    padding:45px 30px;
    border-radius:var(--radius);
    text-align:center;
    margin-bottom:35px;
    box-shadow:var(--shadow-lg);
    position:relative;
    overflow:hidden;
}

.jobs-header::before,
.jobs-header::after{
    content:'';
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
}

.jobs-header::before{
    top:-60px;
    right:-40px;
    width:200px;
    height:200px;
}

.jobs-header::after{
    bottom:-80px;
    left:-50px;
    width:250px;
    height:250px;
}

.jobs-header h1{
    margin:0 0 12px 0;
    font-size:32px;
    font-weight:800;
    letter-spacing:-0.5px;
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.jobs-header p{
    margin:0;
    font-size:15px;
    opacity:0.95;
    position:relative;
    z-index:1;
    font-weight:500;
}

.jobs-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
}

.job-card{
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    padding:24px;
    border-radius:var(--radius);
    box-shadow:var(--shadow-md);
    border:1px solid rgba(226,232,240,0.8);
    border-left:5px solid var(--primary);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    transition:var(--transition);
    position:relative;
    overflow:hidden;
}

.job-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(135deg, rgba(0,166,90,0.03) 0%, transparent 100%);
    opacity:0;
    transition:var(--transition);
}

.job-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-xl);
    border-left-width:7px;
}

.job-card:hover::before{
    opacity:1;
}

.job-left{
    flex:1;
    position:relative;
    z-index:1;
}

.job-left h2{
    margin:0 0 10px 0;
    font-size:18px;
    color:var(--text);
    font-weight:700;
    line-height:1.4;
}

.job-left p{
    font-size:14px;
    color:var(--text-light);
    margin:6px 0;
    display:flex;
    align-items:center;
    gap:8px;
    line-height:1.6;
}

.job-left p i{
    color:var(--primary);
    font-size:13px;
    width:16px;
    text-align:center;
    flex-shrink:0;
}

.job-left p strong{
    color:var(--text);
    font-weight:600;
}

.job-right{
    min-width:60px;
    position:relative;
    z-index:1;
}

.apply-btn{
    width:56px;
    height:56px;
    background:var(--gradient);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    box-shadow:0 6px 20px rgba(40,167,69,0.35);
    transition:var(--transition);
    font-size:18px;
}

.apply-btn:hover{
    transform:scale(1.1) rotate(8deg);
    box-shadow:0 8px 28px rgba(40,167,69,0.45);
}

.no-job{
    text-align:center;
    margin-top:40px;
    padding:60px 30px;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(12px);
    border-radius:var(--radius);
    box-shadow:var(--shadow-md);
    border:1px solid var(--border);
}

.no-job i{
    font-size:56px;
    color:#cbd5e1;
    display:block;
    margin-bottom:18px;
}

.no-job p{
    font-size:18px;
    color:var(--text-light);
    margin:0;
    font-weight:500;
}

@media(max-width:600px){
    .jobs-wrapper{padding:0 16px 40px;margin:30px auto;}
    .jobs-header{padding:35px 24px;}
    .jobs-header h1{font-size:24px;flex-direction:column;gap:8px;}
    .jobs-header p{font-size:14px;}
    .job-card{flex-direction:column;align-items:flex-start;padding:20px;}
    .job-right{align-self:flex-end;margin-top:12px;}
    .apply-btn{width:50px;height:50px;}
}