html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: "Roboto Slab", serif;
    background-color: #000;
}

a {
    text-decoration: none;
}

p {
    margin: 0px;
    padding: 0px;
}

.shadow {
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.12), 0px 4px 8px 0px rgba(0, 0, 0, 0.02), 0px 2px 4px 0px rgba(0, 0, 0, 0.01);
}


.btn-primary {
    background-color: #0D92F4;
    color: #fff;
    padding: 10px 30px;
    border-radius: 10px;
}

.btn-secondary {
    background-color: #fff;
    color: #0D92F4;
    padding: 10px 30px;
    border-radius: 10px;
}

.heading-section {
    display: flex;
    justify-content: start;
    align-items: center;
}

    .heading-section .line {
        width: 6px;
        height: 40px;
        background-color: #0D92F4;
        border-radius: 10px;
    }

    .heading-section .title {
        margin-left: 20px;
        color: #ADB2D4;
        font-size: 20px;
    }

/* Navbar */
.navbar {
    width: 100%;
    height: 80px;
    background-color: transparent;
    position: fixed;
    top: 0px;
    z-index: 10;
}

    .navbar .navbar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        margin: auto;
        height: 80px;
    }

        .navbar .navbar-content .navbar-menu ul {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .navbar .navbar-content .navbar-menu ul li {
                margin: 20px;
            }

                .navbar .navbar-content .navbar-menu ul li .nav-item {
                    font-size: 16px;
                    /* color: #ADB2D4; */
                    color: #fff;
                    font-weight: normal;
                }

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #ADB2D4;
}

.bg-dark {
    position: fixed;
    z-index: 20;
    background-color: #000;
    width: 100%;
    height: 100vh;
    opacity: 0.5;
    display: none;
}

.navbar-popup {
    position: fixed;
    top: 0px;
    right: -1400px;
    z-index: 400;
    width: 70%;
    margin: auto;
    height: 100%;
    background-color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 20px;
}


    .navbar-popup .navbar-menu ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

        .navbar-popup .navbar-menu ul li {
            margin: 20px;
        }

            .navbar-popup .navbar-menu ul li .nav-item-popup {
                color: #ADB2D4;
            }


@media(max-width: 768px) {
    .hamburger {
        display: block;
    }

    .navbar .navbar-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .navbar-content .navbar-menu {
        display: none;
        /* Ganti sesuai kebutuhan */
    }
}

/* End Navbar */


/* Header */
.header-section {
    width: 100%;
    min-height: 800px;
    background-image: url(../img/bg-5.jpg);
    background-size: cover;
}

    .header-section .bg-header {
        width: 100%;
        min-height: 800px;
        background-color: #000;
        opacity: 0.8;
        position: absolute;
        z-index: 2;
    }

    .header-section .header-content {
        position: relative;
        z-index: 2;
        width: 90%;
        margin: auto;
    }

        .header-section .header-content .heading {
            color: #fff;
            padding-top: 220px;
            font-size: 56px;
            font-weight: bold;
            text-align: center;
        }

        .header-section .header-content .subheading {
            color: #e6e6e6;
            margin-top: 20px;
            margin-bottom: 50px;
            text-align: center;
        }


/* End Header */

/* About us */
.about-section {
    width: 70%;
    margin: auto;
    min-height: 700px;
    margin-top: 190px;
    margin-bottom: 190px;
}

    .about-section .heading {
        font-size: 48px;
        color: #fff;
        text-align: center;
        font-weight: bold;
        padding-top: 150px;
    }

    .about-section .subheading {
        color: #ababab;
        margin-top: 30px;
        text-align: center;
        line-height: 30px;
    }

    .about-section .value-company-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 100px;
    }

.card-value {
    width: 100%;
    height: 320px;
    background-color: #131313;
    border-radius: 7px;
}

    .card-value .image-card {
        width: 70px;
        height: 70px;
        background-color: #0D92F4;
        margin-top: 30px;
        margin-left: 30px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .card-value .card-body {
        margin: 30px;
    }

        .card-value .card-body .title {
            font-size: 24px;
            color: #fff;
            font-weight: 500;
        }

        .card-value .card-body .description {
            color: #ababab;
            margin-top: 20px;
        }

/* End About us */

/* Product */

.product-section {
    min-height: 800px;
    background-color: #131313;
    padding-top: 150px;
    padding-bottom: 200px;
}

    .product-section .heading {
        font-size: 48px;
        color: #fff;
        text-align: center;
        font-weight: bold;
    }

    .product-section .subheading {
        color: #ababab;
        margin-top: 30px;
        text-align: center;
        line-height: 30px;
    }

    .product-section .product-list {
        width: 70%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        margin-top: 100px;
    }

.card-product {
    width: 100%;
    height: 490px;
    background-color: #1a1a1a;
    border-radius: 20px;
}

    .card-product .image-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

        .card-product .image-card img {
            width: 80%;
        }

    .card-product .card-body {
        margin: 30px;
    }

        .card-product .card-body .title {
            font-size: 24px;
            color: #fff;
            font-weight: 500;
        }

        .card-product .card-body .description {
            color: #ababab;
            margin-top: 20px;
            margin-bottom: 30px;
        }

        .card-product .card-body .btn-detail {
            text-decoration: none;
            text-align: center;
            color: #0D92F4;
        }

/* End Product */

/* Services */
.services-section {
    width: 90%;
    min-height: 700px;
    margin: auto;
    margin-top: 150px;
    margin-bottom: 100px;
}

    .services-section .title {
        color: #fff;
        background-color: #131313;
        padding: 15px 40px;
        width: 100px;
        border-radius: 30px;
        font-weight: 400;
    }

    .services-section .heading-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        margin-top: 50px;
    }

        .services-section .heading-content .heading {
            color: #fff;
            font-size: 36px;
            font-weight: bold;
        }

        .services-section .heading-content .subheading {
            color: #ababab;
            font-size: 20px;
        }

    .services-section .service-list {
        width: 100%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 150px;
    }

.card-service {
    width: 100%;
    height: 300px;
    background-color: #1a1a1a;
    border-radius: 20px;
}

    .card-service .image-card {
        width: 70px;
        height: 70px;
        background-color: #0D92F4;
        margin-top: 30px;
        margin-left: 30px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .card-service .card-body {
        margin: 30px;
    }

        .card-service .card-body .title-2 {
            font-size: 24px;
            color: #fff;
            font-weight: 500;
        }

        .card-service .card-body .description {
            color: #ababab;
            margin-top: 20px;
            margin-bottom: 30px;
        }


/* End Services */

/* Contact */
.contact-section {
    width: 90%;
    margin: auto;
    min-height: 500px;
    gap: 50px;
    background-color: #0D92F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
    border-radius: 30px;
}

.contact-content {
    width: 80%;
}

    .contact-content .title {
        font-size: 36px;
        font-weight: 500;
        line-height: 40px;
        color: #fff;
        text-align: center;
    }

    .contact-content .subtitle {
        font-size: 18px;
        margin-top: 20px;
        color: #fff;
        margin-bottom: 30px;
        text-align: center;
    }

.contact-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* End Contact */

/* Footer */
.footer {
    width: 100%;
    min-height: 550px;
    margin-top: 133px;
    border-top: 1px#ADB2D4 solid;
}


    .footer .content-footer {
        width: 90%;
        margin: auto;
        padding-top: 100px;
        display: flex;
        justify-content: space-between;
    }

    .footer .footer-2 {
        display: flex;
        justify-content: start;
    }


    .footer .img-footer {
        width: 150px;
    }

    .footer .desc {
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        color: #ADB2D4;
        width: 400px;
        margin-top: 28px;
    }

    .footer .sosial-media ul {
        list-style: none;
        display: flex;
        margin-left: -30px;
        margin-top: 28px;
    }

        .footer .sosial-media ul li {
            margin-right: 12px;
        }

    .footer .footer-2 .title {
        font-weight: 600;
        font-size: 20px;
        line-height: 26px;
        color: #ADB2D4;
    }

    .footer .footer-2 ul {
        list-style: none;
        margin-top: 24px;
        margin-left: -30px;
    }

        .footer .footer-2 ul li {
            margin-bottom: 16px;
        }

            .footer .footer-2 ul li a {
                text-decoration: none;
                font-weight: 400;
                font-size: 16px;
                line-height: 22px;
                color: #ADB2D4;
            }

@media (max-width: 1024px) {
    .footer .content-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
        padding-top: 60px;
    }

    .footer .footer-2 {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .footer .desc {
        width: 100%;
        font-size: 18px;
    }

    .footer .footer-2 .title {
        font-size: 18px;
    }

    .footer .footer-2 ul li a {
        font-size: 15px;
    }

    .footer p {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .footer {
        min-height: auto;
        padding-bottom: 40px;
    }

        .footer .content-footer {
            padding-top: 40px;
        }

        .footer .footer-2 {
            flex-direction: column;
            gap: 40px;
        }

        .footer .desc {
            font-size: 16px;
            line-height: 24px;
        }

        .footer .footer-2 .title {
            font-size: 16px;
        }

        .footer .footer-2 ul li a {
            font-size: 14px;
        }

        .footer p {
            font-size: 14px;
            margin-top: 40px;
        }
}


/* End Footer */
