* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    background: navy;
    color: #fff;
    padding: 15px 28px;
    text-align: left ;
}

nav {
    text-align: center;
    font-style: bold;
    font-weight: 600;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 20px;
    margin: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h2 {
  margin-bottom: 10px;
} 

.projects {
    margin-bottom: 20px;
}

.projects a {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
}

.projects a:hover {
    text-decoration: underline;
}
 
.portfolio {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.portfolio {
    flex: 1 1 30%;
    margin: 10px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

form button {
    padding: 10px;
    background:navy;
    color: #fff;
    border: none;
    cursor: pointer;
}

footer {
    background: navy;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

form input, form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;

}

/* Responsive styles */
@media (max-width:768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .portfolio-item {
        flex: 1 1 100%;
    }
}