* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Plus Jakarta Sans", serif;
    /* 1280 * 720 ---> My Screen Resolution */
}
html {
    font-size: 100%;    /*THE MAIN CONTROLER OF THE RESPONSIVITY*/
}
header {
    margin: 0 auto 3rem auto;
    padding: 0rem 1.25rem 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    background: url(./images/Hero-Image.png) no-repeat center/cover;
    nav {
        padding-bottom: 150px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: space-between;
        img {
            width: 12rem;
        }
        ul {
            display: flex;
            font-size: 0.9rem;
            font-weight: 400;
            gap: 1rem;
            align-items: center;
            li {
                a {
                    color: black;
                }
                a:hover {
                    color: rgb(0, 0, 180);
                    font-weight: 550;
                    cursor: pointer;
                }
            }
        }
    }
    .hero-section {
        width: 60%;
        margin: auto 0;
        h1{
            padding: 0.25em 0;
            font-size: 4rem;
            font-weight: 900;
            line-height: 1;
        }
        p {
            font-weight: 300;
            line-height: 1.3;
        }
        .contact-us-button {
            margin: 1.25rem 0;
            background-color: rgb(25, 25, 255);
            border-style: none;
            border-radius: 0.7rem;
            width: max(30% , 8rem);
            cursor: pointer;
            transition: ease all 0.3s;
            a {
                display: inline-block;
                color: white;
                font-size: 1rem;
                text-decoration: none;
                line-height: 4;
            }
        }
        .contact-us-button:hover {
            transform: scale(0.95);
            background-color: rgb(15, 15, 255);
        }
    }
}
main {
    border-bottom: 4px solid #0328AA;;
    .our-clients {
        margin: 10vh auto 6vh auto;
        padding: 0.5rem 1.25rem;
        .company-logos {
            margin-top: 5vh;
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            img {
                width: 90px;
            }
        }
    }
    .about-us {
        margin: 0 auto;
        padding: 2rem 1.25rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5%;
        .about-image {
            margin-bottom: 20px;
            width: max(45% , 300px);
            max-width: 500px;
            flex-grow: 1;
        }
        .about-container{
            margin: auto 0;
            width: max(50% , 300px);
            flex-grow: 1;
            h2 {
                font-size: 2rem;
            }
            p {
                padding-bottom: 1rem;
                font-size: 0.9rem;
                font-weight: 200;
                line-height: 1.6;
            }
        }
    }
    .our-services {
        margin: 5vh auto;
        padding: 0rem 1.25rem;
        h2 {
            font-size: 2.15rem;
            font-weight: 800;
        }
        .our-services-para {
            padding-bottom: 6vh;
            font-size: 0.8rem;
            font-weight: 300;
            width: max(60% , 300px);
        }
        .the-services {
            display: flex;
            gap: 2rem;
            .all-services {
                margin-bottom: 20px;
                display: flex;
                flex-direction: column;
                gap: 1rem;
                h2 {
                    font-size: 1rem;
                }
                p {
                    font-size: 0.9rem;
                    font-weight: 200;
                    line-height: 1.6;
                }
                img {
                    margin: 0 auto;
                    padding-bottom: 1rem;
                    width: max(29vw , 250px);
                    height: min(40vh , 250px);
                }
            }
        }
    }
    .why-choose-us {
        margin: 5rem auto;
        padding: 5rem 1.25rem;
        background: rgb(3, 40, 170) url(./images/why-choose-us/Why-choose-us-bg.png);
        color: white;
        h2 {
            font-size: 2.25rem;
            font-weight: 700;
        }
        .why-choose-us-para {
            margin-bottom: 50px;
            font-size: 0.8rem;
            max-width: 600px;
        }
        .proofs {
            display: flex;
            gap: 1.25rem;
            .all-proofs {
                padding: 2rem;
                background-color: rgba(0, 0, 0, 0.1);
                border-radius: 1rem;
                display: flex;
                flex-direction: column;
                flex: 1 1 0;
                img {
                    padding-bottom: 35px;
                    width: 55px;
                }
                h3 {
                    margin: 0.5rem 0;
                    font-size: 1rem;
                    font-weight: 800;
                }
                .proof-para {
                    margin: 0.5rem 0;
                    font-size: 0.9rem;
                    font-weight: 200;
                    line-height: 1.6;
                }
                .proof-num {
                    font-size: 3rem;
                    font-weight: 800;
                }
                span {
                    font-size: 0.9rem;
                    font-weight: 200;
                }
            }
        }
    }
    .testimonials {
        margin: 3rem auto;
        padding: 0rem 1.25rem;
        h2 {
            font-size: 2rem;
            font-weight: 700;
        }
        p {
            padding-bottom: 2rem;
            max-width: 600px;
            font-size: 0.8rem;
            font-weight: 300;
        }
        .the-testimonials {
            display: flex;
            gap: 1.5rem;
            .all-test {
                padding: 1.5rem;
                flex: 1 1 0;
                display: flex;
                flex-direction: column;
                background-color: rgb(238, 245, 255);
                border-radius: 1.5rem;
                img {
                    margin-bottom: 1rem;
                    width: 60px;
                    height: 60px;
                    border-radius: 30px;
                }
                h3 {
                    padding-bottom: 0.5rem;
                    font-size: 1.15rem;
                    font-weight: 700;
                }
                span {
                    padding-bottom: 1.8rem;
                    font-size: 1rem;
                    font-weight: 500;
                }
                p {
                    font-size: 0.9rem;
                    font-weight: 200;
                    line-height: 1.5;
                }
            }
        }
    }
    .our-team {
        margin: 5rem auto;
        padding: 0rem 1.25rem;
        h2 {
            font-size: 2rem;
            font-weight: 700;
        }
        .our-team-para {
            padding-bottom: 2rem;
            font-size: 0.8rem;
            font-weight: 300;
            max-width: 600px;
        }
        .the-team {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            .all-members {
                flex: 1 1 0;
                display: flex;
                flex-direction: column;
                gap: 0.8rem;
                img {
                    width: 250px;
                }
                span {
                    font-size: 1.15rem;
                    font-weight: 800;
                }
                p {
                    color: rgb(107, 114, 128);
                    font-size: 0.9rem;
                    font-weight: 400;
                }
                .social-icons {
                    display: flex;
                    gap: 10px;
                    img {
                        width: 1.5rem;
                        height: 1.5rem;
                    }
                }
            }
        }
    }
    .call-to-action {
        padding: 1.5rem 1.25rem;
        background: url(./images/cta-bg.png) center/cover;
        color: white;
        display: flex;
        align-items: center;
        gap: 16px;
        .call-to-action-para {
            padding-top: 1rem;
            width: max(40vw , 290px);
            font-size: 0.8rem;
            font-weight: 200;
        }
        .send-us-message{
            padding: 2rem;
            background-color: rgba(0, 0, 0, 0.1);
            border-radius: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            h2 {
                font-size: 1.8rem;
            }
            .inputs {
                display: flex;
                flex-wrap: wrap;
                gap: 6px;
                .name-email {
                    display: flex;
                    flex-direction: column;
                    flex-grow: 1;
                    input {
                        margin-bottom: 5px;
                        height: 40px;
                    }
                }
                #message {
                    flex-grow: 1;
                    height: 85px;
                    resize: none;
                }
            }
            .submit-button {
                height: 40px;
                background-color: white;
                color: rgb(3, 40, 170);
                border-style: none;
                border-radius: 0.75rem;
                font-size: 1rem;
                font-weight: bold;
                text-align: center;
                transition: all ease 0.1s;
            }
            .submit-button:hover {
                transform: scale(1.01);
                font-size: 1.02rem;
                font-weight: 800;
                cursor: pointer;
            }
            input, textarea{
                padding: 0.5rem;
                background-color: rgba(255, 255, 255, 0.2);
                border: solid white 0.4px;
                border-radius: 0.5rem;
                min-width: 240px;
            }
            ::placeholder {
                color: white;
                opacity: 1;
            }
        }
    }
}
footer {
    padding: 2rem 1.25rem;
    background-color: #2F3031;
    color: white;
    .footer-container {
        display: flex;
        justify-content: space-between;
        padding-top: 1rem;
        gap: 2rem;
        .left-part {
            flex-grow: 1;
            img {
                width: 35%;
            }
            p {
                width: 65%;
                font-size: 0.9rem;
                font-weight: 300;
                line-height: 1.8;
            }
        }
        .right-part {
            display: flex;
            justify-content: space-evenly;
            flex-grow: 1;
            gap: 1rem;
            .contacts {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
            .links,
            .socials {
                display: flex;
                flex-direction: column;
                gap: 0.8rem;
            }
            .contacts li {
                img {
                    width: 1.1rem;
                    margin-right: 5px;
                    position: relative;
                    top: 4px;
                }
            }
            ul .ul-title {
                font-size: 1.2rem;
                font-weight: 700;
            }  
        }
    }
    .copyright {
        padding-top: 25px;
        height: 4rem;
        line-height: 4rem;
        text-align: center;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 90%;
    }
    .the-services {
        flex-direction: column;
    }
    .call-to-action {
        flex-direction: column;
        align-items: stretch !important;
    }
}
@media (max-width: 767px) {
    html {
        font-size: 85%;
    }
    .proofs {
        flex-direction: column;
    }
    .the-testimonials {
        flex-direction: column;
    }
}
@media (max-width: 575px) {
    html {
        font-size: 75%;
    }
    .the-team {
        flex-direction: column;
    }
    .footer-container {
        flex-direction: column;
    }
}