* {
    padding: 0px;
    margin: 0px;
}

html, body {
    max-width: 100vw;
    height: 100vh;
}

body {
    font-family: sans-serif;
}

h1 {
    font-size: 3.5rem;
}

p {
    font-size: 1.2rem;
    line-height: 1.50rem;
}

a {
    color: #18181b;
}

header {
    width: 100%;
    height: 64px;
    position: fixed;
    z-index: 10;
    background: white;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
}

.header-spacer {
    height: 64px;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.page-width-section {
    width: 80%;
    margin: auto;
}

.header-container {
    display: flex;
    flex-direction: row;
}

.logo-area {
    width: 200px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

    .logo-area img {
        width: 90%;
        height: 95%;
    }

.menu-area {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    .menu-area a {
        text-decoration: none;
        padding: 0px 1rem;
    }

    .menu-area ul {
        margin: auto;
        display: flex;
        flex-direction: row;
        list-style: none;
        gap: 1rem;
        height: 64px;
        line-height: 64px;
        padding: 0px 2rem;
    }

.contact-quotation-area {
    width: 300px;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.contact-quotation-area-btn {
    height: 40px;
    line-height: 40px;
    border: 1px solid black;
    padding: 0 1rem;
    border-radius: 10px;
}

.contact-quotation-area-btn-1 {
    border: 1px solid #e4e4e7;
}

.contact-quotation-area-btn-2 {
    background: black;
    color: white;
}

.main-container {
    width: 100;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}

.hero-area {
    width: 100%;
    min-height: 60vh;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding: 3rem 0 10rem 0;
}

.hero-area-content {
    width: 80%;
    height: 55%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
}

    .hero-area-content h1 {
        color: white;
        width: 700px;
    }

    .hero-area-content p {
        color: white;
        width: 500px;
    }

    .hero-area-content .text-area, .hero-area-content .image-area {
        height: 400px;
        width: 50%;
    }

    .hero-area-content .text-area {
        padding: 0 1rem;
    }

    .hero-area-content .image-area {
        background: whitesmoke;
        border-radius: 5px;
    }

    .hero-area-content .text-area {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-area-content .btn-area {
        width: 379px;
        display: flex;
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

        .hero-area-content .btn-area .btn1 {
            height: 40px;
            line-height: 40px;
            padding: 0 1rem;
            border-radius: 10px;
            background: white;
            color: rgba(10, 60, 111, 0.8);
            border: none;
        }

.gradient-blue {
    background: linear-gradient(to bottom, #06396a 0%, #06396a 85%, rgba(255, 255, 255, 0.4) 100%);
}

/*complete system*/
.complete-system {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 10rem;
    padding-top: 10rem;
}

    .complete-system span {
        color: rgba(6, 72, 134, 1);
        background: rgba(224, 238, 254);
        padding: 5px 10px;
        border-radius: 15px;
    }

    .complete-system p {
        width: 40%;
        margin: auto;
        color: rgb(107,114, 128);
    }

    .complete-system .cardarea {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: space-evenly;
        min-height: 400px;
        gap: 1.5rem;
    }

    .complete-system .card {
        height: 600px;
        background: white;
        flex-grow: 1;
        box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.2), -2px 4px 17px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        width: 30%;
    }

        .complete-system .card .card-image {
            flex-grow: 1;
            background: rgb(226, 225, 225);
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            height: 60%;
        }

        .complete-system .card .card-text {
            flex-grow: 1; /* Take up remaining space */
            display: flex; /* Enable flexbox */
            flex-direction: column; /* Stack children vertically */
            justify-content: center; /* Center vertically */
            align-items: left; /* Center horizontally */
            text-align: left; /* Optional: Center text */
            gap: 2rem;
            padding: 1rem;
            height: 40%
        }

            .complete-system .card .card-text p {
                width: 80%;
                margin: 0;
            }

            .complete-system .card .card-text div {
                width: 100%;
                text-align: left;
            }

    .complete-system .button-area {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

        .complete-system .button-area div {
            padding: 1rem 1.5rem;
            border: 1px solid rgb(0 104 201);
            border-radius: 10px;
            color: rgb(0 104 201);
        }


/*industry solution*/
.industry-solution {
    width: 100%;
    background: rgb(249 250 251);
}

.industry-solution-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 10rem;
    padding-top: 10rem;
}

    .industry-solution-container span {
        color: rgba(6, 72, 134, 1);
        background: rgba(224, 238, 254);
        padding: 5px 10px;
        border-radius: 15px;
    }

    .industry-solution-container p {
        width: 40%;
        margin: auto;
        color: rgb(107,114, 128);
    }

    .industry-solution-container .cardarea {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: space-evenly;
        min-height: 400px;
        gap: 1.5rem;
    }

    .industry-solution-container .tab-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: space-evenly;
        gap: 3rem;
        padding: 5px;
        background: #f4f4f5;
        height: 35px;
        border-radius: 10px;
        color: #71717A;
    }

        .industry-solution-container .tab-container .tab {
            flex-grow: 1;
            height: 35px;
            line-height: 35px;
            border-radius: 10px;
        }

.industry-solution-area-content {
    width: 80%;
    height: 55%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
}

    .industry-solution-area-content .text-area {
        width: 50%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: flex-start;
        align-items: flex-start;
        gap: 1rem;
    }

    .industry-solution-area-content .text-area {
        text-align: left;
    }

        .industry-solution-area-content .text-area p {
            width: 100%;
        }

        .industry-solution-area-content .text-area ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: .8rem;
        }

        .industry-solution-area-content .text-area li {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-content: center;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

    .industry-solution-area-content .image-area {
        width: 50%;
        background: gray;
        border-radius: 10px;
        box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.2)
    }

    .industry-solution-area-content .btn-area .btn1 {
        padding: 1rem 2rem;
        background: black;
        color: white;
        border-radius: 10px;
    }

.tab-active {
    background: white;
    color: black;
    flex-grow: 1;
    height: 35px;
    line-height: 35px;
    border-radius: 10px;
}

/*technical experties*/
.technical-expertise {
    width: 100%;
    background: white;
}

.technical-expertise-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 10rem;
    padding-top: 10rem;
}

    .technical-expertise-container span {
        color: rgba(6, 72, 134, 1);
        background: rgba(224, 238, 254);
        padding: 5px 10px;
        border-radius: 15px;
    }

    .technical-expertise-container p {
        width: 40%;
        margin: auto;
        color: rgb(107,114, 128);
    }

    .technical-expertise-container .card-area {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: space-evenly;
        align-items: center;
        column-gap: 1rem;
        row-gap: 2rem;
    }

        .technical-expertise-container .card-area .card {
            background: white;
            width: 30%;
            min-height: 200px;
            border: 1px solid #80808038;
            border-top: none;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            align-content: flex-start;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
        }

            .technical-expertise-container .card-area .card p {
                margin: 0;
                text-align: left;
                width: 80%;
            }

            .technical-expertise-container .card-area .card svg {
                background: rgb(224 238 254);
                padding: .5rem;
                border-radius: 50%;
                width: 30px;
                height: 30px;
                line-height: 30px;
            }

/*see it in action*/
.see-it-in-action {
    width: 100%;
    background: rgb(17 24 39);
}

.see-it-in-action-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 10rem;
    padding-top: 10rem;
}

    .see-it-in-action-container h1 {
        color: white;
    }

    .see-it-in-action-container span {
        color: rgba(224, 238, 254, 1);
        background: rgba(10, 60, 111);
        padding: 5px 10px;
        border-radius: 15px;
    }

    .see-it-in-action-container p {
        width: 40%;
        margin: auto;
        color: #d1d5db;
    }


    .see-it-in-action-container .video-area {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

        .see-it-in-action-container .video-area div {
            width: 80%;
            height: 600px;
            background: gray;
            border-radius: 10px;
        }

    .see-it-in-action-container .card-area {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: space-evenly;
        gap: 1rem;
    }

        .see-it-in-action-container .card-area .card {
            width: 32%;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            align-content: center;
            justify-content: center;
            gap: 1rem;
        }

            .see-it-in-action-container .card-area .card h2 {
                color: white;
                font-size: 1.2rem;
            }

            .see-it-in-action-container .card-area .card p {
                width: 100%;
                font-size: 1rem;
            }

            .see-it-in-action-container .card-area .card a {
                color: rgb(124 194 253);
                font-size: .8rem;
            }

/*see it in action*/
.client-success-stories {
    width: 100%;
    background: white;
}

.client-success-stories-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 10rem;
    padding-top: 10rem;
}

    .client-success-stories-container h1 {
        color: black;
    }

    .client-success-stories-container span {
        color: rgba(6, 72, 134, 1);
        background: rgba(224, 238, 254);
        padding: 5px 10px;
        border-radius: 15px;
    }

    .client-success-stories-container p {
        width: 50%;
        margin: auto;
        color: #6b7280;
    }

    .client-success-stories-container .comment-area {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: center;
        gap: 1.2rem;
        width: 800px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border: 1px solid #80808026;
        border-top: none;
        padding: 3rem;
        box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
    }

        .client-success-stories-container .comment-area p {
            text-align: left;
            font-size: x-large;
            width: 100%;
            color: black;
            font-weight: 600;
            font-style: italic;
        }

.customer-info-area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 1.2rem;
}

    .customer-info-area .icon {
        width: 50px;
        height: 50px;
        background: gray;
        border-radius: 50%;
    }

    .customer-info-area .information {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: center;
        align-items: flex-start;
    }

footer {
    width: 100%;
    height: 50vh;
    background: rgba(17, 24, 39, 1);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 2rem;
    padding-top: 1rem;
}

    .footer-area .sub-area {
        width: 20%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

        .footer-area .sub-area h2 {
            color: white;
        }

        .footer-area .sub-area p {
            color: #9ca3af
        }

        .footer-area .sub-area a {
            color: #9ca3af;
            text-decoration: none;
        }

.sub-area .media-area {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.footer-area ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .5rem;
    color: #9ca3af;
}

.footer-area .contact-us-area {
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    width: 300px;
}

    .footer-area .contact-us-area .sub-area-contact {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
    }

        .footer-area .contact-us-area .sub-area-contact .subscribe-area {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            align-content: flex-start;
            justify-content: flex-start;
            align-items: flex-start;
            gap: .5rem;
        }

            .footer-area .contact-us-area .sub-area-contact .subscribe-area label {
                color: white;
            }


            .footer-area .contact-us-area .sub-area-contact .subscribe-area .form {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                align-content: flex-start;
                justify-content: flex-start;
                align-items: center;
                gap: 1rem;
            }

                .footer-area .contact-us-area .sub-area-contact .subscribe-area .form div {
                    height: 40px;
                    line-height: 40px;
                    padding: 0 1rem;
                    background: black;
                    border-radius: 10px;
                    color: white;
                }

                .footer-area .contact-us-area .sub-area-contact .subscribe-area .form input {
                    line-height: 40px;
                    height: 40px;
                    padding: 0 .2rem;
                    border-radius: 10px;
                    border: none;
                    border: 1px solid rgb(55 65 81);
                    background: rgb(31 41 55);
                    color: white;
                }

.footer-area hr {
    color: white;
}

.power-area {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
}

    .power-area div2 {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: flex-start;
        justify-content: space-evenly;
        align-items: center;
        gap: 1rem;
    }
