/* Resetting default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container a {
  max-width: 1200px;
    margin-left: 25px;
    text-decoration: none;
}
header {
    background-color: #0066cc;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

header .profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
}

header .profile h1 {
    margin: 10px 0;
    font-size: 2.5em;
}

header .profile h2 {
    margin: 5px 0;
    font-size: 1.5em;
    color: #000000;
}

header .profile p {
    margin: 5px 0;
    font-size: 1em;
    color: #ddd;
}

main {
    padding: 20px 0;
}

section {
    margin-bottom: 40px;
}

section1 {
    margin-bottom: 40px;
}
.experience .job h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    display: inline-block;
} 

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    display: inline-block;
}

.job, .project, .education-item {
    margin-bottom: 20px;
}

.job h3, .project h3, .education-item h3 {
    margin: 0;
    font-size: 1.5em;
}

.job p, .project p, .education-item p {
    margin: 5px 0;
    font-style: italic;
    color: #000000;
}

.job ul, .skills-list {
    list-style-type: none;
    padding: 0;
}

.job ul li, .skills-list li {
    background-color: #0066cc;
    color: #fff;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
}

.skills-list li {
    flex: 1 1 30%;
    margin: 5px;
    text-align: center;
}

.contact p {
    font-size: 1.2em;
}

footer {
    background-color: #0066cc;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
.section1 h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    display: inline-block;
}

/* Reset some default styles for better visual consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style for main content */
.content {
    text-align: center;
    padding: 20px;
}

.content h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.content p {
    font-size: 1.2em;
    line-height: 1.6;
}

