/* Reset */

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

/* Global styles */

body{
font-family:'Inter', sans-serif;
background:#f5f7fb;
color:#333;
line-height:1.6;
}

/* Headings */

h1,h2,h3{
font-weight:600;
}

/* Container */
.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 20px 0;
}

/* Header */
header{
text-align:center;
padding:80px 20px;
background:linear-gradient(135deg,#1f2937,#111827);
color:white;
}

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

header p {
    font-size: 1rem;
    margin: 5px 0;
}

/* About Section */
#about {
    padding: 80px 20px;
    text-align: center;
}

#about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1f2937;
}

#about p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
    color: #555;
}

/* Skills Section */

#skills{
padding:60px 0;
text-align:center;
}

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

.skill{
background:white;
padding:12px 20px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
font-weight:500;
}

.skill i{
margin-right:8px;
font-size:18px;
}

/* Projects Section */
#projects {
    padding: 50px 0;
    text-align: center;
}

#projects h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1f2937;
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project-card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:all 0.3s ease;
}

.project-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 30px rgba(0,0,0,0.12);
}

.project-card h3 {
    margin-bottom: 10px;
    color: #1f2937;
}

.project-card p {
    margin-bottom: 15px;
    color: #555;
}

.project-card a{
display:inline-block;
text-decoration:none;
background:#1f2937;
color:white;
padding:8px 14px;
border-radius:6px;
font-weight:500;
transition:all 0.3s ease;
}

.project-card a:hover{
background:#374151;
transform:translateY(-2px);
}

.project-card img{
width:100%;
border-radius:8px;
margin-bottom:15px;
}

body{
animation:fadeIn 0.8s ease-in;
}

@keyframes fadeIn{
from{opacity:0;}
to{opacity:1;}
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background: #1f2937;
    color: #fff;
    margin-top: 50px;
}