@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
}

html {
    font-family: "Roboto", sans-serif;
    font-size: 62.5%;
    font-style: normal;
}

body{
    font-family: "Roboto", sans-serif;
}

: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;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1rem;

    padding-left: 30px;
    padding-right: 30px;
}

.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;
}

.solutins-ser-container p{
    color: #00000099;
    font-size: 20px;
    margin-top: 15px;
}



/* ////////Services Image Solutions /////////// */

.solution-img-container{
    max-width: 100%;
    height: 300px;
    overflow: hidden;

    margin-left: 30px;
    margin-right: 30px;
}

.solution-img-container img{
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}


/* ///Services Paragraph Solutions ////// */



.solution-para-container{
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-para-container p{
    color: #17223a;
    font-size: 20px;
    line-height: 1.4;
    width: 60%;
}



/* /////////Comprehensive/////////// */


.comp-container{
    max-width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;

    margin-left: 30px;
    margin-right: 30px;

}

.comp-container h1{
    font-size: 48px;
    color: #0a0d31;
    width: 48%;
}

.comp-para{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
}

.comp-para p{
    width: 45%;
    line-height: 1.6;
    font-size: 20px;
    color: #00000099;
}








/* /////////// solutions ///////// */



.solution-box-container{
    min-width: 100%;
    /* height: 900px; */
    margin-top: 80px;
    padding-bottom: 30px;
    padding: none;
    background: rgb(159,166,255);
    background: linear-gradient(180deg, rgb(153, 160, 255) 21%, rgb(235, 242, 255) 100%);
    display: flex;
    flex-direction: column;
    border-radius: 5px;

    /* margin-left: 30px;
    margin-right: 30px; */
}



.sol-box-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: space-evenly;
}

.solution-box{
    width: 385px;
    height: 290px;
    margin-top: 70px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    transition: all .3s ease;
}

.solution-box:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.solution-box:hover h1{
    color: #010ed0;
}

.solution-box h1{
    font-size: 24px;
    color: #242627;
    padding: 20px 0px;
}

.solution-box p{
    font-size: 14px;
    color: #3f444bb0;
}

.solution-box hr{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.solution-box a{
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.solu-btn-view{
    display: flex;
    justify-content: center;
    align-items: center;
}

#solu-btn{
    font-size: 14px;
    padding: 15px 20px;
    border: none;
    background-color: #010ed0;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s ease;
}

#solu-btn:hover{
    background-color: #242627;
}







/* ////////////Why choose services//////////// */




.about-container{
    display: flex;
    justify-content: space-around;
    max-width: 100%;
    height: 550px;
    margin-top: 80px;

    margin-left: 30px;
    margin-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{
    /* width: 600px; */
    height: 450px;
}

.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{
    min-width: 1064px;
   } 
   .solutins-ser-container{
    width: 1064px;
   }
   .solution-img-container{
    min-width: 1000px;
   }
   .solution-para-container{
    width: 1064px;
   }
   .comp-container{
    min-width: 1000px;
   }
   .solution-box-container{
    min-width: 1000px;
   }
   .about-container{
    min-width: 1000px;
    height: auto;
   }
   .about-img img{
    height: 400px;
   }



   .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{
        width: 150px;
        font-size: 25px;
    }
    .solutins-ser-container{
        margin-top: 50px;
    }
    .solutins-ser-container p{
        font-size: 45px;
        width: 90%;
        text-align: center;
    }
    .solutins-ser-container h1{
        font-size: 66px;
    }
    .solution-img-container{
        min-width: 1130px;
        margin: auto;
    }
    .solution-para-container p{
        font-size: 45px;
        width: 90%;
        color: rgb(88, 88, 88);
        line-height: 1.5;
    }
    



    .comp-container h1{
        font-size: 55px;
        width: 100%;
    }
    .comp-para p{
        font-size: 45px;
        color: gray;
    }
    




    .solution-para-container{
        height: auto;
        width: 1090px;
    }
    .solution-para-container p{
        font-size: 45px;
        text-align: justify;
        margin: 30px 0 30px 0;
        color: gray;
    }



    
    .comp-container{
        height: auto;
        width: 1090px;
        margin-top: 40px;
    }
    .comp-container h1{
        text-align: center;
        margin-bottom: 20px;
        font-size: 65px;
    }
    .comp-para{
        width: 1080px;
        height: auto;
        flex-direction: column;
    }
    .comp-para p{
        width: 100%;
        font-size: 45px;
        text-align: justify;
        color: gray;
    }



   
    .sol-box-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #solu-para{
        font-size: 20px;
    }
    .solution-box{
        width: 950px;
        height: auto;
    }
    .solution-box h1{
        font-size: 45px;
    }
    .solution-box p{
        font-size: 40px;
        color: gray;
    }
    .solution-box a{
        font-size: 20px;
    }
    #solu-btn{
        font-size: 25px;
    }





    
    .about-container{
        flex-direction: column-reverse;
        height: auto;
    }
    .about-img{
        width: 1070px;
        margin: 0;
        border-radius: 15px;
    }
    .about-img img{
        width: 100%;
        height: auto;
        border-radius: 15px;

    }
    .about-details{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 1060px;
    }
    .about-details h1{
        width: 100%;
        text-align: center;
        font-size: 60px;
    }
    .about-details p{
        width: 100%;
        text-align: justify;
        font-size: 45px;
        color: gray;
    }
    .learn-btn{
        font-size: 35px;
        margin-bottom: 40px;
    }






    

    .sol-box-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: none;
        width: 1130px;
        background: rgb(159,166,255);
        background: linear-gradient(180deg, rgb(153, 160, 255) 21%, rgb(235, 242, 255) 100%);
        display: flex;
    }
    #solu-para{
        font-size: 30px;
    }
    #solu-heading{
        font-size: 55px;
    }
    .solution-box{
        width: 1000px;
        height: auto;
        border-radius: 20px;
        padding: 50px;
    }
    .solution-box img{
        width: 150px;
        border-radius: 10px;
        filter: grayscale(0%);
    }
    .solution-box-img img{
        width: 600px;
    }
    .solution-box h1{
        font-size: 50px;
    }
    .solution-box p{
        font-size: 45px;
        line-height: 1.5;
        color: rgb(112, 112, 112);

    }
    .solution-box a{
        font-size: 35px;
    }
    #solu-btn{
        font-size: 35px;
    }



}













/* /////// 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: 1130px;

    }

    .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: 1130px;

        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: 1130px;
        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;
    }
}