/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}

header {
    text-align: center;
    padding: 60px 20px;
    background: #4a90e2;
    color: white;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
}

h2 {
    font-size: 1.8rem;
    color: #4a90e2;
    margin-bottom: 10px;
}

/* Skills List */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    background: white;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
}
/* Navigation Bar */
nav {
    background: white;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 0;
}

nav ul li {
    margin: 0 20px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #4a90e2;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #0d6efd;
}

/* Project Card Styling */
.project-card {
    background: white;
    padding: 20px;
    margin: 15px 0;
    border-radius: 12px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
}

.project-card h3 {
    margin: 0 0 10px;
    color: #4a90e2;
}

/* Social Profiles Section */
#social ul {
    list-style: none;
    padding: 0;
}

#social ul li {
    margin: 10px 0;
}

#social ul li a {
    text-decoration: none;
    color: #4a90e2;
    font-size: 1.1rem;
    font-weight: 600;
}

#social ul li a:hover {
    color: #0d6efd;
}

#contact p {
    font-size: 1.1rem;
    margin: 8px 0;
}
