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

html{
scroll-behavior:smooth;
}

:root{
--bg:#0b1120;
--card:#111827;
--primary:#3b82f6;
--secondary:#8b5cf6;
--text:#ffffff;
--text2:#94a3b8;
}

body{
font-family:'Poppins',sans-serif;
background:var(--bg);
color:var(--text);
overflow-x:hidden;
}

/* ===== PARTICLES BACKGROUND ===== */

#particles{
position:fixed;
inset:0;
z-index:-2;
}

body::before{
content:'';
position:fixed;
width:500px;
height:500px;
background:rgba(59,130,246,.15);
filter:blur(120px);
top:-150px;
left:-100px;
z-index:-1;
}

body::after{
content:'';
position:fixed;
width:500px;
height:500px;
background:rgba(139,92,246,.15);
filter:blur(120px);
right:-150px;
bottom:-150px;
z-index:-1;
}

/* ===== NAVBAR ===== */

.navbar{
max-width:1200px;
margin:auto;
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;

```
position:sticky;
top:0;

backdrop-filter:blur(12px);

z-index:1000;
```

}

.logo{
font-size:1.4rem;
font-weight:700;
color:var(--primary);
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
color:white;
text-decoration:none;
transition:.3s;
}

.nav-links a:hover{
color:var(--primary);
}

/* ===== HERO ===== */

.hero{
min-height:100vh;

```
max-width:1200px;
margin:auto;

display:flex;
align-items:center;
justify-content:space-between;

gap:60px;

padding:50px 20px;
```

}

.hero-content{
flex:1;
}

.hero-tag{
display:inline-block;

```
padding:10px 18px;

border-radius:999px;

background:rgba(59,130,246,.15);

border:1px solid rgba(59,130,246,.3);

color:var(--primary);
```

}

.hero h1{
font-size:4.5rem;
margin-top:20px;
}

.hero h2{
margin-top:15px;
color:var(--primary);
min-height:50px;
}

.hero p{
margin-top:20px;
line-height:1.9;
color:var(--text2);
max-width:650px;
}

.hero-badges{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:20px;
}

.hero-badges span{
padding:8px 15px;
border-radius:50px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
}

.hero-buttons{
margin-top:30px;
display:flex;
gap:15px;
}

.btn-primary,
.btn-secondary{
padding:14px 26px;
border-radius:12px;
text-decoration:none;
transition:.3s;
}

.btn-primary{
background:var(--primary);
color:white;
}

.btn-secondary{
border:1px solid var(--primary);
color:white;
}

.btn-primary:hover,
.btn-secondary:hover{
transform:translateY(-4px);
}

/* ===== PROFILE ===== */

.hero-image{
flex:1;
display:flex;
justify-content:center;
}

.profile-card{
width:380px;

```
padding:12px;

border-radius:30px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

transition:.4s;

box-shadow:
0 0 40px rgba(59,130,246,.25);
```

}

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

.profile-card img{
width:100%;
border-radius:20px;
}

/* ===== GENERAL ===== */

section{
padding:100px 20px;
}

section h2{
text-align:center;
margin-bottom:50px;
font-size:2.5rem;
}

/* ===== STATS ===== */

.stats{
max-width:1200px;
margin:auto;

```
display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;
```

}

.stat-card{
text-align:center;

```
padding:35px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:20px;
```

}

.stat-card h3{
color:var(--primary);
font-size:2.5rem;
}

/* ===== GLASS CARD ===== */

.glass-card{
max-width:900px;
margin:auto;

```
background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

padding:40px;

border-radius:25px;

text-align:center;
```

}

.glass-card p{
line-height:2;
color:var(--text2);
}

/* ===== SKILLS ===== */

.skills-grid{
max-width:1200px;
margin:auto;

```
display:grid;

grid-template-columns:
repeat(auto-fit,minmax(180px,1fr));

gap:20px;
```

}

.skill-card{
padding:25px;

```
text-align:center;

background:rgba(255,255,255,.05);

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

transition:.3s;
```

}

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

```
box-shadow:
0 0 20px rgba(59,130,246,.3);
```

}

/* ===== PROJECTS ===== */

.projects-grid{
max-width:1200px;
margin:auto;

```
display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:25px;
```

}

.project-card{
background:rgba(255,255,255,.05);

```
border:1px solid rgba(255,255,255,.08);

border-radius:25px;

padding:30px;

transition:.3s;
```

}

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

.project-card i{
font-size:2rem;
color:var(--primary);
margin-bottom:20px;
}

.project-card h3{
margin-bottom:15px;
}

.project-card p{
color:var(--text2);
line-height:1.8;
}

/* ===== TIMELINE ===== */

.timeline{
max-width:800px;
margin:auto;
}

.timeline-item{
background:rgba(255,255,255,.05);

```
border-left:4px solid var(--primary);

padding:30px;

border-radius:15px;
```

}

.timeline-item span{
color:var(--primary);
}

/* ===== CONTACT ===== */

.contact-card{
max-width:700px;
margin:auto;

```
padding:40px;

background:rgba(255,255,255,.05);

border-radius:25px;

text-align:center;
```

}

.contact-card p{
margin:15px 0;
}

.social-links{
margin-top:30px;

```
display:flex;
justify-content:center;
gap:20px;
```

}

.social-links a{
width:55px;
height:55px;

```
display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

background:rgba(255,255,255,.08);

color:white;

text-decoration:none;

transition:.3s;
```

}

.social-links a:hover{
background:var(--primary);
transform:translateY(-5px);
}

/* ===== FOOTER ===== */

footer{
text-align:center;
padding:30px;
color:var(--text2);
}

/* ===== ANIMATION ===== */

.hidden{
opacity:0;
transform:translateY(40px);
}

.show{
opacity:1;
transform:translateY(0);
transition:.8s ease;
}

/* ===== MOBILE ===== */

@media(max-width:900px){

```
.hero{
    flex-direction:column-reverse;
    text-align:center;
}

.hero h1{
    font-size:3rem;
}

.hero p{
    margin:auto;
    margin-top:20px;
}

.hero-buttons{
    justify-content:center;
}

.hero-badges{
    justify-content:center;
}

.nav-links{
    display:none;
}

.profile-card{
    width:280px;
}
```

}
/* PARTICLES */

.particle{

```
position:absolute;

width:4px;
height:4px;

border-radius:50%;

background:
rgba(255,255,255,.5);

animation:
floatParticle linear infinite;
```

}

@keyframes floatParticle{

```
0%{
    transform:
    translateY(0);
    opacity:0;
}

50%{
    opacity:1;
}

100%{
    transform:
    translateY(-120px);
    opacity:0;
}
```

}
