.profile-container{
display:flex;
justify-content:center;
margin-bottom:30px;
perspective:1600px;
}

#profile{

width:200px;
height:200px;
border-radius:50%;
object-fit:cover;

border:3px solid #a0d6da;

box-shadow:
0 0 10px #acf09e,
0 0 30px #a1cf35;

transition:transform 0.2s;

}

/* Glow Animation */

@keyframes glow{

0%{
box-shadow:
0 0 20px #22c55e,
0 0 30px #22c55e;
}

100%{
box-shadow:
0 0 30px #5be484,
0 0 60px #02ebf3c4;
}

}

#profile{

animation: glow 1s infinite alternate;

}




*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#0f172a;
color:white;
line-height:1.6;
overflow-x:hidden;
}

/* Matrix Canvas */

#matrix{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;
}

/* Header */

header{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(135deg,#9fbcddde,#584e5877);
}

header h1{
font-size:50px;
margin-bottom:10px;
}

header p{
font-size:20px;
color:#d4d8dd;
}

/* Navigation */

nav{
position:fixed;
top:0;
width:100%;
background:#020617;
padding:15px;
text-align:center;
z-index:100;
}

nav a{
color:white;
margin:0 15px;
text-decoration:none;
font-weight:bold;
}

/* Sections */

section{
padding:80px 10%;
}

h2{
font-size:32px;
margin-bottom:30px;
border-left:4px solid #3b82f6;
padding-left:10px;
}

/* Cards */

.card{
background:#1e293b;
padding:25px;
margin:20px 0;
border-radius:10px;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.5);
}

/* Skills */

.skills{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.skill{
background:#020617;
padding:15px;
border-radius:8px;
}

.bar{
height:8px;
background:#fbfdff;
margin-top:10px;
border-radius:10px;
overflow:hidden;
}

.progress{
height:100%;
background:#3b82f6;
width:0%;
transition:1.5s;
}

/* Footer */

footer{
text-align:center;
padding:40px;
background:#020617;
color:#94a3b8;
}

button{
background:#3b82f6;
border:none;
padding:10px 20px;
margin-top:20px;
color:white;
border-radius:5px;
cursor:pointer;
}