*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Cairo',sans-serif;
}

body{
    background:#0f172a;
    color:white;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* NAVBAR */

nav{
    padding:20px 0;
    background:#111827;
    position:sticky;
    top:0;
    z-index:999;
}

.nav-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:800;
    color:#38bdf8;
}

.nav-links{
    display:flex;
    gap:20px;
}

.nav-links a{
    color:white;
    text-decoration:none;
}

/* HERO */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hero-text h1{
    font-size:55px;
    margin-bottom:20px;
}

.hero-text span{
    color:#38bdf8;
}

.hero-text p{
    line-height:2;
    color:#cbd5e1;
    margin-bottom:30px;
}

.main-btn{
    display:inline-block;
    background:#38bdf8;
    color:black;
    padding:14px 30px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
}

.hero-image .card{
    background:#1e293b;
    padding:25px;
    border-radius:20px;
    margin-bottom:20px;
    transition:.4s;
}

.hero-image .card:hover{
    transform:translateY(-10px);
}

/* JOBS */

.jobs{
    padding:100px 0;
}

.section-title{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

.jobs-grid{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
}

.job-card{
    background:#346add;
    padding:30px;
    border-radius:24px;
    transition:.4s;
}

.job-card:hover{
    transform:translateY(-10px);
}

.icon{
    font-size:45px;
    margin-bottom:20px;
}

.job-card h3{
    margin-bottom:15px;
}

.job-card p{
    color:#e7eaee;
    line-height:1.8;
    margin-bottom:25px;
}

.job-btn{
    display:inline-block;
    background:#38bdf8;
    color:black;
    padding:12px 25px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
}

/* ABOUT */

.about{
    padding:100px 0;
}

.about-text{
    text-align:center;
    line-height:2;
    color:#cbd5e1;
    max-width:700px;
    margin:auto;
}

/* DETAILS PAGE */

.details-page{
    padding:80px 0;
}

.details-box{
    background:#111827;
    padding:40px;
    border-radius:30px;
}

.details-box h1{
    margin-bottom:20px;
    font-size:40px;
}

.desc{
    color:#cbd5e1;
    margin-bottom:40px;
}

.info-box{
    margin-bottom:35px;
}

.info-box h2{
    margin-bottom:15px;
    color:#38bdf8;
}

.info-box ul{
    padding-right:20px;
}

.info-box li{
    margin-bottom:10px;
    color:#cbd5e1;
}

.apply-btn{
    display:inline-block;
    background:#38bdf8;
    color:black;
    padding:15px 35px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:900px){

.hero-content{
    grid-template-columns:1fr;
}

.hero-text h1{
    font-size:40px;
}

.nav-links{
    display:none;
}

}