@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

html {
    font-size: 62.5%;
    font-style: normal;
}


:root {
    --primary: #7F56D9;
    --secondary: #F4EBFF;
    --text-primary: #101828;
    --text-secondary: #667085;
    --badge-bg: #ECFDF3;
    --badge-text: #027A48;
    --white: #fff;
    --dropdown-bg: rgb(252, 253, 251);
    --shadow: rgba(32, 7, 65, 0.14);
    --container: 124rem;
    --nav-height: 7rem;
}


body {
    font-size: 1.6rem;
    overflow-x: hidden;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1rem;

    padding-left: 30px;
    padding-right: 30px;

    z-index: 100;

}

.logo img{
    height: 60px;
    margin-left: -35px;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    position: relative;
    background: var(--white);
}

span{
    font-weight: 600;
}

.item-list-info p{
    color: #0a0d31;
}

.nav_list {
    display: inline-flex;
    gap: 2rem;
    align-items: center;
    padding: 10px 15px;
}

.nav_action {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav_action .btn{
    font-weight: 600;
}

.nav_link,
.btn {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--text-primary);

}

.btn-primary {
    display: inline-flex;
    color: var(--white);
    background: #010ed0;
    font-weight: 500;
    padding: 1rem 1.6rem;
    border-radius: .5rem;
    transition: all .5s ease;
}

.btn-primary:hover{
    background-color: #242627;
}

.nav_toggle {
    cursor: pointer;
    display: none;
}

.nav_toggle ion-icon {
    font-size: 3.5rem;
    color: var(--text-primary);
}

.dropdown {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--dropdown-bg);
    box-shadow: 0px 0px 20px rgb(172, 172, 172);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all .2s ease-in;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 100;
    padding: 50px 0px 10px 40px;
}

.dropdown-item{
    width: 100%;
}

.dropdown-item h1{
    font-size: 35px;
}


.dropdown-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1rem;
    padding: 1rem;

    display: flex;
    justify-content: space-around;
}

.nav_list_menu:hover ion-icon {
    transition: all .5s ease-in;
    transform: rotate(180deg);
}

.nav_list_menu:hover .dropdown {
    clip-path: polygon(0 0, 100% 0, 100% 102%, 0 102%);
}

.item-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}


.item-list-info {
    position: relative;
    width: 100%;
    display: flex;
}

.item-list-info img{
    margin-right: 10px;
}

.item-list-info p:hover{
    color: #010ed0;
}

.nav-box{
    width: 200px;
    height: 100px;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;

    &:hover{
        border: 1px solid #010ed0;

    }
}

.nav-box img{
    width: 44px;
    transition: all .15s ease-in;
}

.nav-box:hover img{
    transform: scale(1.2);
}

.nav-box:hover p{
    color: #010ed0;
}


.drop-box{
    width: 450px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-left: -40px;
}

.info-badge {
    position: absolute;
    right: 1rem;
    top: 0;
    background: var(--badge-bg);
    padding: 0.1rem 0.5rem;
    border-radius: 1rem;
    color: var(--badge-text);
}

@media (max-width:1200px) {
    .nav_toggle {
        display: block;
    }
    .nav_menu {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--dropdown-bg);
        display: none;
        z-index: 1000;
    }
    .nav_menu.active {
        display: block;
    }
    .nav_list {
        display: block;
        margin: 2rem 0;
        text-align: center;
    }
    .nav_link {
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
    }
    .dropdown {
        top: 0;
        position: relative;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        box-shadow: none;
        height: 0;
        text-align: start;
        transition: all 0.5s ease-in;
        padding: 0px;
    }
    .nav_list_menu:hover .dropdown {
        height: 100%;
        transition: all 0.5s ease-in;
    }
}

@media (max-width:365px) {
    .logo-img {
        width: 10rem;
    }
    .btn,
    .btn-primary {
        padding: 0.4rem 1rem;
    }
}








/* ////////Services & Solutions//////////// */





.solutins-ser-container{
    display: flex;
    width: 100%;
    height: 350px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#mark-section{
    font-size: 11px;
    font-weight: 600;
    color: #242627;
    padding: 10px 15px;
    background-color: #e0e0e0;
    border-radius: 4px;
}

.solutins-ser-container h1{
    font-size: 60px;
    color: #0a0d31;
    margin-top: 10px;
    width: 70%;
    text-align: center;
}

.solutins-ser-container p{
    color: #00000099;
    font-size: 20px;
    margin-top: 15px;
}











/* /////////The Begining//////// */



.begining-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.begining-img{
    width: 400px;
    height: 300px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.begining-img img{
    width: 312px;
    height: 235px;
    border-radius: 5px;
}

.beginging-details{
    width: 400px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.beginging-details h1{
    color: #0a0d31;
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
}

.beginging-details p{
    color: #00000099;
    font-size: 16px;
}

.left-details{
    margin-right: 40px;
}

.left-img{
    margin-left: 40px;
}








/* //////////// why us ///////////// */



.whyUs-container{
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 200px;
}

.whyUs-container p{
    color: #00000099;
    font-size: 24px;
}

.why-tag p{
    width: 80px;
    margin-bottom: 30px;
}












/* ///////// Simplifying //////// */



.simpli-container{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 400px;
    min-width: 90%;
    background-color: #242627;
    border-radius: 5px;
    color: #ffffff;
    padding-right: 40px;
    padding-left: 30px;

    margin-left: 30px;
    margin-right: 30px;
}

.simpli-headingh{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: space-evenly;
}

.simpli-headingh p{
    font-size: 12px;
    padding: 10px 15px;
    width: 150px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.23);
}

.simpli-headingh h1{
    font-size: 48px;
    color: #dee0ff;
    width: 70%;
}





/* /////// Cost-effectiveness ///////// */



.cost-container{
    width: 100%;
    /* margin-inline-start: 30px; */
    margin-top: 100px;
    height: 260px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgb(190, 190, 190);

    padding-left: 50px;
    padding-right: 50px;
}

.cost-box{
    height: 100%;
    width: 280px;
    padding-right: 15px;
}

.cost-box h1{
    font-size: 24px;
    color: #242627;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cost-box p{
    margin-top: 20px;
    font-size: 14px;
    color: #2426279d;
    word-spacing: 2px;
}








/* ////////////// team built//////////// */



.team-built-container{
    margin-top: 60px;
    width: 100%;
    height: 400px;
    padding: 70px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-color: rgb(210, 210, 255);
    border-radius: 5px;
}

.team-built-container h1{
    font-size: 48px;
    color: #0a0d31;
    width: 50%;
    text-align: center;
}

.team-built-container p{
    font-size: 16px;
    color: #00000099;
    width: 55%;
    text-align: center;
    line-height: 1.3;
}

.team-built-container button{
    border: none;
    background-color: #010ed0;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.team-built-container button:hover{
    background-color: #242627;
}











/* ////////////Why choose services//////////// */




.about-container{
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    height: 500px;
    margin-top: 80px;

    padding-left: 30px;
    padding-right: 30px;
}

.about-details{
    margin-right: 15px;
}

.about-details h1{
    color: #0a0d31;
    font-size: 48px;
    margin-top: 30px;
}

.about-details p{
    color: #00000099;
    font-size: 16px;
    margin-top: 20px;
    letter-spacing: 1px;
    line-height: 1.5;
}

.about-img img{
    height: 450px;
    border-radius: 5px;
}

.learn-btn{
    padding: 15px 25px;
    background-color: #010ed0;
    border: none;
    border-radius: 4px;
    margin-top: 30px;
    font-size: 16px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.learn-btn:hover{
    background-color: #242627;
}






















/* ////////// Contact Us ////////// */


.contact-container{
    margin-top: 70px;

    width: 100%;
    height: 780px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 70px;
}

.contact-color{
    background: rgb(216, 219, 255);
    background: linear-gradient(180deg, rgb(187, 191, 255) 21%, rgb(235, 242, 255) 100%);
    height: 100%;
}
    

.contact-details{
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
    width: 100%;
    height: 100%;
}

.cont-heading{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 300px;
    background-color: #242627;
    border-radius: 5px 5px 0 0;

}

.cont-heading h1{
    width: 50%;
    font-size: 45px;
    color: #dee0ff;
    margin-left: 50px;
}

#it-top{
    margin-left: 50px;
    width: 90px;
    font-size: 11px;
    font-weight: 600;
    color: #dee0ff;
    padding: 10px 15px;
    background-color: #00000038;
    border-radius: 4px;
}

.cont-para p{
    margin-top: 40px;
    margin-left: 50px;
    font-size: 20px;
    color: #242627;
    width: 50%;
    line-height: 1.5;
}


.cont-para h2{
    margin-left: 50px;
    font-size: 20px;
    color: #131212;
    margin: 30px 0 30px 50px;

}

.cont-list{
    margin-top: 50px;
    margin-left: 50px;
}

.cont-list h2{
    font-size: 20px;
    color: #131212;
    /* margin-bottom: 20px; */
}

.cont-list-heading{
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;

}

.cont-list-heading p{
    font-size: 16px;
    padding: 20px 0 0px 0;
    width: 150px;
}

.cont-list-heading img{
    margin-right: 10px;
    width: 20px;
}

.cont-list-1{
    margin: 60px 0 20px 50px;
    width: 60%;
    display: flex;
    flex-direction: column;
}

.cont-list-para{
    display: flex;
    width: 100%;
}

.cont-msg{
    width: 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0 20px 0;
}

.cont-msg h1{
    font-size: 25px;
    color: #242627;
    margin-right: 10px;
}

.cont-msg p{
    font-size: 13px;
    color: #17223a;
}

/* form////////// */


.contact-form{
    width: 90%;
    display: flex;
    justify-content: end;
    position: absolute;
}

.hero-form{
    width: 500px;
    height: 700px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 50px;
    margin-top: 25px;
    text-align: center;
    border-radius: 5px;
}


.form-content h1{
    margin-top: 20px;
    font-size: 26px;
}

.form-content p{
    font-size: 16px;
    margin-bottom: 10px;
}

.form-fill{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-fill .from{
    width: 350px;
    height: 50px;
    margin-top: 25px;
    padding: 0 20px;
    border-radius: 7px;
    border: 1px solid rgb(114, 114, 114);
    font-size: 16px;
}

.form-fill .from:hover{
    border: 1px solid #010ed0;
}

#comment{
    width: 350px;
    padding: 15px 20px;
    font-size: 16px;
    margin-top: 15px;
    border-radius: 7px;
}

#comment:hover{
    border: 1px solid #010ed0;

}

.form-fill .form-btn{
    background-color: #010ed0;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    width: 130px;
}

.form-fill .form-btn:hover{
    background-color: #242627;
    color: #ffffff;
    border: 1px solid #242627;
}

.captcha-container{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding-top: 10px;
    height: 80px;
}

#captcha{
    margin-top: -13px;
    padding: 8px;
    font-size: 15px;
}













/* ////////// footer /////////// */



.footer-container{
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    background-color: #2b2e2f;
    padding: 50px;
    overflow: hidden;
}

.footer-details-section{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;

}

.footer-marging{
    margin-right: 50px;
}

.footer-marging p{
    margin-bottom: 8px;
}

.footer-details-section img{
    height: 60px;
}

.footer-details-section h1{
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;

}

.footer-details-section p{
    color: #a8a8a8;
    font-size: 15px;
    line-height: 1.5;
    width: 270px;

    &:hover{
        color: white;
    }
}

.footer-list-para{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    width: 300px;

}


.footer-list-para img{
    width: 18px;
    height: 18px;
    margin-right: 10px;
}


.footer-check input{
    margin-right: 10px;
}

#footer-btn{
    padding: 10px 20px;
    background-color: #010ed0;
    color: #ffffff;
    font-size: 14px;
    border: none;
    margin-top: 10px;
    border-radius: 2px;
}

.footer-img-section img{
    margin-top: -50px;
}



/* ////// Footer 2 ////////////// */



.footer-2{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background-color: rgb(24, 23, 23);
}

.footer-2 p{
    margin-right: 15px;
    font-size: 15px;
    color: #fff;
    font-family: Helvetica;
}

.footer-2 a{
    color: #fff;
    font-family: Helvetica;
}

.footer-2 a:hover{
    color: red;
}










/* //////////////// Media Queriea>>>>>>>>>>>>> */









@media (max-width:1064px){
    .container{
        width: 1064px;
       } 
       .solutins-ser-container{
        width: 1064px;
       }
       .solutins-ser-container h1{
        width: 90%;
       }
       .begining-container{
        width: 1064px;
       }
       .whyUs-container{
        width: 1064px;
       }
       .simpli-container{
        width: 1000px;
       }
       .simpli-container h1{
        width: 100%;
       }
       .cost-container{
        width: 1064px;
       }
       .team-built-container{
        width: 1064px;
       }
       .about-tag{
        width: 1064px;
       }
       .about-container{
        width: 1064px;
       }
       .contact-container{
        width: 1064px;
    }
    .contact-form{
        width: 1064px;
        padding-right: 10px;
        display: flex;
        justify-content: end;
        margin-right: 20px;
    }
    .hero-form{
        width: 400px;
        margin-right: 20px;
    }
    .footer-container{
        width: 1064px;
    }
    .footer1-container{
        width: 1064px;
    }
    .footer-2{
        width: 1064px;
    }
    .footer-img-section{
        display: none;
    }
    

}









/* ///////// Phone View ////////////// */






@media(max-width: 600px){



    .nav_action{
        font-size: 25px;
    }

    .hero-content .hero-heading button{
        font-size: 23px;
    }


    #mark-section{
        font-size: 30px;
    }
    .solutins-ser-containerh1{
        font-size: 65px;
    }
    .solutins-ser-container p{
        font-size: 45px;
    }


    .begining-container{
        display: flex;
        flex-direction: column;
    }
    .begining-img{
        width: 1160px;
        object-fit: cover;
        margin: 0;
    }
    .begining-img img{
        width: 100%;
        object-fit: cover;
    }
    .beginging-details{
        width: 100%;
        margin-bottom: 40px;
        height: auto;
    }
    .beginging-details h1{
        font-size: 55px
    }
    .beginging-details p{
        font-size: 45px;
        padding-left: 20px;
        color: gray;
    }



    .whyUs-container{
        width: 1100px;
        padding-left: 50px;
        margin: 0;
    }
    #mark-section{
        width: 150px;
        font-size: 35px;
    }
    .whyUs-container p{
        font-size: 45px;
        width: 100%;
        color: gray;
    }



    .simpli-container{
        width: 1115px;
        margin: 0;
        margin-top: 40px;
    }
    .simpli-headingh p{
        font-size: 20px;
        width: 250px;
    }
    .simpli-headingh h1{
        width: 100%;
        font-size: 40px;
    }
    .simpli-headingh p{
        font-size: 30px;
    }



    
    .cost-container{
        display: flex;
        flex-wrap: wrap;

        height: auto;
    }
    .cost-box{
        height: auto;
        width: 95%;
        margin-bottom: 50px;
        padding-right: 40px;

        border-radius: 10px;
        padding: 30px 70px;
        box-shadow: rgb(154, 203, 255) 0px 20px 30px -5px;
        border-radius: 20px;
    }
    .cost-box img{
        width: 130px;
    }
    .cost-box h1{
        font-size: 50px;
    }
    .cost-box p{
        font-size: 45px;
        line-height: 1.5;
        color: rgb(112, 112, 112);
    }



    .team-built-container{
        height: auto;
        width: 1115px;
    }
    .team-built-container h1{
        font-size: 55px;
        width: 80%;
    }
    .team-built-container p{
        width: 90%;
        font-size: 45px;
    }
    .team-built-container button{
        margin-top: 20px;
        font-size: 35px;
    }


    
    .about-container{
        flex-direction: column-reverse;
        height: auto;
    }
    .about-img{
        width: 1050px;
        overflow: hidden;
        border-radius: 10px;
    }
    .about-img img{
        width: 100%;
        height: auto;
    }
    .about-details{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .about-details h1{
        width: 100%;
        text-align: center;
        font-size: 55px;
    }
    .about-details p{
        width: 100%;
        text-align: justify;
        font-size: 45px;
        padding-left: 20px;
    }
    .learn-btn{
        font-size: 35px;
        margin-bottom: 40px;
    }


}













/* /////// Dropdown menu and Footer /////////// */

@media(max-width: 600px){

    .logo img{
        margin-top: 15px;
        height: 130px;
    }
    .dropdown-inner{
        display: flex;
        flex-direction: column;
        margin-left: 50px;
    }
    .dropdown-item p{
        font-size: 33px;
    }
    .drop-box{
        width: 70%;
    }
    .nav-box{
        width: 280px;
        height: 150px;
    }
    .nav_link span{
        font-size: 38px;
    }
    .item-heading{
        font-size: 37px;
    }
    .nav_toggle ion-icon {
        font-size: 50px;
    }





    .contact-color{
        background: rgb(212, 216, 255);
        background: linear-gradient(180deg, rgb(211, 214, 250) 21%, rgb(252, 252, 252) 100%);
        min-width: 1115px;

    }
    .contact-container{
        display: flex;
        flex-direction: column;
        height: auto;
        min-width: 1115px;

    }

    .contact-details{
        width: 100%;
    }
    .cont-heading h1{
        font-size: 55px;
        color: #fff;
    }
    #it-top{
        font-size: 30px;
        width: 240px;
        color: #fff;
    }
    .cont-para p{
        font-size: 45px;
        width: 80%;
    }
    .cont-para h2{
        font-size: 50px;
    }
    .cont-list h2{
        font-size: 50px;
    }
    .cont-list-heading{
        width: 100%;
    }
    .cont-list-heading img{
        width: 40px;
    }
    .cont-list-heading p{
        font-size: 45px;
        width: 450px;
    }
    .cont-list-1 h2{
        font-size: 50px;
    }
    .cont-msg{
        width: 90%;
        display: flex;
        flex-wrap: wrap;
    }
    .cont-msg h1{
        font-size: 55px;
    }
    .cont-msg p{
        width: 310px;
        font-size: 45px;
        text-align: center;
        margin-right: 20px;
    }






    .contact-form{
        width: 100%;
        position: sticky;
        height: auto;
    }
    .hero-form{
        margin-top: 60px;
        width: 1000px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        margin-bottom: 80px;
    }
    .form-content h1{
        font-size: 55px;
    }
    .form-content p{
        font-size: 50px;
    }
    .form-fill .from{
        width: 900px;
        height: 100px;
        font-size: 45px;
        border: 1px solid #010ed0;
    }#comment{
        font-size: 45px;
        width: 900px;
        border: 1px solid #010ed0;

    }

    
    .form-fill .form-btn{
        width: 350px;
        margin-top: 90px;
    }
    .captcha-container{
        font-size: 45px;
        margin-top: -130px;
    }
    #captcha{
        font-size: 40px;
        padding: 20px 10px;
        border: 1px solid #010ed0;
    }
    #responseMessage{
        padding-top: 50px;
        font-size: 45px;
    }






    .footer-container{
        min-width: 1115px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;

        overflow: visible;
        
    }
    .footer-details-section{
        width: 900px;
    }
    .footer-details-section img{
        height: 80px;
    }
    .footer-details-section h1{
        font-size: 55px;
    }
    .footer-details-section p{
        font-size: 50px;
        width: 800px;
        text-align: justify;
    }
    .footer-list-para img{
        width: 60px;
        height: 60px;
        margin-right: 30px;
    }
    #footer-logo{
        margin-top: -40px;
        margin-bottom: 20px ;
        height: 235px;
        border-radius: 30px;
    }




    .footer-2{
        width: 1115px;
        height: 70px;
        padding: 5px 10px 5px 10px;
        display: flex;
        flex-wrap: wrap;
        height: auto;
        padding: 20px 0 20px 0;
    }
    .footer-2 p{
        font-size: 35px;
    }
    .footer-2 a{
        font-size: 35px;
    }
}