/* Reset and basic styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    background-color: #f0f0f0;
    color: #333;
}

/* Container */
.container {
    width: 85%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* About Section */
.about {
    background: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-radius: 10px;
}

.profile {
    flex: 1;
    text-align: center;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.bio {
    flex: 2;
    padding: 20px;
}

.bio p {
    text-align: justify;
}

/* Experience Section */
.experience {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.timeline {
    margin-top: 20px;
}

.timeline-item {
    margin-bottom: 20px;
    border-left: 4px solid #333;
    padding-left: 15px;
}

/* Projects Section */
.projects {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project-item {
    flex: 1;
    min-width: 250px;
    border-radius: 10px;
    overflow: hidden;
    background: #333;
    color: #fff;
    text-align: center;
}

.project-item img {
    width: 100%;
    height: auto;
}

.project-item h3 {
    padding: 10px 0;
}

.project-item p {
    padding: 0 10px 10px;
}

/* Contact Section */
.contact {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    border-radius: 10px;
}

.contact ul {
    list-style: none;
    padding-top: 10px;
}

.contact ul li {
    display: inline;
    margin: 0 10px;
}

.contact ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px 0;
    background: #333;
    color: #fff;
    margin-top: 20px;
    border-radius: 10px;
}
