body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    min-height: 100vh; /* Ensure full viewport height */
}

/* Style the header/navigation bar */
header {
    background-color: #02586d;
    color: white;
    padding: 10px 0;
    width: 100%;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: white;
}

/* Style the hero section */
#hero {
    text-align: center;
    padding: 20px 0;
    background-image: url('./hero-background.webp');
    background-size: cover;
    color: white;
    width: 100%;
}

.hero-content h1 {
    font-size: 36px;
}

/* Style the about section */

/* Style project cards container */
.project-cards {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping to the next row */
    overflow-x: auto; /* Enable horizontal scrolling if necessary */
    justify-content: center;
}

/* Style project cards */
.project-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin: 20px;
    text-align: center;
    max-width: 300px; /* Adjust the max width as needed */
}

.project-card img {
    max-width: 100%;
    border-radius: 4px;
}

.project-card h3 {
    margin-top: 10px;
    font-size: 24px;
}

.project-card p {
    color: #777;
    margin-top: 10px;
}

.project-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/* Style the contact section */
#contact {
    background-color: #f8f8f8;
    padding: 50px 0;
    width: 100%;
    text-align: center;
}
#projects {
    text-align: center; /* Center align the content within the section */
}

.project-cards-container {
    display: flex;
    justify-content: center; /* Center align the project cards horizontally */
    align-items: center; /* Center align the project cards vertically */
}
/* Add this CSS to your stylesheet */
.hero-content {
    text-align: center;
}

.hero-content h2 {
    font-size: 2rem;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.1rem;
    color: #fff;
}

.hero-content ul {
    list-style: none;
    padding-left: 0;
}

.hero-content ul li::before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
    margin-right: 5px;
}

.hero-content p {
    margin-top: 15px;
}