* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0f172a;
    color: #e2e8f0;
}


header {
    background: #020617;
    padding: 15px 50px;
    position: sticky;
    top: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #38bdf8;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #e2e8f0;
    text-decoration: none;
}

nav ul li a:hover {
    color: #38bdf8;
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 40px;
}

.hero p {
    color: #94a3b8;
    margin: 10px 0;
}



/* Sections */
.section {
    padding: 60px 50px;
}

.section h2 {
    color: #38bdf8;
    margin-bottom: 20px;
}

/* Skills */

.skills-list {
    display: flex;
    flex-direction: column;  
    gap: 10px;
}

.skills-list li {
    background: #1e293b;
    padding: 8px 12px;
    border-radius: 5px;
}

/* Projects */
.project-card {
    background: #1e293b;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}
.edu-card {
    background: #1e293b;
    padding: 15px;
    margin: 10px 0;
    border-radius: 6px;
    transition: 0.3s;
}

.edu-card:hover {
    background: #334155;
    transform: translateY(-5px);
}

/*form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

input, textarea {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

button {
    padding: 10px;
    background: #38bdf8;
    border: none;
}

button:hover {
    background: #0ea5e9;
}

footer {
    text-align: center;
    padding: 20px;
    background: #020617;
}*/
/* Contact Section */
#contact {
    text-align: center;
}

#contact p {
    margin: 10px 0;
    color: #94a3b8;
}

#contact a {
    color: #38bdf8;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
    transition: 0.3s;
}

#contact a:hover {
    color: #0ea5e9;
    text-decoration: underline;
}
