@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

body {
    overflow-x: hidden;
}

nav .nav__logo {
    height: 30px;
}

nav .nav-item .nav-link {
    font-size: 15px;
    font-weight: 500;
}

.navbar-nav {
    gap: 20px;
}

/* global */
.section__title {
    color: #4B9ED3;
    font-weight: 700;
    font-size: 22px;
}

.section__header {
    color: #1A1A1A;
    font-size: 38px;
    font-weight: 700;
}

.section__description {
    color: #585858;
    font-size: 18px;
    font-weight: 400;
    padding-inline: 120px;
}

/* hero section */
.hero__section {
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;

    .container {
        padding-top: 70px;
        padding-bottom: 70px;
    }


}

.hero__content::before {
    content: '';
    position: absolute;
    height: 400px;
    aspect-ratio: 1;
    background-image: url('../images/line_path.svg');
    top: -90px;
    left: -90px;
}

.hero__section .hero__content,
.hero__section .hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero__section .hero__content {
    flex-direction: column;
    align-items: start;
    position: relative;
    color: white;

    .welcome__text {
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
    }

    .hero__text {
        text-transform: uppercase;
        font-size: 46px;
        font-weight: 800;

        span {
            color: #FFCC00;
        }
    }

    .supporting__text {
        font-size: 14px;
        font-weight: 200;
    }

    .hero__button {
        cursor: pointer;
        font-size: 26px;
        text-decoration: none;
        color: white;
        text-transform: uppercase;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 15px;
        background-image: linear-gradient(to right, #008C9C, #00AC00);
        box-shadow: 0px 2px 0px white;
        padding: 10px 35px;
        border-radius: 140px;

        img {
            height: 26px;
        }
    }
}

.hero__section .hero__image img {
    width: 90%;
    height: 90%;
}

/* our vision */
.our__vision {
    background-color: #EDECFD;
    padding-top: 70px;
    padding-bottom: 70px;
    text-align: center;

    .row {
        margin-top: 70px;
    }

    .product__card {
        background-color: white;
        border-radius: 12px;
        height: 100%;
        display: flex;
        align-items: start;
        flex-direction: column;
        justify-content: center;
        padding: 20px;

        .product__logo {
            height: 40px;
        }

        .product__name {
            font-size: 20px;
            font-weight: 700;
            color: #1A1A1A;
            margin-top: 10px;
            margin-bottom: 10px;
            text-align: start;
        }

        .product__description {
            font-size: 15px;
            font-weight: 300;
            color: #585858;
            text-align: start;
        }

        a {
            text-decoration: none;
            color: #1A1A1A;
            font-size: 16px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
    }
}

/* our culture */
.our__culture {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #1A1A1A;
    text-align: center;

    .section__header {
        color: white;
    }

    .section__description {
        color: #74787C;
        font-size: 16px;
    }

    .row {
        margin-top: 70px;
    }

    .culture__image {
        max-width: 100%;
        width: auto;
    }

    .culture__card__section {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .culture__card {
        display: flex;
        align-items: center;
        gap: 20px;

        .image__bg {
            background-color: white;
            padding: 15px;
            aspect-ratio: 1;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .culture__card__texts {
            text-align: start;

            h3 {
                color: #4B9ED3;
                font-weight: 700;
                font-size: 20px;
            }

            p {
                color: #74787C;
                font-size: 16px;
                margin-bottom: 0;
            }
        }
    }
}

/* why choose */
.why__choose {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #EDECFD;

    img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
        max-height: 500px;
    }
}

/* footer */

footer {
    background-color: #05091A;

    .container {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer__logo {
        img {
            height: 35px;
            margin-bottom: 30px;
        }

        h4 {
            color: #4B9ED3;
            font-size: 22px;
            font-weight: 700;
        }

        p {
            color: #878787;
            font-size: 14px;
            font-weight: 400;
        }
    }

    .portfolio__section {
        h3 {
            color: white;
            font-size: 22px;
            font-weight: 700;
        }

        ul {
            list-style: none;
            padding-left: 0px;

            li {
                margin-bottom: 5px;

                img {
                    height: 14px;
                }

                a {
                    text-decoration: none;
                    color: #878787;
                }
            }
        }
    }

    .address__section {
        h3 {
            color: white;
            font-size: 22px;
            font-weight: 700;
        }

        .address {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;

            p {
                color: #878787;
                font-size: 14px;
                font-weight: 400;
                margin-bottom: 0;
            }
        }

        a {
            color: #878787;
        }
    }

    .social__section {
        h3 {
            color: white;
            font-size: 22px;
            font-weight: 700;
        }

        .social__icons {
            display: flex;
            align-items: center;
            gap: 10px;

            img {
                height: 40px;
                aspect-ratio: 1;
            }
        }
    }
}

.copyright__section {
    background-color: white;
    color: #74787C;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;

    p {
        margin-bottom: 0;
    }
}

/* mobile */
@media only screen and (max-width: 600px) {

    .navbar-nav {
        margin-top: 20px;
        text-align: center;
    }

    .row {
        gap: 30px;
    }

    /* global */
    .section__title {
        color: #4B9ED3;
        font-weight: 700;
        font-size: 18px;
    }

    .section__header {
        color: #1A1A1A;
        font-size: 30px;
        font-weight: 700;
    }

    .section__description {
        color: #585858;
        font-size: 16px;
        font-weight: 400;
        padding-inline: 0px;
    }

    .hero__section {


        .hero__button {
            font-size: 18px !important;
            margin-inline: auto;

            img {
                height: 20px !important;
            }
        }

        .hero__text {
            font-size: 32px !important;
        }

    }

    .hero__content::before {
        display: none;
    }


}