/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 40px 0;
}

/* Header */
header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 60px 0;
}

header h1 {
    font-size: 3.5em;
}

header p {
    font-size: 1.5em;
    margin-top: 10px;
}

.cta-btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.cta-btn:hover {
    background-color: #0056b3;
}

/* About Me Section */
#about {
    background-color: white;
    padding: 60px 0;
}

#about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Skills Section */
#skills {
    background-color: #f4f4f9;
    padding: 60px 0;
}

#skills h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

ul li {
    font-size: 1.3em;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Projects Section */
#projects {
    background-color: white;
    padding: 60px 0;
}

#projects h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.project {
    margin-bottom: 30px;
    text-align: center;
}

.project h3 {
    font-size: 2em;
    margin-bottom: 10px;
}

.project a {
    text-decoration: none;
    color: #007bff;
    font-size: 1.2em;
}

.project a:hover {
    text-decoration: underline;
}

/* Contact Section */
#contact {
    background-color: #f4f4f9;
    padding: 60px 0;
}

#contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

ul li {
    font-size: 1.3em;
    margin: 10px 0;
}

ul li a {
    text-decoration: none;
    color: #007bff;
}

ul li a:hover {
    text-decoration: underline;
}

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