/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header */
.header {
    background: #0073e6;
    color: #fff;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.header .nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.header .nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.header .nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    text-align: center;
    background: linear-gradient(to bottom, #0073e6, #005bb5);
    color: #fff;
    padding: 2rem 1rem;
}

.hero .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #fff;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero .btn {
    background: #fff;
    color: #0073e6;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero .btn:hover {
    background: #f1f1f1;
}

/* Section Styles */
section {
    padding: 2rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #0073e6;
}

/* About Section */
.about p {
    text-align: center;
    font-size: 1.1rem;
}

/* Work History */
.work-history .job {
    margin-bottom: 1.5rem;
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.work-history .job h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.work-history .job p {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.work-history .job ul {
    list-style: disc;
    margin-left: 1.5rem;
}
/* Projects Section */
.projects {
    padding: 2rem 0;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
}

.project-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.project-card h3 {
    margin: 1rem 0;
    color: #0073e6;
}

.project-card p {
    padding: 0 1rem 1rem;
    font-size: 1rem;
    color: #555;
}


/* Skills Section */
.skills ul {
    list-style: square;
    margin-left: 2rem;
    font-size: 1rem;
    color: #555;
}

/* Education Section */
.education ul {
    list-style: none;
    padding: 0;
}

.education ul li {
    margin-bottom: 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    text-align: center;
    background: #0073e6;
    color: #fff;
    padding: 2rem 1rem;
}

.contact a {
    color: #fff;
    text-decoration: underline;
}

.contact a:hover {
    text-decoration: none;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1rem;
    background: #005bb5;
    color: #fff;
}
