```css
/* Smooth scrolling */

html{
scroll-behavior:smooth;
}

/* General layout */

body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background: linear-gradient(135deg, #0f172a, #1e293b);
color:#e5e7eb;
overflow-x:hidden;
}

/* Floating background */

.bg-animation{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
overflow:hidden;
z-index:-1;
}

.bg-animation span{
position:absolute;
display:block;
width:200px;
height:200px;
background:rgba(56,189,248,0.08);
border-radius:50%;
animation:float 20s linear infinite;
}

@keyframes float{
0%{
transform:translateY(0) rotate(0deg);
}
100%{
transform:translateY(-1000px) rotate(360deg);
}
}

/* Navigation */

nav{
background:#020617;
padding:18px;
position:sticky;
top:0;
text-align:center;
box-shadow:0 2px 10px rgba(0,0,0,0.6);
}

nav a{
margin:20px;
text-decoration:none;
color:#cbd5f5;
font-weight:bold;
font-size:16px;
}

nav a:hover{
color:#38bdf8;
}

/* Hero Section (NO IMAGE NOW) */

header{
height:90vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
}

/* Profile image */

.profile-pic{
width:150px;
height:150px;
border-radius:50%;
object-fit:cover;
border:4px solid #38bdf8;
margin-bottom:20px;
}

/* Title */

header h1{
font-size:60px;
margin:10px;
}

header p{
font-size:22px;
color:#cbd5f5;
}

/* Buttons */

.btn{
display:inline-block;
margin-top:20px;
padding:12px 25px;
background:#38bdf8;
color:white;
text-decoration:none;
border-radius:8px;
font-weight:bold;
transition:0.3s;
}

.btn:hover{
background:#0284c7;
transform:translateY(-2px);
}

/* Sections */

section{
padding:40px 15%;
margin-top:10px;
}

/* Section titles */

h2{
margin-bottom:25px;
font-size:32px;
color:#38bdf8;
}

/* Skills */

.skill-bar{
background:#1e293b;
height:10px;
border-radius:5px;
margin-bottom:20px;
}

.skill-level{
background:#38bdf8;
height:10px;
border-radius:5px;
}

/* Project container */

.projects-container{
display:flex;
gap:20px;
flex-wrap:wrap;
}

/* Project cards */

.project-card{
background:#1e293b;
padding:25px;
border-radius:12px;
width:260px;
box-shadow:0 4px 20px rgba(0,0,0,0.5);
transition:0.3s;
}

.project-card:hover{
transform:translateY(-8px);
box-shadow:0 8px 30px rgba(0,0,0,0.7);
}

/* Gallery */

.gallery-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.gallery-container img{
width:100%;
border-radius:10px;
box-shadow:0 4px 20px rgba(0,0,0,0.5);
transition:0.3s;
}

.gallery-container img:hover{
transform:scale(1.05);
}

/* Footer */

footer{
text-align:center;
padding:30px;
background:#020617;
color:#94a3b8;
margin-top:40px;
}
```
