@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;

}

.header{
    background-color: var(--white);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255,255,255, .5);
}


/* || HERO SECTION STARTS  */
.section__hero{
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url(../assets/images/callToAction.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
}

.section__hero .hero__container{
    flex-direction: column;
}

.section__hero .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;
    text-align: center;
}

.section__hero .hero__container h3{
    font-size: var(--heading);
    text-transform: capitalize;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 2rem;
}

.section__hero .hero__container p{
    font-size: var(--subHeading);
    color: var(--white);
    font-weight: 300;
    text-align: center;
}

.section__hero .hero__container h2{
    font-size: var(--smallParagraph);
    color: var(--white);
    text-transform: capitalize;
    margin-top: 4rem;
    font-weight: 400;
}

.section__hero .hero__container h2 a{
    font-size: var(--smallParagraph);
    color: var(--yellow);
    text-transform: capitalize;
    margin-bottom: 1rem;
    text-transform: capitalize;
    text-decoration: underline;
}

.section__hero .hero__container h2 span{
    color: var(--secondary);
    margin: 0 .5rem;
}

.section__hero .hero__container h2 a:hover{
    color: var(--secondary);
    text-decoration: none;
}


/* || METHODOLOGY SECTION STARTS  */

.section__services .services__container{
    display: flex;
}

.section__services .services__container .services__content{
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--bgRadius);
    width: 60%;
    margin-right: 5rem;
    height: min-content;
    box-shadow: var(--box-shadow);
}

.section__services .services__container .services__content .section__heading{
    position: relative;
    font-size: var(--paragraph);
    text-transform: capitalize;
    color: var(--orange);
    margin-bottom: 1rem;
}

.section__services .services__container .services__content .section__heading::before{
    content: ''; 
    width: 10%;
    height: 2px;
    background-color: var(--orange);
    position: absolute;
    bottom: -5px;
    left: 0;
}

.section__services .services__container .services__content h3{
    font-size: var(--subHeading);
    line-height: 1.2;
    color: var(--navyBlue);
    text-transform: capitalize;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section__services .services__container .services__content p{
    font-size: var(--paragraph);
    color: var(--black);
    font-weight: 300;
}

.section__services .services__container .services__box{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.section__services .services__container .services__box .box{
    padding: .5rem;
    border-radius: var(--bgRadius);
    box-shadow: var(--box-shadow);
}

.section__services .services__container .services__box .box:nth-child(1) {
    background-color: var(--white);
}

.section__services .services__container .services__box .box:nth-child(1):hover {
    background-color: var(--yellow);
    cursor: pointer;
}

.section__services .services__container .services__box .box:nth-child(1) h1 {
    background-color: var(--primary);
    color: var(--white);
}

.section__services .services__container .services__box .box:nth-child(2) {
    background-color: var(--primary);
}

.section__services .services__container .services__box .box:nth-child(2):hover {
    background-color: var(--secondary);
    cursor: pointer;
}

.section__services .services__container .services__box .box:nth-child(2) h1 {
    background-color: var(--white);
    color: var(--primary);
}

.section__services .services__container .services__box .box:nth-child(2) p strong {
    color: var(--white);
}

.section__services .services__container .services__box .box:nth-child(3) {
    background-color: var(--secondary);
}

.section__services .services__container .services__box .box:nth-child(3):hover {
    background-color: var(--primary);
    cursor: pointer;
}

.section__services .services__container .services__box .box:nth-child(3) h1{
    background-color: var(--white);
    color: var(--primary);
}

.section__services .services__container .services__box .box:nth-child(4) {
    background-color: var(--yellow);
}

.section__services .services__container .services__box .box:nth-child(4):hover {
    background-color: var(--white);
    cursor: pointer;
}

.section__services .services__container .services__box .box:nth-child(4) h1 {
    background-color: var(--white);
    color: var(--primary);
}
.section__services .services__container .services__box .box:nth-child(5) {
    background-color: var(--navyBlue);
}

.section__services .services__container .services__box .box:nth-child(5):hover {
    background-color: var(--white);
    cursor: pointer;
}

.section__services .services__container .services__box .box:nth-child(5) h1 {
    background-color: var(--white);
    color: var(--primary);
}

.section__services .services__container .services__box .box:nth-child(5) p {
    color: var(--orange);
}



.section__services .services__container .services__box .box h1{
    display: inline-flex;
    align-items: center;
    justify-items: center;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: var(--subHeading);
    padding: .5rem;
}

.section__services .services__container .services__box .box p{
    font-size: var(--paragraph);
    color: var(--navyBlue);
}

.section__services .services__container .services__box .box p strong{
    font-size: var(--paragraph);
    text-transform: uppercase;
}

/* || METHODOLOGY SECTION ENDS  */


.section__pricing .pricing__container .section__heading{
    position: relative;
    font-size: var(--paragraph);
    text-transform: capitalize;
    color: var(--orange);
    margin-bottom: 1rem;
    text-align: center;
}

.section__pricing .pricing__container .section__heading::before{
    content: '';
    width: 10%;
    height: 2px;
    background-color: var(--orange);
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.section__pricing .pricing__container h3{
    font-size: var(--subHeading);
    line-height: 1.2;
    color: var(--navyBlue);
    text-transform: capitalize;
    font-weight: 800;
    text-align: center;
    width: 80%;
    margin: 1rem auto 2rem;
}

.section__pricing .pricing__container .section__paragraph{
    font-size: var(--smallParagraph);
    line-height: 1.4;
    color: var(--navyBlue);
    text-transform: capitalize;
    font-weight: 400;
    text-align: center;
    width: 80%;
    margin: 0 auto 2rem;
}

.section__pricing .pricing__container .pricing__options{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.section__pricing .pricing__container .pricing__options .pricing__option{
    padding: 1rem;
    border-radius: var(--bgRadius);
    box-shadow: var(--box-shadow);
    background-color: var(--white);
}

.section__pricing .pricing__container .pricing__options .pricing__option:hover{
    box-shadow: none;
    color: var(--white);
    background-color: var(--navyBlue); 
}

.section__pricing .pricing__container .pricing__options .pricing__option h4{
    font-size: var(--paragraph);
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section__pricing .pricing__container .pricing__options .pricing__option p{
    font-size: var(--smallParagraph);
    color: var(--navyBlue);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section__pricing .pricing__container .pricing__options .pricing__option .price span{
    font-size: var(--subHeading);
    color: var(--navyBlue);
    font-weight: 800;
    margin-left: 0.5rem;
}

.section__pricing .pricing__container .pricing__options .pricing__option .price small{
    font-size: .6rem;
    color: var(--yellow);
    font-weight: 800;
    margin-left: 0.5rem;
}

.section__pricing .pricing__container .pricing__options .pricing__option ul li{
    margin-bottom: .7rem;
    border-bottom: 1px solid #ccc;
    padding: .5rem;
    font-size: var(--smallParagraph);
    height: auto;
    display: flex;
}

.section__pricing .pricing__container .pricing__options .pricing__option ul li i{
    margin-right: .7rem;
    color: var(--orange);
}


.section__pricing .pricing__container .pricing__options .pricing__option .btn{
    background-color: var(--orange);
    padding: 10px 45px;
    white-space: nowrap;
    border-radius: var(--border-radius1);
    display: inline-block;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-weight: 400;
    text-transform: capitalize;
    font-size: 1.1rem;
    margin: 1rem auto;
}

.section__pricing .pricing__container .pricing__options .pricing__option .btn:hover{
    background: var(--orange__gradient2);
}

.section__pricing .pricing__container .pricing__option:hover p,
.section__pricing .pricing__container .pricing__option:hover .price span {
    color: var(--white);
}

/* || PRICING SECTION ENDS  */





/* || IMPORTANCE SECTION STARTS  */
.section__importance{
    background-color: var(--white);
}

.section__importance .importance__container .section__heading{
    position: relative;
    font-size: var(--paragraph);
    text-transform: capitalize;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.section__importance .importance__container .section__heading::before{
    content: '';
    width: 20%;
    height: 2px;
    background-color: var(--orange);
    position: absolute;
    bottom: -5px;
}

.section__importance .importance__container h3{
    font-size: var(--subHeading);
    line-height: 1.2;
    color: var(--navyBlue);
    text-transform: capitalize;
    font-weight: 800;
    margin-bottom: 2rem;
}

.section__importance .importance__container .importance__content p{
    font-size: var(--paragraph);
    line-height: 1.4;
    color: var(--navyBlue);
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 2rem;
}

.section__importance .importance__container .importance__content .services__box{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.section__importance .importance__container .importance__content .box{
    background-color: var(--white);
    box-shadow: var(--box-shadow2);
    padding: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: var(--bgRadius);
    transition: all .5s ease-in-out;
}

.section__importance .importance__container .importance__content .box:hover{
    box-shadow: none;
    cursor: pointer;
}

.section__importance .importance__container .importance__content .box i{
   color: var(--secondary);
   font-size: var(--heading2);
   margin-bottom: 1rem;
}

.section__importance .importance__container .importance__content .box h1{
   color: var(--navyBlue);
   font-size: var(--subHeading);
   margin-bottom: 1rem;
}

.section__importance .importance__container .importance__content .box p{
   color: var(--navyBlue);
   font-size: var(--smallParagraph);
}


/* || IMPORTANCE SECTION ENDS  */



/* || WHAT'S SECTION STARTS  */

.section__whatis{
    background-color: var(--navyBlue);
    color: var(--white);
}

.section__whatis .whatis__container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1rem;
}

.section__whatis .whatis__container .whatis__img{
   margin-right: 2rem;
   overflow: hidden;
   border: 3px solid var(--secondary);
   border-radius: var(--bgRadius);
   height: min-content;
}

.section__whatis .whatis__container .whatis__img img:hover{
   transform: scale(1.1);
   cursor: pointer;
}

.section__whatis .whatis__container .whatis__content .section__heading{
    position: relative;
    font-size: var(--paragraph);
    text-transform: capitalize;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.section__whatis .whatis__container .whatis__content .section__heading::before{
    content: '';
    width: 20%;
    height: 2px;
    background-color: var(--orange);
    position: absolute;
    bottom: -5px;
}

.section__whatis .whatis__container .whatis__content h3{
    font-size: var(--subHeading);
    line-height: 1.2;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 800;
    margin-bottom: 2rem;
}

.section__whatis .whatis__container .whatis__content .whatis__paragraph{
    font-size: var(--paragraph);
    line-height: 1.4;
    color: var(--light);
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 2rem;
}

.section__whatis .whatis__container .whatis__content .whatis__paragraph__point{
    font-size: var(--subHeading);
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.5;
    background: linear-gradient(90deg, #0077ff, #00cc66);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent; 
    background-clip: text;
    font-weight: 900;
}

.section__whatis .whatis__container .services__box{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.section__whatis .whatis__container .services__box .box{
    background-color: var(--white);
    padding: .5rem;
    border-radius: var(--bgRadius);
    text-align: center;
    box-shadow: var(--box-shadow-darkBg);
}

.section__whatis .whatis__container .services__box .box:hover{
    box-shadow: none;
    cursor: pointer;
}

.section__whatis .whatis__container .services__box .box i{
   color: var(--secondary);
   font-size: var(--subHeading);
   margin-bottom: 1rem;
}

.section__whatis .whatis__container .services__box .box h1{
   color: var(--navyBlue);
   font-size: var(--paragraph);
   margin-bottom: 1rem;
   text-transform: uppercase;
}

.section__whatis .whatis__container .services__box .box p{
   color: var(--navyBlue);
   font-size: var(--smallParagraph);
}

.section__whatis .whatis__container .whatis__img__content{
    position: relative;
}

.section__whatis .whatis__container .whatis__img__content p{
    font-size: var(--paragraph);
    position: absolute;
    bottom: 0;
    color: var(--primary);
    text-transform: uppercase;
    line-height: 1.5;
    margin-right: 2rem;
    text-align: center;
    background: linear-gradient(90deg, #0077ff, #00cc66);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent; 
    background-clip: text;
    font-weight: 900;
}

/* || WHAT'S SECTION ENDS  */




/* || BENEFITS SECTION STARTS  */
.section__benefits{
    background-color: var(--white);
}

.section__benefits .benefits__container .section__heading{
    position: relative;
    font-size: var(--paragraph);
    text-transform: capitalize;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.section__benefits .benefits__container .section__heading::before{
    content: '';
    width: 20%;
    height: 2px;
    background-color: var(--orange);
    position: absolute;
    bottom: -5px;
}

.section__benefits .benefits__container h3{
    font-size: var(--subHeading);
    line-height: 1.2;
    color: var(--navyBlue);
    text-transform: capitalize;
    font-weight: 800;
    margin-bottom: 2rem;
}

.section__benefits .benefits__container .benefits__content p{
    font-size: var(--paragraph);
    line-height: 1.4;
    color: var(--navyBlue);
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 2rem;
}

.section__benefits .benefits__container .benefits__content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.section__benefits .benefits__container .benefits__content .box{
    background-color: var(--white);
    box-shadow: var(--box-shadow2);
    padding: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: var(--bgRadius);
    transition: all .5s ease-in-out;
}

.section__benefits .benefits__container .benefits__content .box:hover{
    box-shadow: none;
    cursor: pointer;
}

.section__benefits .benefits__container .benefits__content .box i{
   color: var(--secondary);
   font-size: var(--heading2);
   margin-bottom: 1rem;
}

.section__benefits .benefits__container .benefits__content .box h1{
   color: var(--navyBlue);
   font-size: var(--subHeading);
   margin-bottom: 1rem;
}

.section__benefits .benefits__container .benefits__content .box p{
   color: var(--navyBlue);
   font-size: var(--smallParagraph);
}


/* || BENEFITS SECTION ENDS  */












/* || MEDIA QUERIE  */

@media(max-width: 991px){

    /* || HERO SECTION STARTS  */

    .section__hero .hero__container h3{
        font-size: var(--subHeading);
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .section__hero .hero__container p{
        font-size: var(--paragraph);
    }


    /* || METHODOLOGY SECTION STARTS  */
    .section__services .services__container{
        flex-direction: column;
    }

        
    .section__services .services__container .services__content{
        padding: 1.5rem;
        width: 100%;
        margin-bottom: 3rem;
    }


    /* pricing */
    .section__pricing .pricing__container .section__paragraph{
        width: 100%;
        margin: 0 auto 2rem;
    }

    /* || IMPORTANCE SECTION STARTS  */
    .section__importance .importance__container .importance__content .box{
        border-radius: var(--border-radius1);
    }

    /* || WHAT'S SECTION STARTS  */
    
    .section__whatis .whatis__container .whatis__img{
        margin-right: 0;
        margin-bottom: 7rem;
    }

    .section__whatis .whatis__container .whatis__img__content p{
        margin-right: 0;
        text-align: left;
        font-size: small;
        margin-bottom: -2rem;
    }

    .section__whatis .whatis__container .whatis__content{
        margin-top: 3rem;
    }
  
    .section__whatis .whatis__container .whatis__content .whatis__paragraph{
        font-size: var(--smallParagraph);
        font-weight: 300;
        margin-bottom: 1.5rem;
    }
 
    .section__whatis .whatis__container .whatis__content .whatis__paragraph__point{
        font-size: var(--paragraph);
        color: var(--secondary);
        letter-spacing: normal;
    }


}


