* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(to right, #e0f7fa, #e1bee7);
    color: #333;
}

header {
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #7b1fa2;
}

.hero {
    padding: 4rem 2rem;
    text-align: center;
    background: #fce4ec;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6a1b9a;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn {
    padding: 0.7rem 1.5rem;
    background-color: #7ca5f3;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #4a148c;
}

section {
    padding: 3rem 2rem;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #4a148c;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-list article:hover {
    background-color: #efb7f8;

}

.project-list article {
    padding: 1rem;
    background-color: #f3e6f5;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.certifications ul {
    list-style: square;
    padding-left: 1.5rem;
    color: #4a148c;
}

.experience ul {
    list-style: square;
    padding-left: 1.5rem;
    color: #4a148c;
}

.contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input,
textarea {
    padding: 0.8rem;
    border: 1px solid #bbb;
    border-radius: 5px;
}

footer {
    background-color: #4a148c;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

.social-icons {
    display: inline-block;
    width: 60px;
    height: 10px;

}