/* General reset and basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Section */
header {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

header h1 {
    font-size: 3rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Navigation Menu */
nav {
    background-color: #444;
}

nav ul {
    list-style-type: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px;
}

nav ul li a:hover {
    background-color: #ddd;
    color: #333;
}

/* Hero Section */
#hero {
    background: #0073e6;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

#hero h2 {
    font-size: 2.5rem;
}

#hero p {
    font-size: 1.5rem;
}
/* education  section*/
#education {
    padding: 50px 0;
    text-align: center;
    background-color: #fff;
}
#education h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
#education p {
    font-size: 1.1rem;
    line-height: 1.6;
    width: 80%;
    margin: 0 auto;
}
/* experiance section*/
#experiance {
    padding: 50px 0;
    text-align: center;
    background-color: #fff;
}
#experiance h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
#experiance p {
    font-size: 1.1rem;
    line-height: 1.6;
    width: 80%;
    margin: 0 auto;
}
/* About Me Section */
#about {
    padding: 50px 0;
    text-align: center;
    background-color: #fff;
}

#about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.1rem;
    line-height: 1.6;
    width: 80%;
    margin: 0 auto;
}

/* Projects Section */
#projects {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

#projects h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.project {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
    width: 30%;
}

.project h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.project a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

.project a:hover {
    text-decoration: underline;
}

/* Contact Section */
#contact {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

#contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#contact p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#contact a {
    color: #0073e6;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer Section */
footer {
    background-color: #444;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 1rem;
}
