body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #cfcfcf;
    line-height: 1.6;
    background-color: #00000b;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero {
    background: url('images/hero.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 10% 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero .hero-content {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5em;
    margin: 0;
}

.hero p {
    margin: 20px 0;
}

.hero .cta {
    display: inline-block;
    margin: 20px 10px;
    padding: 10px 20px;
    background-color: #0a2544;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero .cta:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .hero {
        padding: 20% 0;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.2em;
    }
}

@media (max-aspect-ratio: 3/1) {
    .hero {
        background-size: cover;
        padding: 5% 0;
    }

    .hero .hero-content {
        max-width: 90%;
        padding: 10px;
    }

    .hero h1 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 1em;
    }
}

header {
    background-color: #0a2544;
    color: white;
    padding: 10px 0;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

header nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
}


.about-us,
.services,
.projects,
.blog,
.contact-us {
    padding: 60px 20px;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-item,
.project-item,
.blog-post {
    margin-bottom: 40px;
    text-align: center;
}

.service-item img,
.project-item img,
.blog-post img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.contact-us form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us label {
    font-weight: bold;
}

.contact-us input,
.contact-us textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-us button {
    padding: 10px;
    background-color: #1e90ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-us button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #03162c;
    color: white;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #cfcfcf;
    margin-top: auto;
}

footer .social-media {
    margin-top: 10px;
}

footer .social-media a {
    text-decoration: none;
}

footer .social-media img {
    height: 30px;
    margin: 0 10px;
}

footer .social-media a img {
    transition: filter 0.3s ease;
}

footer .social-media a img:hover {
    filter: brightness(0.5);
}

.images {
    width: 100%;
    height: auto;
}

.logo {
    height: 8vh;
}
