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

body{
background:#0f172a;
color:white;
}

/* NAVBAR */

header{
position:fixed;
width:100%;
top:0;
background:#020617;
padding:15px 8%;
z-index:100;
}

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

.logo{
color:#38bdf8;
font-size:22px;
font-weight:600;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:25px;
}

nav ul li a{
color:white;
text-decoration:none;
font-size:15px;
transition:0.3s;
}

nav ul li a:hover{
color:#38bdf8;
}

/* SECTION */

section{
padding:110px 8%;
text-align:center;
}

h2{
color:#38bdf8;
margin-bottom:40px;
font-size:32px;
}

/* HERO */

.hero{
height:100vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}

.profile{
width:170px;
border-radius:50%;
border:3px solid #38bdf8;
margin-bottom:20px;
}

.hero h1{
font-size:36px;
margin-bottom:10px;
}

.tagline{
color:#94a3b8;
}

/* SOCIAL */

.social{
margin-top:20px;
}

.social a{
color:#38bdf8;
font-size:20px;
margin:0 10px;
}

/* EDUCATION */

.edu-container{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.edu-card{
background:#020617;
padding:25px;
border-radius:10px;
width:240px;
transition:0.3s;
}

.edu-card:hover{
transform:translateY(-6px);
}

/* SKILLS */

.skills-container{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.skill{
background:#020617;
padding:10px 18px;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

.skill.active{
background:#38bdf8;
color:black;
}

/* PROJECTS */

.projects-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.project-card{
background:#020617;
border-radius:12px;
overflow:hidden;
width:320px;
}

.project-card img{
width:100%;
}

.project-content{
padding:20px;
}

/* CERTIFICATES */

.cert-container{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.cert-card{
background:#020617;
padding:20px;
border-radius:10px;
width:260px;
}

.cert-card a{
display:inline-block;
margin-top:10px;
background:#38bdf8;
color:black;
padding:8px 14px;
border-radius:5px;
text-decoration:none;
}

/* RESUME */

.resume-btn{
background:#38bdf8;
color:black;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
margin:10px;
display:inline-block;
}

/* CONTACT */

.contact-info{
display:flex;
justify-content:center;
gap:30px;
margin-bottom:30px;
flex-wrap:wrap;
}

form{
display:flex;
flex-direction:column;
max-width:500px;
margin:auto;
gap:12px;
}

input,textarea{
padding:10px;
background:#020617;
border:none;
color:white;
}

button{
background:#38bdf8;
padding:10px;
border:none;
color:black;
border-radius:5px;
}