body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    padding: 20px;
}

.header nav {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 20px 0;
}

.header > nav > a > div > h1 {
    color: #333;
}

.header > nav > a,a:link,a:visited,a:hover,a:active {
    text-decoration: none;
    color: #333;
}

.hero-banner {
    display: flex;
    height: 100vh;
}

.hero-banner-content {
    flex: 1;
    padding: 20px;
    max-width: 50%;
    height: 100%;
    align-content: center;
}

.hero-banner-image {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn {
    background-color: black;
    border-radius: 7px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.services {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.service-header {
    text-align: center;
    margin-bottom: 20px;
}

.service-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-header p {
    font-size: 1.2rem;
}

.service:nth-child(odd) {
    display: flex;
    flex-direction: row;
}

.service:nth-child(even) {
    display: flex;
    flex-direction: row-reverse;
}

.service {
    min-height: 50vh;
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: #333;
}

.service-description {
    flex: 1;
    align-content: center;
    max-width: 50%;
}


.service h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service p {
    font-size: 1.2rem;
}

.service img {
    width: 45%;
    height: 100%;
}

.project-section {
    margin-top: 50px;
}

.project-header {
    text-align: center;
    margin-bottom: 20px;
}

.project-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.project-header p {
    font-size: 1.2rem;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
}

.projects {
    a {
        text-decoration: none;
        color: #333;
    }
}

.project {
    flex: 1;
    margin: 10px;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 7px;
}

.project img {
    width: 100%;
    height: 200px;
}

.project h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project p {
    font-size: 1.2rem;
}

.team-section {
    margin-top: 50px;
}

.team-header {
    text-align: center;
    margin-bottom: 20px;
}

.team-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.team-header p {
    font-size: 1.2rem;
}

.team {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.team-member {
    flex: 1;
    margin: 10px;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 7px;
}

.team-member img {
    width: 100%;
    height: 200px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-align: center;
}

.team-member p {
    font-size: 1.2rem;
    text-align: center;
}

.contact-section {
    margin-top: 50px;
}

.contact-header {
    text-align: center;
    margin-bottom: 20px;
}

.contact-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1.2rem;
}

.contact-form {
    max-width: 50%;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 7px;
    border: 1px solid #333;
}

.contact-form button {
    background-color: black;
    border-radius: 7px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer p {
    margin: 0;
}

.case-study-banner {
    width: 100%;
    img {
        width: 100%;
        height: 300px;
        object-fit: contain;
    }
}



/* Responsice styles */
@media (max-width: 768px) {
    .hero-banner {
        flex-direction: column;
    }

    .hero-banner-content {
        max-width: 100%;
    }

    .hero-banner-image {
        display: none;
    }

    .service:nth-child(odd),
    .service:nth-child(even) {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .service img {
        width: 100%;
        height: auto;
    }

    .service-description {
        max-width: 100%;
    }

    .projects {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .project img {
        height: 150px;
    }

    .project h3 {
        font-size: 1.2rem;
    }

    .project p {
        font-size: 1rem;
    }

    .team {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .team-member img {
        height: 150px;
    }

    .team-member h3 {
        font-size: 1.2rem;
    }

    .team-member p {
        font-size: 1rem;
    }

    .contact-form {
        max-width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }

    .footer {
        padding: 10px;
    }

    .footer p {
        font-size: 0.8rem;
    }

    .case-study-banner {
        width: 100%;
        img {
            width: 100%;
            height: 300px;
            object-fit: contain;
        }
    }





}


