*{
    box-sizing:border-box;
}
.profile{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid white;
}
body{
    font-family:Arial, sans-serif;
    margin:0;
    background:#f1f5f9;
    color:#333;
    text-align:center;
}

/* Projects */

.project-card{
    background:white;
    width:320px;
    margin:20px auto;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    text-align:center;
}

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

.project-card p{
    color:#555;
}

.project-card a,
button{
    display:inline-block;
    background:#2563eb;
    color:white;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    border:none;
    margin-top:15px;
}


/* Skills */

.skill-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.skill-card{
    background:white;
    width:280px;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    text-align:center;
}


/* Contact */

.contact-btn{
    background:#2563eb;
    color:white;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    display:inline-block;
    margin:10px;
}


/* Mobile */

@media(max-width:600px){

.project-card,
.skill-card{
    width:85%;
}

nav a{
    padding:8px;
    font-size:12px;
}

}
nav{
    background:#111827;
    padding:15px;
    position:sticky;
    top:0;
    z-index:100;
}

nav a{
    color:white;
    text-decoration:none;
    margin:8px;
}
header{
    background:#2563eb;
    color:white;
    padding:60px 20px;
}


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


section{
    padding:30px 15px;
}


h2{
    color:#2563eb;
    font-size:28px;
}


.card{
    background:white;
    max-width:500px;
    margin:20px auto;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}
.card a {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 15px;
}

.card a:hover {
    background: #1d4ed8;
}


.card h3{
    color:#2563eb;
}
html{
    scroll-behavior:smooth;
}


nav{
    background:#111827;
    padding:15px;
    position:sticky;
    top:0;
    z-index:100;
}


nav a{
    background:#2563eb;
    color:white;
    padding:10px 18px;
    margin:5px;
    border-radius:5px;
    text-decoration:none;
    display:inline-block;
}


nav a:hover{
    background:#1d4ed8;
}


.hire-btn{
    display:inline-block;
    margin-top:20px;
    background:white;
    color:#2563eb;
    padding:12px 30px;
    border-radius:25px;
    text-decoration:none;
    font-weight:bold;
}


.hire-btn:hover{
    background:#111827;
    color:white;
}

a{
    background:#2563eb;
    color:white;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    display:inline-block;
}


footer{
    background:#111827;
    color:white;
    padding:20px;
}
.skill-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.skill-card{
    background:white;
    width:280px;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}
.social-icons {
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    margin: 8px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
    background: #111827;
}

.skill-card:hover{
    transform:translateY(-10px);
}

.skill-card h3{
    color:#2563eb;
}
#contact {
    margin-top: 50px;
    padding: 30px;
}
