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

/* Body */
body { 
    font-family:Arial, Helvetica, sans-serif ;
    color: slategray;
    background:white ;
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between; 
    padding: 16px 40px;
    background: white; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size:22px;
    font-weight: bold;
    color: #6366f1;
}

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

nav ul li a {
    text-decoration: none;
    color: #1e293b;
}

nav ul li a:hover {
    color: #6366f1;
}

#hero {
    background: #f8fafc;
    padding: 80px 40px;
    text-align: center;
}

#hero h1 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 12px;
}

#hero p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 8px;
}

.hero-btns {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    background: #6366f1;
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    border: 2px solid #6366f1;
    color: #6366f1;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}
/*About*/
#about{
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
#about h2 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 16px;
}
#about p{
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

/*Skills*/
#skills{
    background-color: #f8fafc;
    padding: 60px 40px;
    text-align: center;
}
#skills h2{
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 24px;
}
.skill-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.skill-chip{
    background: #ede9fe;
    color: #5b21b6;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}
/* Contact */
#contact{
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
#contact h2{
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 24px;
}
#contact form{
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}
#contact input,
#contact textarea{
    width: 100%;
    padding: 10px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;

}
#contact input:focus,
#contact textarea:focus{
    border-color: #6366f1;
}
#contact textarea{
    height: 120px;
    resize: vertical;
}
#contact button{
    background: #6366f1;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
#contact button:hover{
    background: #4f46e5;
}
/* Footer*/
footer{
    background: #1e293b;
    color: #94a3b8;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
