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

body{

background:#0d1117;
color:white;

}

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(13,17,23,.85);
    backdrop-filter:blur(15px);

}

nav{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;

}

.nav-links{
    display:flex;
    gap:30px;
    list-style:none;
}
.nav-links li a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

.nav-links li a:hover{
    color:#00d9ff;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.hamburger span{
    width:28px;
    height:3px;
    background:white;
    margin:4px 0;
    transition:.4s;
}
@media (max-width:768px){

.nav-links{

    position:absolute;

    top:80px;
    left:-100%;

    width:100%;

    background:#161b22;

    flex-direction:column;

    align-items:center;

    padding:25px 0;

    transition:.4s;

}

.nav-links.active{

    left:0;

}

.hamburger{

    display:flex;

}

}

nav ul{

display:flex;
list-style:none;

}

nav li{

margin:15px;

}

nav a{

text-decoration:none;
color:white;

}

.logo span{

color:#00d9ff;

}
.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:100vh;
    padding:120px 8%;
    gap:50px;
}

.hero-text{
    flex:0 0 70%;
}

.hero-image{
    flex:0 0 30%;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:320px;
    max-width:100%;
    border-radius:50%;
    border:5px solid #00d9ff;
    box-shadow:0 0 25px rgba(0,217,255,.4);
}

.hero-text h1{
    font-size:3.5rem;
    margin-bottom:15px;
}

.hero-text h3{
    font-size:1.8rem;
    margin-bottom:20px;
    color:#00d9ff;
}

.hero-text p{
    width:80%;
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:35px;
    text-align:left;
}

.hero{

  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:100vh;
  padding:120px 8%;
  gap:50px;

}
.hero-text{
    flex:0 0 70%;
}

.hero img{

    width:320px;
    max-width:100%;
    border-radius:50%;
    display:flex;
    justify-content:center;
    border:5px solid #00d9ff;
    box-shadow:0 0 25px rgba(0,217,255,.4);
     background:rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:30px;

    padding:35px;

    box-shadow:
        0 8px 32px rgba(0,0,0,.35),
        0 0 20px rgba(0,229,255,.15);


}
.hero-text h1{
    font-size:3.5rem;
    margin-bottom:15px;
}

.hero-text h3{
    font-size:1.8rem;
    margin-bottom:20px;
    color:#00d9ff;
}

.hero-text p{
    width:80%;
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:35px;
    text-align:left;
}
.profile-circle{
    position:relative;
    width:380px;
    height:380px;
    border-radius:50%;
    overflow:hidden;
    padding:8px;
    background:linear-gradient(
        135deg,
        #00e5ff,
        #0077ff,
        #00e5ff
    );
    animation:rotateBorder 6s linear infinite;
    box-shadow:
        0 0 25px rgba(0,229,255,.5),
        0 0 60px rgba(0,119,255,.3);
}
.profile-circle img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
    object-position:center top;
    display:block;
    background:#111;
}

.hero-image{
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

.btn{

background:#00d9ff;
padding:15px 30px;
color:black;
text-decoration:none;
border-radius:30px;

}

section{

padding:80px;

}

.bar{

background:#333;
height:15px;
border-radius:20px;
margin-bottom:20px;

}

.bar span{

display:block;
height:100%;
background:cyan;
border-radius:20px;

}

#project-list{

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

}

.project{

background:#161b22;
padding:20px;
border-radius:15px;

}

.server{

display:inline-block;

width:70px;

height:70px;

background:cyan;

margin:10px;

border-radius:10px;

animation:pulse 1s infinite;

}

@keyframes pulse{

50%{

transform:scale(1.1);

}

}

input,textarea{

width:100%;

padding:15px;

margin:10px 0;

}

button{

padding:15px 30px;
cursor:pointer;

}