/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header Section */
header {
    text-align: center;
    margin-bottom: 20px;
}

header .profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #333;
}

header h1 {
    margin: 10px 0 5px;
    font-size: 2em;
    color: #2c3e50; /* Dark blue for heading */
}

header p {
    margin: 0;
    font-size: 1.1em;
    color: #555;
}
/* Navigation Bar */
.navbar {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar li {
    padding: 14px 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    background-color: #575757;
    color: white;
}



/* Section Headings */
h2 {
    border-bottom: 2px solid #2c3e50; /* Dark blue for section headings */
    padding-bottom: 5px;
    margin-top: 20px;
    font-size: 1.5em;
    color: #2c3e50;
}

/* Lists */
ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Job and Education Sections */
.job, .degree {
    margin-bottom: 20px;
}

.job h3, .degree h3 {
    margin: 0;
    font-size: 1.2em;
    color: #34495e; /* Slightly lighter blue for subheadings */
}

.job p, .degree p {
    margin: 5px 0;
    color: #666;
}

.job .date, .degree .date {
    font-weight: bold;
    color: #e74c3c; /* Red for dates */
}

.job .location, .degree .location {
    font-style: italic;
    color: #666;
}

/* Hover Effects */
.job:hover, .degree:hover {
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 600px) {
    header .profile img {
        width: 100px;
        height: 100px;
    }

    header h1 {
        font-size: 1.5em;
    }

    header p {
        font-size: 0.9em;
    }

    h2 {
        font-size: 1.2em;
    }

    .job h3, .degree h3 {
        font-size: 1em;
    }

    .job p, .degree p {
        font-size: 0.9em;
    }
}

/* Work History Section - Card Style */
.work-history .job {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.work-history .job:hover {
    background-color: #f5f5f5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}