*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'space mono', monospace;
}
body {
    background-color: #f5f5f5;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
header {
    background-color: #2c3e50;
    color: white;
    padding: 30px;
    text-align: center;
    font-size: 24px;
}
nav {
    background-color: #34495e;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0;
}

nav a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav a:hover {
    background-color: blue;
}
.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h2 {
    font-size: 36px;
}

.hero p {
    font-size: 18px;
    color: #555;
}
.quote{
    max-width: 700px;
    margin: 80px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.quote h2{
    text-align:center;
    margin-bottom:30px;
}

.quote form{
    display:flex;
    flex-direction:column;
}

.quote label{
    margin-top:15px;
    font-weight:600;
}

.quote input,
.quote select,
.quote textarea{
    padding:12px;
    border:1px solid #ccc;
    border-radius:5px;
    margin-top:5px;
    font-size:14px;
}

.quote textarea{
    resize:vertical;
}

.quote button{
    margin-top:25px;
    padding:15px;
    background: #5b7c99;
    color:white;
    border:none;
    border-radius:5px;
    font-size:16px;
    cursor:pointer;
}

.quote button:hover{
    background:blue;
}
.services {
    display: flex;
    justify-content: wrap;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px;
}
.service-box {
    background: white;
    width: 250px;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.service-box h3 {
    margin-bottom: 10px;
}
.service-box:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}
.projects {
    display: flex;
    justify-content: center;
    padding: 60px;
}
.project-card {
    width: 350px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}
.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.project-card h3 {
    margin: 20px 0 10px 0;
}
.project-card p {
    padding: 0 20px;
}
.project-card a {
    display: inline-block;
    margin: 20px;
    padding: 10px 25px;
    background: #5b7c99;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}
.contact-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    width: 400px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.contact-box h2 {
    margin-bottom: 20px;
}
.contact-box a {
    color: #5b7c99;
    text-decoration: none;
}
.contact-box a:hover {
    text-decoration: underline;
}
.why-us {
    background: white;
    padding: 60px 20px;
}
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.feature {
    width: 250px;
    text-align: center;
}
.cta{
    background:#34495e;
    color:white;
    text-align:center;
    padding:70px 20px;
}

.cta-button{
    display:inline-block;
    margin-top:20px;
    padding:14px 30px;
    background: #5b7c99;
    color:white;
    text-decoration:none;
    border-radius:6px;
}
.cta-button:hover{
    background:blue;
}
footer{
    background:#2c3e50;
    color:white;
    text-align:center;
    padding:25px;
}
#menu-button{
    font-size:28px;
    background:none;
    border:none;
    cursor:pointer;
    padding:10px 20px;
}
#nav-menu{
    position:absolute;
    top:70px;
    left:20px;

    background:white;
    width:200px;

    display:flex;
    flex-direction:column;

    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);

    max-height:0;
    overflow:hidden;
    transition:max-height 0.3s ease;
}

#nav-menu.show{
  max-height:300px;
}
#nav-menu a{
    padding:12px 20px;
    text-decoration:none;
    color:#333;
    border-bottom:1px solid #eee;
}

#nav-menu a:hover{
    background:#f4f4f4;
}