*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Inter,Segoe UI,sans-serif;
background:#f8fafc;
color:#1e293b;
line-height:1.6;
}

header{
background:linear-gradient(135deg,#2563eb,#1d4ed8);
color:white;
padding:25px 20px;
text-align:center;
}

header h1{
font-size:34px;
font-weight:700;
margin-bottom:5px;
}

header p{
margin-top:10px;
font-size:18px;
opacity:.95;
}

nav{
background:white;
padding:15px;
text-align:center;
box-shadow:0 2px 10px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:100;
}

nav a{
display:inline-block;
text-decoration:none;
margin:0 15px;
color:#1e293b;
font-weight:600;
transition:all 0.3s ease;
}

nav a:hover{
color:#2563eb;
transform:translateY(-2px);
}

.container{
max-width:1200px;
margin:auto;
padding:30px 20px;
}

.hero{
background:white;
padding:40px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
margin-bottom:30px;
}

.hero h2{
font-size:36px;
margin-bottom:15px;
color:#0f172a;
}

.hero button{
font-weight:600;
transition:all 0.3s ease;
}

.hero button:hover{
transform:translateY(-2px);
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.card{
background:white;
padding:25px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

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

.card h3{
color:#2563eb;
margin-bottom:15px;
}

.card ul{
list-style:none;
}

.card li{
padding:12px 0;
border-bottom:1px solid #e2e8f0;
}

footer{
margin-top:50px;
background:#0f172a;
color:white;
text-align:center;
padding:30px;
}
.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin:30px 0;
}

.stat-card{
background:white;
padding:25px;
text-align:center;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.stat-card h2{
font-size:36px;
color:#2563eb;
margin-bottom:10px;
}

.stat-card p{
font-size:16px;
font-weight:600;
color:#475569;
}
.section-title{
font-size:32px;
font-weight:700;
color:#0f172a;
margin:40px 0 20px;
padding-left:12px;
border-left:5px solid #2563eb;
}
.badge{
display:inline-block;
background:#dbeafe;
color:#1d4ed8;
padding:5px 12px;
border-radius:20px;
font-size:14px;
font-weight:600;
margin-bottom:10px;
}

@media (max-width:768px){

.stats{
grid-template-columns:repeat(2,1fr);
}

}

.logo-container{
display:flex;
align-items:center;
justify-content:center;
gap:15px;
max-width:600px;
margin:auto;
}

.logo{
width:65px;
height:65px;
border-radius:50%;
background:white;
padding:4px;
}

.job-card{
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
margin-bottom:20px;
}

.job-card h3{
color:#2563eb;   /* Blue title */
margin-bottom:10px;
}

.job-card p{
color:#334155;   /* Dark gray text */
margin-bottom:8px;
}

.updated{
display:inline-block;
background:#dcfce7;
color:#15803d;
padding:4px 10px;
border-radius:20px;
font-size:12px;
font-weight:600;
margin-top:10px;
}

.job-link{
text-decoration:none;
color:inherit;
display:block;
}
