/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 10px;
}

body {
    font-family: "Roboto", sans-serif;
}

.main {
    display: flex;
    flex-direction: column;
}

.header {
    height: auto;
    padding: 1rem;
    background-color: rgba(100, 100, 100, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.header__logo img {
    width: 100%;
    max-width: 20rem;
    height: auto;
    border-radius: 1rem;
}

.navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem;
}

.navigation__link {
    color: white;
    text-decoration: none;
    border-radius: 3rem;
    padding: 1rem 2rem;
    transition: all 0.25s ease-in;
    font-size: 1.5rem;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image: url("./home.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.container h3 {
    font-size: 2.5rem;
    color: white;
}

.container h2 {
    font-size: 4rem;
    color: white;
}

.container p {
    font-size: 1.8rem;
    color: white;
}

.about-us {
    background-color: #e4effd;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-us__title {
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.about-us__para {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.services {
    background-color: #fafafa;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services__intro {
    margin-bottom: 3rem;
}

.services__intro--title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.services__intro--para {
    font-size: 1.7rem;
    max-width: 800px;
}

.services__types {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.services__card {
    flex: 1 1 30rem;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 1px 1px 25px rgba(100, 100, 100, 0.5);
    max-width: 35rem;
}

.services__consultancy--title,
.services__cyber-security--tile,
.services__cloud-and-on-prem-solutions--tile,
.service__network-security-solution--tile {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services__consultancy--para,
.services__cyber-security--para,
.services__cloud-and-on-prem-solutions--para,
.service__network-security-solution--para {
    font-size: 1.5rem;
}

.clients {
    background-color: #e4effd;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.clients__intro--title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.clients__intro--para {
    font-size: 1.7rem;
    margin-bottom: 3rem;
}

.clients__carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.clients__ubico,
.clients__omc,
.clients__contessa,
.clients__napoly {
    background-color: cadetblue;
    color: white;
    width: 15rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.clients__sajida {
    background-color: cadetblue;
    color: black;
    border-radius: 1rem;
}

.contact {
    background-color: #b5d5fa;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact__info {
    margin-bottom: 3rem;
}

.contact__info h4 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact__info--address__item p {
    font-size: 1.8rem;
}

.contact__map {
    width: 100%;
    max-width: 600px;
}

.contact__map iframe {
    width: 100%;
    height: 300px;
}

.footer {
    padding: 3rem 2rem;
    background-image: url("./home.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer__logo {
    font-size: 3rem;
    color: white;
}

.footer__socials {
    display: flex;
    gap: 2rem;
    color: white;
}

.footer__socials--facebook,
.footer__socials--linkedin {
    font-size: 2rem;
    color: white;
}

.footer__para {
    font-size: 1.5rem;
    font-style: italic;
    color: white;
}

.footer__copyright {
    color: white;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .header {
        padding: 0.5rem;
    }

    .header__logo img {
        max-width: 15rem;
    }

    .navigation__link {
        padding: 0.5rem 1rem;
        font-size: 1.2rem;
    }

    .home {
        height: 50vh;
    }

    .container h2 {
        font-size: 3rem;
    }

    .container p {
        font-size: 1.5rem;
    }

    .about-us {
        padding: 3rem 1rem;
    }

    .services {
        padding: 3rem 1rem;
    }

    .services__card {
        flex: 1 1 100%;
    }

    .clients {
        padding: 3rem 1rem;
    }

    .contact {
        padding: 3rem 1rem;
    }

    .contact__map iframe {
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 0.3rem;
    }

    .header__logo img {
        max-width: 10rem;
    }

    .navigation__link {
        padding: 0.3rem 0.8rem;
        font-size: 1rem;
    }

    .container h2 {
        font-size: 2.5rem;
    }

    .container p {
        font-size: 1.2rem;
    }

    .about-us__title,
    .services__intro--title,
    .clients__intro--title,
    .contact__info h4 {
        font-size: 2.5rem;
    }

    .about-us__para,
    .services__intro--para,
    .clients__intro--para,
    .contact__info--address__item p {
        font-size: 1.5rem;
    }

    .footer__logo {
        font-size: 2.5rem;
    }

    .footer__socials--facebook,
    .footer__socials--linkedin {
        font-size: 1.5rem;
    }

    .footer__para {
        font-size: 1.2rem;
    }
}