body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #4567b7; /* Primary color for header and navigation bar */
    color: white;
    padding: 1em 0;
}

.navbar {
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-item {
    margin: 0 15px;
}

.nav-item a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.nav-item a:hover {
    border-bottom: 2px solid white;
}

/* Hero Section */
.hero {
    background-image: url('background_image.jpg'); /* Add your image here */
    background-size: cover;
    color: black;
    text-align: center;
    padding: 5em 0;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    color: black;

}

/* Project List */
.project-list {
    padding: 2em 0;
    text-align: center;
}

.project-list h2 {
    color: #4567b7; /* Primary color for consistency */
}

.project-item {
    background-color: #f4f4f4;
    padding: 2em 0;
    margin-bottom: 1em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project-content {
    max-width: 800px;
    margin: auto;
    padding: 2em;
    background-color: #fff;
}

/* About Us Section */
.about-us {
    background-color: #f4f4f4; /* Light gray for a subtle background */
    text-align: center;
    padding: 2em 0;
}

.about-content {
    max-width: 800px;
    margin: auto;
}

/* Footer */
footer {
    text-align: center;
    background-color: #4567b7;
    color: white;
    padding: 1em 0;
}
