@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Rubik:wght@500&display=swap');
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--custom-font2);
}
@font-face {
    font-family: 'switzer';
    src: url(../font/switzer/Switzer-Variable.ttf);
}

@font-face {
    font-family: 'santoshi';
    src: url(../font/santoshi/Satoshi-Variable.ttf);
}

:root{
    --white1: #FFF4F4;
    --white2: #F5F5F5;
    --white3: #a2a4a6;
    --body-color: hsl(220, 100%, 99%);
    --blue: #1f80ff;
    --pink1:#eb287b;
    --pink2:#ae0288;
    --black1:#1d2b36;
    --black2:#131623;
    --black3: #323335;
    --font1: 'Roboto', sans-serif;
    --font2: 'Rubik', sans-serif;
    --custom-font1: 'santoshi';
    --custom-font2: 'switzer';
}

.colorAnimation{
    background: linear-gradient(-100deg, var(--blue), var(--pink1), var(--pink2));
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.main{
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: var(--body-color);
}

/* =========Section 1============ */


.sec1{
    height: 100vh;
    width: 100%;
    background-color: var(--body-colorw);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/svg/homeBg.svg");
    background-size: 90%;
}
.sec1Content{
    height: 80%;
    width: 80%;
    /* background-color: #1d2b36; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sec1Content h1{
    font-size: 42px;
    color: var(--black3);
}

.sec1Content h1 span{
    color: var(--pink2);
    font-size: 52px;
}

.sec1Content p{
    font-size: 18px;
    color: var(--black3);
}


.heroBtn{
    height: 100px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.heroBtn a{
    text-decoration: none;
    font-size: 22px;
    padding: 10px 20px;
    background-color: #1d2b36;
    color: var(--body-color);
    border-radius: 60px;
    display: flex;
    align-items: center;
}


.hoverIcon{
    transform: scale(0.2);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #F5F5F5;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hoverIcon i{
    transform: translateY(-50px);
    color: var(--black2);
    transition: 0.5s;
    opacity: 0;
}
.btn:hover .hoverIcon{
    transform: scale(1);
    transition: 0.5s;
    margin-left: 10px;
}

.btn:hover .hoverIcon i{
    transform: translateY(0%);
    transition: 0.5s;
    opacity: 1;
}



/* =========Section 2========== */

.sec2{
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec2Content{
    height: 90%;
    width: 80%;
    /* background-color: #1d2b36; */
    display: flex;
    flex-direction: column;
}

.sec2Head{
    height: 20%;
    width: 100%;
    text-align: center;
    /* background-color: #1d2b36; */

}

.sec2Head h1{
    color: var(--black3);
    font-size: 42px;
}

.sec2Box{
    height: 80%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.workFlow{
    /* background-color: #a2a4a6; */
    height: 150px;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #323335;
    background-color: var(--body-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.workFlow i{
    /* background-color: #323335; */
    padding: 10px;
    /* border-radius: 50%; */
    color: var(--black3);
    font-size: 32px;
}

.workFlow p{
    font-size: 30px;
}


/* ============Section 3========== */


.sec3{
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec3Content{
    height: 90%;
    width: 80%;
    display: flex;;
}


.sec3Left{
    height: 100%;
    width: 50%;
    gap: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.sec3Left p{
    color: var(--black3);
    font-size: 52px;
    font-weight: 500;
}


.sec3Left a{
    width: 50%;
    padding: 10px 20px;
    font-size: 28px;
    border-radius: 5px;
    background-color: var(--black3);
    color: var(--body-color);
    text-decoration: none;
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    transition: 0.5s;
}

.sec3Left a i{
    /* color: #ae0288; */
    font-size: 36px;
    transform: translateY(50px);
    transition: 0.5s;
}


.sec3Left a:hover i{
    transform: translateY(0);
    transition: 0.1s ease-out;
}


.sec3Right{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
}

.sec3Right ul {
    height: 60%;
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
}

.sec3Right ul li{
    display: flex;
    align-items: center;
    font-size: 34px;
    margin-left: 50px;
    color: var(--black3);
}



/* section 4 */

.sec4{
    height: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sec4Content{
    height: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec4Box{
    height: 80%;
    width: 80%;
    background-color: var(--black2);
    border: 1px solid #a2a4a65e;
    border-radius: 20px;
    box-shadow: 0px 15px 12px 0px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sec4Box h1{
    font-family: var(--custom-font1);
    color: var(--white2);
    font-size: 32px;
    font-weight: 800;
}

.sec4Box a{
    text-decoration: none;
    color: var(--black2);
    background-color: var(--white2);
    padding: 10px 20px;
    font-family: var(--custom-font1);
    font-size: 28px;
    font-weight: 800;
    border-radius: 10px;
    border: 1px solid var(--white1);
    transition: 0.5s;
}

.sec4Box h1 p{
    font-size: 18px;
    font-weight: 300;
}


/* =======media Query========= */

@media only screen and (min-device-width: 768px) and (max-device-width: 1600px) and (orientation : portrait){
    .hoverIcon{
        display: none;
    }
    .heroBtn{
        width: 85%;
    }
    .sec2{
        height: 250px;
    }
    .workFlow{
        height: 100px;
        width: 100px;
    }
    .workFlow p{
        font-size: 20px;
    }
    .sec3Content{
        width: 95%;
    }
    .sec3Left a{
        width: 80%;
    }
    .sec4Box{
        width: 90%;
        height: 90%;
        flex-direction: column;
    }
    .sec4Box p{
        text-align: center;
        margin-top: 10px;
    }
    .sec3Right ul li{
        font-size: 26px;
    }

}



/* =======media Query========= */

@media screen and (max-width: 600px){
    .sec1{
        padding: 150px 0px;
        height: 100vh;
        background-size: 385%;
    }
    .sec1Content{
        gap: 20px;
    }
    .sec1Content h1{
        line-height: 1.1;
    }
    .sec1Content h1 span{
        font-size: 42px;
    }
    .heroBtn{
        height: 50px;
        width: 100%;
        flex-direction: column;
        align-items: baseline;
    } 
    .hoverIcon{
        display: none;
    }

    .sec2{
        height: 100%;
    }
    .sec2Head{
        padding: 20px 0px;
    }
    .sec2Box{
        grid-template-columns: 1fr 1fr;
    }


    .sec3{
        height: 100%;
    }
    .sec3Content{
        height: 100%;
        width: 100%;
        flex-direction: column;
        padding: 30px 30px;
    }

    .sec3Left{
        width: 100%;
        padding: 20px 0px;
    }
    .sec3Left p{
        font-size: 46px;
    }
    .sec3Left a{
        font-size: 16px;
        letter-spacing: 2px;
        align-items: center;
        justify-content: center;
        width: 60%;
    }
    .sec3Left a i{
        display: none;
    }

    .sec3Right {
        width: 100%;
    }
    .sec3Right ul li{
        font-size: 26px;
        margin-left: 0px;
    }


    .sec4{
        height: 100%;
        padding: 20px 0px 50px 0px;
    }
    .sec4Content{
        height: 100%;
    }

    .sec4Box{
        flex-direction: column;
        height: 100%;
        width: 100%;
        padding: 20px 30px;
        border-radius: 0px;
        gap: 5px;
        /* line-height: 1.3; */
    }
    .sec4Box h1{
        font-size: 28px;
    }
    .sec4Box h1 p{
        margin-top: 10px;
        font-size: 16px;
    }
    .sec4Box a{
        margin-top: 10px;
        font-size: 22px;
        letter-spacing: 1.5px;
        padding: 8px 25px;
    }
}

@media screen and (min-width: 760px){
    .sec4Box a:hover{
        background-color: var(--black2);
        color: var(--white1);
        transition: 0.5s;
        border: 1px solid var(--white1);
    }
}