@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
/* || REST */
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all .3s ease;
}

li{
    list-style-type: none;
}
:any-link{
    text-decoration: none;
}
img{
    display: block;
    width: 100%;
}

/* || ROOT */
:root{
    --primary: #0077ff;
    --secondary: #00cc66;
    --white: #fff;
    --light: #ece7e7;
    --black: #010704;
    --navyBlue: #011C3B;
    --yellow: #F25C05;
    /* --ornage: #F26A1B; */
    --orange: #F25C05;
    /* --orange: #00cc66; */
    --gradient: linear-gradient(to right, rgba(0, 119, 255, .7), rgba(0, 204, 102, .4));
    --orange__gradient: linear-gradient(to right, rgba(255, 215, 0, 1), rgba(255, 107, 107, .5));
    --orange__gradient2: linear-gradient(to right, rgba(255, 215, 0, 1), rgba(255, 107, 107, .9));

    /* BORDER RADIUS */
    --border-radius1: 20rem;
    --border-radius2: 10rem;
    --bgRadius: .5rem;

    /* BOX SHADOW  */
    --box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, .3);
    --box-shadow2: -2px 12px 70px -25px rgba(0, 0, 0, .7);
    --box-shadow-darkBg: 0 5px 20px rgba(255, 255, 255, 0.3);

    /* SERVICES CONTAINER */
    --services__container: 120rem;
    --services__primaryHSL: hsl(201, 21%, 87%);
    --services__white: hsl(0, 0%, 100%);
    --services__whiteLight: hsl(0, 0%, 99%);
    --services__boxshadow: hsl(220, 7.32%, 91.96%);

     /* FONTS */
     --heading: 3rem;
     --heading2: 2.5rem;
     --subHeading: 1.5rem;
     --paragraph: 1.2rem;
     --smallParagraph: 1rem;


     /* SECTION PADDING */
     --sectionPaddingTop: 5rem;
     --innerSectionPaddingTop: 2rem;

}

/* || HERO SECTION STARTS  */
.company__hero{
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../assets/images/company.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    text-align: center;
}

.company__hero .about__hero__container{
    flex-direction: column;
}

.company__hero .about__hero__container .section__heading{
    font-size: var(--subHeading);
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #0077ff, #00cc66);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent; 
    background-clip: text;
    font-weight: 900;
}

.company__hero .about__hero__container h3{
    font-size: var(--heading);
    text-transform: capitalize;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 2;
}

.company__hero .about__hero__container p{
    font-size: var(--subHeading);
    color: var(--white);
    font-weight: 300;
    text-align: center;
}

.company__hero .about__hero__container h2{
    font-size: var(--smallParagraph);
    color: var(--white);
    text-transform: capitalize;
    margin-top: 4rem;
    font-weight: 400;
}

.company__hero .about__hero__container h2 a{
    font-size: var(--smallParagraph);
    color: var(--yellow);
    text-transform: capitalize;
    margin-bottom: 1rem;
    text-transform: capitalize;
    text-decoration: underline;
}

.company__hero .about__hero__container h2 span{
    color: var(--secondary);
    margin: 0 .5rem;
}

.company__hero .about__hero__container h2 a:hover{
    color: var(--secondary);
    text-decoration: none;
}




/* || ABOUT SECTION STARTS  */
.about__page{
    background-color: var(--white);
}

.about__page .about__page__container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 4rem;
}

.about__page .about__page__container .about__page__content{
    padding-right: 2rem;
}

.about__page .about__page__container .about__page__content .title{
   font-size: var(--subHeading);
   margin-bottom: 1rem;
   text-transform: capitalize;
   color: var(--orange);
   font-weight: 600;
}

.about__page .about__page__container .about__page__content p{
   font-size: var(--paragraph);
   margin-bottom: 1.2rem;
   color: var(--navyBlue);
   text-align: justify;
}

.about__page .about__page__container .about__content__img{
    border-radius: var(--bgRadius);
    height: auto;
    overflow: hidden;
}

.about__page .about__page__container .about__content__img img{
    border-radius: var(--bgRadius);
    height: 100%;
    object-fit: cover;
}

.about__page .about__page__container .about__content__img img:hover{
    transform: scale(1.1);
}


.about__page .mission__vision__section{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about__page .mission__vision__section .box{
    padding: 2rem;
    background-color: var(--white);
    box-shadow: var(--box-shadow1);
    border-radius: var(--bgRadius);
}

.about__page .mission__vision__section .box h2{
    font-size: var(--subHeading);
    margin-bottom: 1rem;
    color: var(--primary);
}

.about__page .mission__vision__section .box p{
    font-size: var(--paragraph);
    line-height: 1.6;
    text-align: justify;
}




/* || WHY CHOOSE US PAGE STARTS  */
.why__choose__us__hero{
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../assets/images/company.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    text-align: center;
}

.why__choose__us__hero .why__choose__us__hero__container{
    flex-direction: column;
}

.why__choose__us__hero .why__choose__us__hero__container .section__heading{
    font-size: var(--subHeading);
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #0077ff, #00cc66);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent; 
    background-clip: text;
    font-weight: 900;
}

.why__choose__us__hero .why__choose__us__hero__container h3{
    font-size: var(--heading);
    text-transform: capitalize;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 2;
}

.why__choose__us__hero .why__choose__us__hero__container p{
    font-size: var(--subHeading);
    color: var(--white);
    font-weight: 300;
    text-align: center;
}

.why__choose__us__hero .why__choose__us__hero__container h2{
    font-size: var(--smallParagraph);
    color: var(--white);
    text-transform: capitalize;
    margin-top: 4rem;
    font-weight: 400;
}

.why__choose__us__hero .why__choose__us__hero__container h2 a{
    font-size: var(--smallParagraph);
    color: var(--yellow);
    text-transform: capitalize;
    margin-bottom: 1rem;
    text-transform: capitalize;
    text-decoration: underline;
}

.why__choose__us__hero .why__choose__us__hero__container h2 span{
    color: var(--secondary);
    margin: 0 .5rem;
}

.why__choose__us__hero .why__choose__us__hero__container h2 a:hover{
    color: var(--secondary);
    text-decoration: none;
}

.why__choose__us__page{
    background-color: var(--white);
}

.why__choose__us__page .title{
   font-size: var(--subHeading);
   margin-bottom: 2rem;
   text-transform: capitalize;
   color: var(--orange);
   font-weight: 600;
   text-align: center;
}

.why__choose__us__page .why__choose__us__container .feature-boxes{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.why__choose__us__page .why__choose__us__container .feature-boxes .feature-box{
    padding: 1rem;
    background-color: var(--white);
    box-shadow: var(--box-shadow1);
    border-radius: var(--bgRadius);
    display: flex;
    align-items: center;
}

.why__choose__us__page .why__choose__us__container .feature-boxes .feature-box .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary);
    border-radius: 50%;
    font-size: 5rem;
    padding: 1rem;
    margin-right: 2rem;
    color: var(--white);
}
.why__choose__us__page .why__choose__us__container .feature-boxes .feature-box:hover > div{
    background-color: #ece7e7;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    box-shadow: none;
}

.why__choose__us__page .why__choose__us__container .feature-boxes .feature-box h3{
    font-size: var(--subHeading);
    margin-bottom: 1rem;
    color: var(--primary);
}

.why__choose__us__page .why__choose__us__container .feature-boxes .feature-box p{
    font-size: var(--paragraph);
    line-height: 1.6;
    text-align: justify;
}



/* || PORTFOLIO PAGE STARTS  */
.portfolio__hero{
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../assets/images/company.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    text-align: center;
}

.portfolio__hero .portfolio__hero__container{
    flex-direction: column;
}

.portfolio__hero .portfolio__hero__container .section__heading{
    font-size: var(--subHeading);
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #0077ff, #00cc66);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent; 
    background-clip: text;
    font-weight: 900;
}

.portfolio__hero .portfolio__hero__container h3{
    font-size: var(--heading);
    text-transform: capitalize;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 2;
}

.portfolio__hero .portfolio__hero__container p{
    font-size: var(--subHeading);
    color: var(--white);
    font-weight: 300;
    text-align: center;
}

.portfolio__hero .portfolio__hero__container h2{
    font-size: var(--smallParagraph);
    color: var(--white);
    text-transform: capitalize;
    margin-top: 4rem;
    font-weight: 400;
}

.portfolio__hero .portfolio__hero__container h2 a{
    font-size: var(--smallParagraph);
    color: var(--yellow);
    text-transform: capitalize;
    margin-bottom: 1rem;
    text-transform: capitalize;
    text-decoration: underline;
}

.portfolio__hero .portfolio__hero__container h2 span{
    color: var(--secondary);
    margin: 0 .5rem;
}

.portfolio__hero .portfolio__hero__container h2 a:hover{
    color: var(--secondary);
    text-decoration: none;
}



/* || CAREERS PAGE STARTS  */
.careers__hero{
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../assets/images/company.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    text-align: center;
}

.careers__hero .careers__hero__container{
    flex-direction: column;
}

.careers__hero .careers__hero__container .section__heading{
    font-size: var(--subHeading);
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #0077ff, #00cc66);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent; 
    background-clip: text;
    font-weight: 900;
}

.careers__hero .careers__hero__container h3{
    font-size: var(--heading);
    text-transform: capitalize;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 2;
}

.careers__hero .careers__hero__container p{
    font-size: var(--subHeading);
    color: var(--white);
    font-weight: 300;
    text-align: center;
}

.careers__hero .careers__hero__container h2{
    font-size: var(--smallParagraph);
    color: var(--white);
    text-transform: capitalize;
    margin-top: 4rem;
    font-weight: 400;
}

.careers__hero .careers__hero__container h2 a{
    font-size: var(--smallParagraph);
    color: var(--yellow);
    text-transform: capitalize;
    margin-bottom: 1rem;
    text-transform: capitalize;
    text-decoration: underline;
}

.careers__hero .careers__hero__container h2 span{
    color: var(--secondary);
    margin: 0 .5rem;
}

.careers__hero .careers__hero__container h2 a:hover{
    color: var(--secondary);
    text-decoration: none;
}

/* careers__page jobs */
.careers__page{
    background-color: var(--white);
}

.careers__page .title{
   font-size: var(--subHeading);
   margin-bottom: 2rem;
   text-transform: capitalize;
   color: var(--orange);
   font-weight: 600;
   text-align: center;
}

.careers__page .careers__page__paragraph{
   font-size: var(--paragraph);
   margin-bottom: 2rem;
   color: var(--navyBlue);
   font-weight: 600;
   text-align: center;
}

.job-listing{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px dotted var(--black);
    padding-bottom: 1rem;
}

.job-listing:last-child{
    border-bottom: none;
}

.job-listing .carrer__contents{
    background-color: var(--white);
    padding: 1rem;
    width: 80%;
    box-shadow: var(--box-shadow);
    border-bottom-right-radius: 50%;
    border-top-right-radius: 50%;
}

.job-listing .carrer__contents:hover{
    box-shadow: none;
}

.job-listing .carrer__contents h3{
    margin-bottom: 1rem;
    color: var(--navyBlue);
    font-weight: 600;
    font-size: var(--subHeading);
}

.job-listing .carrer__contents p{
    margin-bottom: 1rem;
    color: var(--black);
    font-size: var(--paragraph);
    width: 90%;
}

.job-listing .button{
    padding: 10px 20px;
    border-radius: var(--border-radius1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
    text-transform: capitalize;
    font-size: var(--paragraph);
    background-color: var(--orange);
}

.job-listing .button a{
    color: var(--white);
}

.job-listing .button:hover{
    background-color: var(--primary);
}



.additional__info .title{
   font-size: var(--subHeading);
   margin-bottom: 2rem;
   text-transform: capitalize;
   color: var(--navyBlue);
   font-weight: 600;
}

.additional__info .additional__infos{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.additional__info .additional__infos .box{
   display: flex;
   flex-direction: column;
   background-color: var(--white);
   padding: 1.5rem;
   border-radius: var(--bgRadius);
   font-size: var(--paragraph);
   color: var(--navyBlue);
   line-height: 1.5;
}

.additional__info .additional__infos .box i{
   font-size: var(--subHeading);
   margin-bottom: 1rem;
   color: var(--white);
   background-color: var(--primary);
   width: 40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   text-align: center;
   justify-content: center;
}





/* || MEDIA QUERIE  */

@media(max-width: 991px){

    /* || HERO SECTION STARTS  */

    .company__hero .about__hero__container h3{
        font-size: var(--subHeading);
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .company__hero .about__hero__container p{
        font-size: var(--paragraph);
    }


/* || WHY CHOOSE US PAGE STARTS */
    .why__choose__us__hero .why__choose__us__hero__container h3{
        font-size: var(--subHeading);
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .why__choose__us__hero .why__choose__us__hero__container p{
        font-size: var(--paragraph);
    }

    .why__choose__us__page .why__choose__us__container .feature-boxes .feature-box{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    
    .why__choose__us__page .why__choose__us__container .feature-boxes .feature-box .icon{
        margin-right: 0;
        color: var(--white);
        margin-bottom: 1.5rem;
    }


/* || PORTFOLIO PAGE STARTS */
    .portfolio__hero .portfolio__hero__container h3{
        font-size: var(--subHeading);
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .portfolio__hero .portfolio__hero__container p{
        font-size: var(--paragraph);
    }


/* || CAREERS PAGE STARTS */
    .careers__hero .careers__hero__container h3{
        font-size: var(--subHeading);
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .careers__hero .careers__hero__container p{
        font-size: var(--paragraph);
    }

    .job-listing{
        flex-direction: column;
        align-items: start;
    }

    .job-listing .carrer__contents{
        width: 100%;
        margin-bottom: 2rem;
    }
    

    .about__page .about__page__container .about__page__content{
        padding-right: 0;
    }




}