@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');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
}

html {
    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;
    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;
    }
}






/* .......hero section.........  */
.hero-section{
    background-image: url(/images/index-banner_cleanup_enhanced.png);
    width: 100%;
    height: 530px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    /* z-index: -2; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
    overflow: hidden;
  }
  
  .hero-content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    padding-left: 65px;
  }
  
  #sol{
    width: 90px;
    font-size: 11px;
    font-weight: 600;
    color: #dee0ff;
    padding: 10px 15px;
    background-color: #04040440;
    border-radius: 4px;
    margin-bottom: 15px;

  }

  .hero-heading{
    width: 75%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content .hero-heading h1{
    color: #0a0d31;
    font-size: 60px;
    margin-bottom: 15px;
    width: 70%;
    margin-top: 30px;
  }
  
  .hero-content .hero-heading p{
    color: #0a0d31;
    font-size: 30px;
    width: 65%;
  }

  .hero-content .hero-heading button{
    padding: 12px 15px;
    font-size: 14px;
    border: none;
    color: #010ed0;
    background-color: #dee0ff;
    border-radius: 3px;
    margin-top: 40px;
    font-weight: 600;
    transition: all .4s ease;
    cursor: pointer;

  }
  
  #hero-btn{
    background-color: #010ed0;
    color: #ffffff;
    transition: all .4s ease;
    margin-right: 30px;
  }

  .hero-content .hero-heading button:hover{
    background-color: #242627;
    color: white;
  }

  #hero-btn:hover{
    background-color: #242627;
    color: white;
  }
  


/* ///////// History ////////// */



.history-container{
    padding-left: 30px;
    padding-right: 30px;
    border-top: 1px solid gray;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 200px;
}

.history-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 2px solid rgb(167, 167, 167);
    width: 300px;
}

.his-heading{
    display: flex;
    justify-content: start;
    align-items: center;
}

.his-heading h2{
    font-size: 20px;
    color: #242627d5;
    padding-left: 5px;
    
}

.his-heading h1{
    font-size: 30px;
    color: #242627;
}

.history-box{
    font-size: 16px;
    color: #242627ee;
    font-weight: 600;
}

.border-right{
    border: none;
}




/* ///////// Simplifying //////// */



.simpli-container{
    margin-left: 30px;
    margin-right: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 300px;
    max-width: 100%;
    background-color: #242627;
    border-radius: 5px;
    color: #ffffff;
    /* padding-right: 40px;
    padding-left: 30px; */
    padding: 40px 40px 20px 30px;
}

.simpli-headingh{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: space-evenly;
}

.simpli-headingh p{
    font-size: 12px;
}

.simpli-headingh h1{
    font-size: 48px;
    color: #dee0ff;
    width: 90%;
}





/* /////// Cost-effectiveness ///////// */



.cost-container{
    margin-left: 50px;
    margin-right: 30px;

    max-width: 100%;
    margin-top: 50px;
    height: 260px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgb(190, 190, 190);
}

.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;
    text-align: justify;
}



/* /////// About khudairint //////////// */



.about-khudairint{
    margin-left: 30px;
    margin-right: 30px;

    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
}

.about-khudairint p{
    font-size: 13px;
    font-weight: 600;
    margin-right: 5px;
    margin-left: 10px;
    color: #00000099;
}

.about-khudairint a{
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    font-family: Kommon Grotesk SemiBold;
    text-transform: uppercase;
    color: #fab24a;
}





/* /////////// solutions ///////// */



.solution-container{
    margin-left: 30px;
    margin-right: 30px;

    max-width: 100%;
    /* height: 900px; */
    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;
}

#solu-para{
    padding: 30px 40px;
    font-size: 13px;
    
}

#solu-heading{
    padding: 0 40px;
    margin-bottom: 30px;
    font-size: 48px;
}

.sol-box-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: space-evenly;
}

.solution-box{
    width: 385px;
    height: 300px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    transition: all .3s ease;
}

.solution-box img{
    filter: grayscale(100%);
}
.solution-box:hover img{
    filter: grayscale(0%);
}

.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;
    text-align: justify;
}

.solution-box hr{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.solution-box:hover hr{
    border: 1px solid #010ed0;
}

.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;
}











/* /////// Solving IT //////// */





.solving-container{
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#sol-para{
    font-size: 14px;
    color: #3f444bb0;
    margin-bottom: 20px;
}

.solving-heading{
    width: 60%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}

#solv-heading{
    font-size: 48px;
    color: #0a0d31;
}

.solv-img-container{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    width: 60%;
}

.solv-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    /* width: 300px; */
    border-radius: 50px;
    background-color: rgb(235, 235, 235);
    margin-right: 10px;
}

.solv-img-container img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.solv-box{
    margin-bottom: 20px;
    padding-right: 10px;

}

.solv-box p{
    font-size: 16px;
    color: #0a0d31;
    padding: 10px;
    font-weight: 600;
}

.solv-anchar{
    width: 60%;
    display: flex;
    justify-content: start;
}

.solv-anchar a{
    margin-top: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;

}






/* /////////  IT Challenges/////////// */



.it-challenged-container{
    margin-left: 30px;
    margin-right: 30px;

    max-width: 100%;
    height: 600px;
    background-color: #131212;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    padding: 5px;
    overflow: hidden;
    /* justify-content: center; */
}

.it-challenged-details{
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    background-color: #242627;
    border-radius: 5px;

}

#it-top{
    margin: 50px 0 20px 50px;
    font-size: 13px;
    font-weight: 600;
}



.it-challenged-heading h1{
    margin: 10px 0 30px 50px;
    font-size: 48px;
    color: #dee0ff;
}

.it-challenged-heading p{
    margin: 10px 0 30px 50px;
    font-size: 16px;
    color: #dee0ff;

}



.it-chall-topic{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.it-chall-topic h1{
    padding: 10px 30px;
    background-color: #131212;
    border-radius: 40px 40px 2px 2px;
}

.it-challenged-box{
    width: 100%;
    height: 285px;
    margin-top: 5px;
    background-color: #242627;
    display: flex;
    justify-content: space-evenly;
    align-items: center;  
    border-radius: 5px;  
}

.it-box{
    background-color: #131212;
    width: 350px;
    height: 200px;
    color: #dee0ff;
    padding: 15px;
    border-radius: 8px;
    transition: all .3s ease;
}

.it-box:hover{
    background-color: #000000;
    cursor: pointer;
}

.line{
    height: 300px;
    width: 5px;
    background-color: #131212;
}

.it-box h1{
    margin: 10px 0 10px 0;
    color: #f5f5f5;
    font-size: 20px;
}

.it-box p{
    font-size: 14px;
    color: #f5f5f1b3;
    margin: 10px 0 10px 0;
    line-height: 1.4;
}

#it-btn{
    display: flex;
    justify-content: start;
    align-items: center;
}

#pluse{
    background-color: #dee0ff;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    color: #131212;
    margin: 10px 0 10px 0;
    text-align: center;
    padding-top: 1px;
}

#view{
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}



/* ////////  Success Stories ///////// */

/* 



.success-container{
    width: 100%;
    display: flex;
    flex-direction: column;
}


#succ-top{
    margin: 50px 0 20px 0;
    font-size: 13px;
    font-weight: 600;
}



.success-heading h1{
    margin: 10px 0 30px 0;
    font-size: 48px;
    color: #242627;
}



.success-box{
    width: 100%;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    border-radius: 5px;  
}

.succ-box{
    width: 400px;
    color: #242627;
    padding: 20px;
    border-radius: 8px;
    transition: all .3s ease;
    border: 1px solid rgb(216, 216, 216);

}

.succ-box img{
    width: 350px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;

}


.succ-box h1{
    margin: 13px 0 13px 0;
    color: #242627;
    font-size: 20px;
}

.succ-box h1:hover{
    color: #010ed0;
    cursor: pointer;
}

.succ-box p{
    font-size: 16px;
    color: #36393ad8;
    margin: 13px 0 13px 0;
    line-height: 1.4;
}

.succ-check{
    display: flex;
    flex-direction: column;
}

.succ-check p{
    margin-bottom: -13px;
}
.fa-check{
    margin-right: 9px;
}

#succ-btn{
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 15px;
}


#pluse{
    background-color: #dee0ff;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    color: #131212;
    margin: 10px 0 10px 0;
    text-align: center;
    padding-top: 1px;
}

#view{
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
} */




/* ////// Review //////////// */

/* 
.review-container{
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    padding: 100px 250px 70px 250px;
}

.review-container img{
    width: 70px;
    margin-bottom: 30px;
}

.review-container h1{
    color: #0a0d31c9;
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 1.4;

}

.review-container h2{
    color: #0a0d31d8;
    font-size: 16px;
    margin-bottom: 5px;

}

.review-container p{
    color: #0a0d31bb;
    font-size: 14px;
    margin-bottom: 30px;

}

 */



/* ////////// Contact Us ////////// */


.contact-container{
    margin-top: 70px;
    /* padding-left: 30px;
    padding-right: 30px; */

    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: 100px;
    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 Quriey >>>>>>>>>>>>>>>>> */









@media only screen and (max-width: 1300px){
    

    .hero-content{
        margin-top: 0px;
        width: 100%;
    }
    .hero-content .hero-heading h1{
        width: 500px;
        font-size: 50px;
    }
    .hero-content .hero-heading p{
        width: 500px;
    }

    
    
    
    
    .success-container{
        width: 1064px;
    }
    .success-box{
        width: 1064px;
        display: flex;
        justify-content: center;
        align-items: start;
    }
    .succ-box{
        margin-right: 20px;
        width: 340px;
        overflow: hidden;

    }
    .succ-box img{
        overflow: hidden;
        width: 300px;
    }


}









@media only screen and (max-width: 1064px){
    .nav-container{
        width: 1064px;

    }
    .container{
        width: 1064px;
    }
    .hero-section{
        width: 1064px;
    }
    .hero-content{
        width: 100%;
    }
    .hero-content .hero-heading h1{
        margin-top: -20px;
        width: 550px;
        margin-left: 10px;
    }
    .hero-content .hero-heading p{
        width: 470px;
        margin-bottom: -20px;
        margin-left: 10px;
    }
    #hero-btn{
        margin-left: 10px;
    }
    .history-container{
        min-width: 1064px;
    }
    .simpli-container{
        min-width: 1064px;
    }
    .simpli-headingh{
        width: 1064px;
    }
    .cost-container{
        min-width: 1064px;
    }
    .about-khudairint{
        width: 1064px;
    }
    .about-tecno{
        width: 1064px;
    }
    .solution-container{
        min-width: 1064px;
    }
   
    .solving-container{
        width: 1064px;
    }
    .it-challenged-container{
        min-width: 1064px;
    }
    .it-challenged-details{
        width: 1064px;
    }
    .it-challenged-box{
        width: 1064px;
    }
    .success-container{
        width: 1064px;
    }
    .success-box{
        width: 1064px;
    }
    .succ-box{
        width: 300px;
        overflow: hidden;

    }
    .succ-box img{
        overflow: hidden;
        width: 260px;
    }
    .review-container{
        width: 1064px;
    }
    .contact-container{
        width: 1110px;
    }

  
    .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: 1110px;
    }
    .footer-2{
        width: 1110px;
    }
    .footer-img-section{
        display: none;
    }
}






/* ///////// Phone View ////////////// */






@media(max-width: 600px){

    body{
        overflow-x: hidden;
    }

    .nav_action{
        font-size: 25px;
    }

    .hero-content .hero-heading button{
        font-size: 23px;
    }



    .hero-section{
        height: 800px;
        width: 1115px;
    }
    .hero-heading{
        width: 80%;
        margin: -20px;
    }
    .hero-content .hero-heading h1{
        font-size: 70px;
        width: 700px;
    }



    .history-container{
        width: 1115px;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .history-box{
        height: 220px;
        width: 450px;
        margin: 60px 0 50px 0;
        border-right: none;
        box-shadow: rgb(154, 203, 255) 0px 20px 30px -5px;
        border: none;
        border-radius: 20px;
    }

    .his-heading h2{
        font-size: 35px;
        
    }
    .his-heading h1{
        font-size: 45px;
    }
    .history-box p{
        margin-top: 10px;
        font-size: 37px;
        color: #00000099;
    }



    .simpli-container{
        margin-top: 50px;
    }
    .simpli-headingh p{
        font-size: 25px;
    }



    .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);
    }


    .about-khudairint{
        height: auto;
    }
    .about-khudairint p{
        margin: 60px 20px 60px 0;
        font-size: 40px;
    }
    .about-khudairint a{
        margin: 60px 0 60px 0;
        font-size: 40px;
        font-weight: 500;
    }


    
    .solution-container{
        margin: 0;
        min-width: 1115px;
    }
    .sol-box-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: none;
    }
    #solu-para{
        font-size: 30px;
    }
    #solu-heading{
        font-size: 55px;
    }
    .solution-box{
        width: 950px;
        height: auto;
        border-radius: 20px;
        padding: 50px;
    }
    .solution-box img{
        width: 150px;
        border-radius: 10px;
        filter: grayscale(0%);
    }
    .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;
    }


    .solving-container{
        height: auto;
        padding: 30px 0 30px 0;
    }
    #sol-para{
        font-size: 30px;
    }
    #solv-heading{
        font-size: 55px;
        text-align: center;
    }
    .solving-heading{
        width: 90%;
    }
    .solv-img-container{
        width: 60%;
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .solv-box{
        height: 120px;
        width: 800px;
        display: flex;
        justify-content: start;
        margin-top: 50px;
    }

    .solv-img-container img{
        width: 160px;
        height: 160px;
        margin-right: 20px;
    }
    .solv-box p{
        font-size: 45px;
        font-weight: 400;
    }
    .solv-anchar a{
        font-size: 37px;
    }




    .it-challenged-container{
        height: auto;
        padding: 30px 0 30px 0;
        background-color: #fff;

    }
    #it-top{
        font-size: 30px;
    }
    .it-challenged-heading{
        height: auto;
    }
    
    .it-challenged-details{
        height: auto;
        border-radius: 25px 25px 0 0;
    }
    .it-challenged-details h1{
        font-size: 55px;
        color: #fff;
    }
    .it-challenged-heading h1{
        color: #fff;
    }
    .it-challenged-heading p{
        font-size: 45px;
        padding-right: 30px;
        font-weight: 300;
        color: #fff;
    }
    .it-chall-topic{
        height: 150px;
    }
    .it-chall-topic h1{
        padding: 15px;
        font-size: 55px;
        margin-bottom: 25px;
        height: 100px;
        color: #fff;
    }
    .it-challenged-box{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #242627;
        height: 1510px;
        padding-bottom: 20px;

        border-radius: 0 0 25px 25px;
    }
    .it-box{
        margin-top: 20px;
        width: 900px;
        height: auto;
    }
    .it-challenged-box p{
        font-size: 45px;
        font-weight: 300;
        color: #fff;
    }
    .it-challenged-box h1{
        font-size: 55px;
        color: #fff;
    }
    #pluse{
        font-size: 35px;
        
    }
    #view{
        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: 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;
    }
}