*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color:white;
    min-height:100vh;
}

/* HEADER */
.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 40px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.logo{
    font-size:22px;
    font-weight:700;
    letter-spacing:1px;
}

.nav a{
    color:white;
    margin-left:20px;
    text-decoration:none;
    opacity:0.8;
}

.nav a:hover{
    opacity:1;
}

/* CONTAINER */
.container{
    width:90%;
    max-width:1100px;
    margin:auto;
    padding:40px 0;
}

/* HERO */
.hero{
    text-align:center;
    padding:60px 20px;
}

.hero h1{
    font-size:42px;
    margin-bottom:10px;
}

.hero p{
    opacity:0.7;
    font-size:16px;
}

/* JOB CARDS */
.grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    margin-top:30px;
}

.card{
    background: rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    padding:20px;
    border-radius:16px;
    transition:0.3s;
}

.card:hover{
    transform: translateY(-5px);
    background: rgba(255,255,255,0.09);
}

.btn{
    padding:10px 15px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    background: linear-gradient(90deg,#3b82f6,#06b6d4);
    color:white;
    font-weight:600;
    margin-top:10px;
}

/* FORM */
.form-box{
    width:100%;
    max-width:400px;
    margin:60px auto;
    padding:30px;
    background: rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:16px;
}

input{
    width:100%;
    padding:12px;
    margin:10px 0;
    border-radius:10px;
    border:none;
    outline:none;
}

small a{
    color:#38bdf8;
}

/* MOBILE */
@media(max-width:768px){
    .hero h1{
        font-size:28px;
    }
    .header{
        flex-direction:column;
    }
}