body{
font-family: Arial, sans-serif;
margin:0;
background:#0f172a;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:center;
align-items:center;
gap:40px;
background:#0f172a;
padding:15px;
position:sticky;
top:0;
z-index:100;
}

.navbar li{
list-style:none;
}

.navbar a{
color:white;
text-decoration:none;
font-size:18px;
font-weight:500;
padding:8px 10px;
transition:0.3s;
}

.navbar a:hover{
color:#38bdf8;
border-bottom:2px solid #38bdf8;
}
/* NAME */
h1{
text-align:center;
margin-top:80px;
font-size:38px;
color:white;
font-weight:700;
text-shadow:0 0 12px rgba(255,255,255,0.6);
}

.subtitle{
text-align:center;
color:#cbd5f5;
font-size:18px;
margin-top:5px;
letter-spacing:1px;
}

/* PROFILE PHOTO */

.profile{
display:block;
margin:auto;
width:200px;
height:200px;
border-radius:50%;
object-fit:cover;
object-position:50% 30%;
border:4px solid #3b82f6;
box-shadow:0 0 20px rgba(59,130,246,0.6);
}

.profile:hover{
transform:scale(1.05);
box-shadow:0 0 25px rgba(59,130,246,0.7);
}

/* SECTION DESIGN */

section{
background:linear-gradient(135deg,#ffffff,#f1f5f9);
margin:30px auto;
padding:30px;
width:85%;
max-width:1100px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transition:0.4s;
}

/* SECTION HOVER */

section:hover{
transform:translateY(-6px);
background:linear-gradient(135deg,#ffffff,#e2e8f0);
box-shadow:0 15px 30px rgba(0,0,0,0.25);
}

/* SECTION TITLES */

section h2{
color:#0f172a;
font-size:28px;
margin-bottom:20px;
border-left:4px solid #2563eb;
padding-left:10px;
}

/* ABOUT TEXT */

.about-text{
text-align:justify;
line-height:1.8;
font-size:16px;
}

/* SKILLS LIST */

/* SKILLS SECTION */

.skills-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-top:20px;
}

.skill-card{
background:white;
padding:22px;
width:260px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
transition:0.3s;
text-align:center;
}

.skill-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 20px rgba(0,0,0,0.2);
background:#f8fafc;
}

.skill-card h3{
color:#1e293b;
margin-bottom:10px;
font-size:20px;
}

.skill-card p{
color:#475569;
}
.skill-card h3,
.skill-card p{
transition:0.3s;
}

.skill-card:hover h3{
color:#2563eb;
}

.skill-card:hover p{
color:#334155;
}
/* SOCIAL BUTTONS */

.social-btn{
display:inline-block;
margin-top:15px;
margin-right:10px;
padding:10px 20px;
background:#2563eb;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:500;
transition:0.3s;
}

.social-btn:hover{
background:#1d4ed8;
transform:scale(1.05);
}

/* PROJECT SECTION */

.project-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-top:25px;
}

.project-card{
background:white;
padding:25px;
width:300px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
transition:0.3s;
text-align:justify;
line-height:1.6;
}

.project-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

/* TECH TAGS */

.tech-stack{
margin-top:12px;
}

.tech-stack span{
display:inline-block;
background:#e2e8f0;
color:#1e293b;
padding:5px 10px;
margin-right:8px;
border-radius:6px;
font-size:13px;
font-weight:500;
}
.project-card h3,
.project-card p{
transition:0.3s;
}

.project-card:hover h3{
color:#2563eb;
}

.project-card:hover p{
color:#334155;
}
.project-card:hover .tech-stack span{
background:#2563eb;
color:white;
}

/* EDUCATION */

#education h2{
text-align:center;
margin-bottom:30px;
}

.education-container{
display:flex;
justify-content:center;
align-items:stretch;
gap:30px;
flex-wrap:wrap;
margin-top:25px;
}

.education-card{
background:white;
padding:22px;
width:280px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
transition:0.3s;
text-align:center;
}

.education-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 20px rgba(0,0,0,0.2);
background:#f8fafc;
}

.education-card h3{
margin-bottom:10px;
font-size:20px;
color:#1e293b;
transition:0.3s;
}

.education-card p{
margin:6px 0;
color:#475569;
}

.education-card:hover h3{
color:#2563eb;
}

#particles-js{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;
background:#0f172a;
}

#contact{
margin-bottom:80px;
}

.footer{
text-align:center;
padding:25px 0 60px 0;
margin-top:60px;
background:#020617;
color:#e2e8f0;
font-size:14px;
letter-spacing:1px;
border-top:1px solid rgba(255,255,255,0.15);
position:relative;
z-index:10;
}

/* CONTACT SECTION */

.contact-info{
margin-top:15px;
}

.contact-item{
margin-bottom:18px;
}

.contact-item h3{
color:#0f172a;
margin-bottom:5px;
font-size:18px;
}

.contact-item p{
color:#475569;
font-size:16px;
}

.contact-buttons{
margin-top:20px;
}
.resume-btn{
display:block;
margin:20px auto;
padding:12px 22px;
background:#2563eb;
color:white;
text-decoration:none;
border-radius:8px;
font-weight:500;
width:180px;
text-align:center;
transition:0.3s;
}

.resume-btn:hover{
background:#1d4ed8;
transform:scale(1.05);
}
