/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

header {
    background-color: #1d3557; /* Blue color */
    color: white;
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav .logo h1 {
    font-size: 28px;
    color: #00bfae; /* Green color for logo */
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    font-weight: 500;
}

/* Home Section */
.home {
    background-color: #1d3557; /* Blue color */
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.home-content {
    max-width: 800px;
    margin: 0 auto;
}

.home h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.home p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background-color: #00bfae; /* Green button */
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    font-size: 16px;
}

.btn:hover {
    background-color: #007f67;
}

/* Services Section */
.services {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1d3557; /* Blue header */
}

.services-list {
    display: flex;
    justify-content: space-around;
}

.service {
    width: 30%;
    padding: 20px;
    background-color: #e0f7fa; /* Light teal */
    border-radius: 8px;
}

.service h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1d3557; /* Blue */
}

.service p {
    font-size: 16px;
}

/* Projects Section */
.projects {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.projects h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1d3557;
}

.projects-list {
    display: flex;
    justify-content: space-around;
}

.project {
    width: 30%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1d3557;
}

.project p {
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
    background-color: #1d3557; /* Blue color */
    color: white;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact button {
    background-color: #00bfae; /* Green button */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #007f67;
}

/* Footer */
footer {
    background-color: #1d3557;
    color: white;
    text-align: center;
    padding: 15px;
}
