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

/* General Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

/* Header Styling */
header {
    background-color: #2a3d66;
    color: white;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

header .profile-image {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2rem;
}

header p {
    font-size: 1rem;
    color: #ffcc00;
}

/* Section Styling */
section {
    padding: 40px 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    color: #2a3d66;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    color: #555;
}

/* Skills Section */
.skills {
    text-align: center;
}

.skills h2 {
    font-size: 2rem;
    color: #2a3d66;
    margin-bottom: 20px;
}

.skills ul {
    list-style: none;
    padding: 0;
}

.skills li {
    font-size: 1.1rem;
    margin: 8px 0;
    color: #555;
}

/* Projects Section */
.projects {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.projects h2 {
    font-size: 2rem;
    color: #2a3d66;
    text-align: center;
    margin-bottom: 20px;
}

.project {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.project:last-child {
    border-bottom: none;
}

.project h3 {
    font-size: 1.5rem;
    color: #2a3d66;
}

.project p {
    font-size: 1rem;
    color: #777;
}

/* Contact Section */
.contact {
    background-color: #2a3d66;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.contact button {
    padding: 10px 20px;
    background-color: #ffcc00;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

.contact button:hover {
    background-color: #ff9900;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
