*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#0f172a;
    color:white;
}

nav{
    position:fixed;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(15,23,42,.95);
    z-index:100;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#eaecf0;
}

section{
    padding:100px 8%;
    min-height:100vh;
}

.hero{
    display:flex;
    align-items:center;
}

.hero h1{
    font-size:60px;
    margin-bottom:10px;
}

.hero h3{
    color:#f2f7fe;
    margin-bottom:20px;
}

.hero p{
    max-width:600px;
    color:#cbd5e1;
    line-height:1.8;
}

.btn{
    margin-top:25px;
    display:inline-block;
    padding:12px 25px;
    background:#2563eb;
    border-radius:8px;
    color:white;
    text-decoration:none;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    margin-top:30px;
}

.card{
    background:#1e293b;
    border-radius:12px;
    padding:25px;
    transition:.3s;
    cursor:pointer;
}

.card:hover{
    transform:translateY(-8px);
}

.skills span{
    display:inline-block;
    margin:8px;
    padding:10px 18px;
    background:#1e293b;
    border-radius:30px;
}

.timeline-item{
    margin:20px 0;
    border-left:2px solid #2563eb;
    padding-left:20px;
}

#contact a{
    color:#3b82f6;
    text-decoration:none;
}

#contact a:hover{
    text-decoration:underline;
}

footer{
    text-align:center;
    padding:30px;
    border-top:1px solid #334155;
}

.fade{
    opacity:0;
    transform:translateY(30px);
    transition:1s;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* Mobile */

@media(max-width:768px){

    .hero h1{
        font-size:40px;
    }

    nav ul{
        gap:15px;
        font-size:14px;
    }

}

#particles-js{
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:-1;
}

.project-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));

    gap:30px;

    margin-top:50px;

}

.project-card{

    background:#1e293b;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    cursor:pointer;

}

.project-card:hover{

    transform:translateY(-10px);

}

.project-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.project-content{

    padding:25px;

}

.project-content h3{

    margin-bottom:10px;

}

.project-content span{

    color:#f5b56b;

    font-size:14px;

    display:block;

    margin-bottom:15px;

}

.project-content p{

    color:#cbd5e1;

    line-height:1.7;

}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#f5b56b;
    letter-spacing:2px;
    font-size:14px;
}

.section-title h2{
    margin-top:10px;
    font-size:42px;
}

.journey-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.journey-card{

    background:rgba(30,41,59,.75);

    border:1px solid rgba(255,255,255,.06);

    border-radius:20px;

    padding:30px;

    transition:.4s;

    backdrop-filter:blur(10px);

}

.journey-card:hover{

    transform:translateY(-10px);

}

.journey-card.featured{

    border:1px solid rgba(245,181,107,.35);

    box-shadow:
    0 10px 30px rgba(245,181,107,.08);

}

.year-tag{

    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:rgba(245,181,107,.15);

    color:#f5b56b;

    font-size:14px;

    margin-bottom:20px;

}

.journey-card h3{

    margin-bottom:8px;

}

.journey-card h4{

    color:#cbd5e1;

    margin-bottom:15px;

}

.journey-card p{

    color:#94a3b8;

    line-height:1.8;

}

/* CONTACT */

.contact-grid{

    margin-top:50px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(160px,1fr));

    gap:25px;

}

.contact-card{

    background:#1e293b;

    padding:30px 20px;

    border-radius:18px;

    text-align:center;

    text-decoration:none;

    color:white;

    transition:.4s;

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 10px 30px rgba(255,180,120,.12);

}

.contact-card img{

    width:45px;

    height:45px;

    margin-bottom:15px;

}

.contact-card p{

    font-size:15px;

    font-weight:500;

}