*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    }

    :root{
        --pryColor: #0a2635;
        --secColor: #00a5fd;
        --pryColor2: #123547;
        
    }

    body {
        font-family: "Montserrat", sans-serif;
        color: var(--pryColor);
    }
    nav {
    color: var(--pryColor);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0px 60px 60px;
    }
    a{
        text-decoration: none;
        color: #fff;
    }
    img{
        border-radius: 5px;
    }
    nav .mainMenu {
        display: flex;
        list-style: none;
    }
    nav .mainMenu li a {
        display: inline-block;
        padding: 10px;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--pryColor);
        font-size: 15px;
        transition: 1.5s ease;
    }
    nav .mainMenu li a:hover {
        border-bottom: 1px solid var(--pryColor);
    }
    nav .openMenu {
        font-size: 1.3rem;
        margin: 20px;
        display: none;
        cursor: pointer;
    }
    nav .mainMenu .closeMenu,
    .icons i {
        font-size: 1.3rem;
        display: none;
        cursor: pointer;
    }
    .fa-twitter:hover {
        color: rgb(0, 110, 255);
    }
    .fa-instagram:hover {
        color: rgb(255, 0, 191);
    }
    nav .logo {
        margin: 20px;
        cursor: pointer;
        /* text-transform: uppercase; */
    }
    .section{
            margin: 10px 60px 0px 60px;
            
        }
    .introduction h1{
        padding-bottom: 20px;
    }
    button{
        border: none;
    }
    .myButton{
        background-color: var(--pryColor);
        color: #fff;
        padding: 10px 30px;
        margin: 15px 0px;
        font-size: 15px;
        border-radius: 20px;
        
    }
    .myButton2{
        background-color: #ffffff00;
        color: var(--pryColor);
        padding: 10px 30px;
        margin: 15px 10px;
        font-size: 15px;
        border: 1px solid var(--pryColor);
        border-radius: 20px;
        cursor: pointer;
        
    }
    /* -- For Styling Tooltops -- */
    .tooltip {
        position: relative;
        display: inline-block;
        border-bottom: 1px dotted black;
    }
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 100%;
        background-color: #fffb14;
        color: #000;
        text-align: center;
        border-radius: 6px;
        padding: 10px 0;
        
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        bottom: 500%;
        left: 50%;
        margin-left: -80px;
    }
    
    .tooltip:hover .tooltiptext {
        visibility: visible;
    }

    .myButton:hover{
        background-color: var(--pryColor2);
    }
    .introduction a{
        color: #fff;
        text-decoration: none;
    }
    .works{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items:center ;
        gap: 5px;
    }
    .workcard{
        width: 49%;
        height: auto;
        margin-bottom: 20px ;
        overflow: hidden;
        position: relative;
        border-radius: 5px;
    }
    .CTA{
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        margin-top: 50px;
    }
    .workcard img{
        width: 100%;
    }
    .workcard:hover{
        color: #000;
    }
    .caption{
        position: absolute;
        top: 0;
        left: 0;
        /* text-transform: uppercase; */
        letter-spacing: 1px;
        background-color: #000;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items:baseline ;
        justify-content:end ;
        color: #fff;
        opacity: 0;
        transition: all 0.5s ease;

    }
    .Inprogress{
        background-color: #00a5fd;
        position: none;

    }


    .caption h2{
        font-weight: 600;
        letter-spacing: 1px;
        margin: 0px 20px 10px 20px;
        border-bottom: 1px solid #fff;
        margin-bottom: 10px;
    }
    .caption p{
        margin: 0px 20px 20px 20px;
    }
    .workcard:hover .caption{
        opacity: 1;
        background-color: #00000094;
    }
    .footer{
        margin: 60px;
    }
    .footerIcon{
        font-size: 1.3rem;
        cursor: pointer;
        
    }
    .fab{
        padding-right: 20px;
        margin-bottom: 15px;
    }
    /* ---------------------------------------------------------------
    -------------------  CSS for the about page  ------------------
    --------------------------------------------------------------- */

    .aboutMe{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .aboutMe p{
        line-height: 1.3rem;
    }
    .authorImage img{
        width: 350px;
        height: auto;
        border-radius: 100%;
        /* margin: 20px; */
    }
    .aboutMe div:nth-child(2){
        padding: 0px 100px;
    }
    hr{
        border: 1px solid #ebebeb;
        margin: 30px;
    }
    .ExpEduSkls{
        margin: 50px 40px;
        display: flex;
        justify-content: space-around;
        gap: 30px;
    }
    .ExpEduSkls h3{
        padding-bottom: 10px;
    }
    .ExpEduSkls p{
        padding-bottom: 10px;
    }
    .experience p:nth-child(3){
        padding-top: 15px;
    }
    .education p:nth-child(3){
        padding-top: 15px;
    }
    .skills p:nth-child(3){
        padding-top: 15px;
    }
    .tools p:nth-child(3){
        padding-top: 15px;
    }
    .ExpEduSkls span{
        position: absolute;
        width: 50px;
        height: 2px;
        background-color:var(--secColor);
        margin: 5px 0px;
    }
    .DesignValueMain{
        background-color: var(--pryColor);
        margin-top: 10%;
        padding: 60px 60px 60px 60px;
    }
    .DesignValueMain hr{
        border-bottom: 1px solid var(--secColor) ;
        border-top: 1px solid var(--pryColor) ;
        border-left: 1px solid var(--pryColor) ;
        border-right: 1px solid var(--pryColor) ;
        fill: var(--pryColor);
        margin: 30px 0px;
    }
    .DesignValueMain p:nth-child(1){
        color: #fff;
    }
    .DesignValueMain h3{
        color: white;
    }
    .designValue{
        background-color: var(--pryColor);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    .designValue div{
        background-color: var(--secColor);
        border-radius: 5px;
        padding: 30px;
        margin: 10px 0px 0px 0px;
    }
    .designValue h4{
        margin: 10px 0px;
    }
    .letsConnect{
        display: flex;
        align-items: center;
        padding: 20px 30px 20px 60px;
        gap: 20px;
        border: 1px solid var(--pryColor);
        margin-top: 20px;

    }
    .letsConnect div{
        padding: 10px 30px;
        background-color: var(--pryColor);
        color: #fff;
        border-radius: 60px;
    }
    /* ---------------------------------------------------------------
    -------------------  CSS for the work pages  ------------------
    --------------------------------------------------------------- */
    .workSection{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px;
    }
    .workText{
        padding: 20px;
    }
    .project{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;

    }

    .projectOverview{
        width: 40%;
        height: auto;
        border: 1px solid #ebebeb;
        padding: 30px;
        margin: 50px;
    }
    .ProjectDP img{
        text-align: center;
        width: 60%;
        /* border: 1px solid #ebebeb; */
        
    }
    .ProjectDP h1{
        font-size: 2rem;
        padding: 10px;
    }
    .ProjectDP p{
        font-size: 1.2rem;
        padding: 0px 10px 10px 10px;
    }
    
    .designProcess{
        background-color: var(--pryColor);
        color: #fff;
    }
    .designProcess p{
        color: #ffffff;
    }
    .designProcess hr{
        border-bottom: 1px solid var(--secColor) ;
        border-top: 1px solid var(--pryColor) ;
        border-left: 1px solid var(--pryColor) ;
        border-right: 1px solid var(--pryColor) ;
        fill: var(--pryColor);
        margin: 30px 0px;
    }
    .designOverview{
        padding: 50px;
    }
    .designOverview1{
        display: flex;
        justify-content: space-between;
        align-items: start ;
        padding: 10px;
    }
    .designOverview2{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        gap: 10px;
        
    }
    .designOverview2 img{
        width: 70%;
        text-align: center; 
        border-radius: 5px;

    }

    /* Styling Knead Page */

    .kneadImage{
        display: grid;
    }
    .kneadImage img{
        width: 100%;
    }
    .mood-board {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 20px 0px;
    }


    .mood-board img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    .mood-board-item {
        flex: 1 1 calc(49.333% - 20px);
        max-width: calc(49.333% - 20px);
    }


/* --------- Styling foodApp page ------------ */
    .mood-board-food img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    .mood-board-food {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 10px;
        padding: 20px 0px;
    }
    .mood-board-item-food {
        flex: 1 1 calc(24.333% - 20px);
        max-width: calc(23.333% - 20px);
    }

    /* Styling algoassets page */
    .painPoint{
        background-color: var(--pryColor2);
        padding: 20px;
        border-radius: 5px;
        margin: 5px;
    }

    /* -----------------------------------------------------------------------
    -----------------  styling algoassets page ----------------------------
    ----------------------------------------------------------------------- */


    .imageOnMobile img{
        width: 100%;
        border-radius: 5px;
    }
    .textBorder{
        padding: 20px; 
        border:1px solid #00a5fd;
    }


    /* -----------------------------------------------------------------------
    -----------------  styling algoassets page ----------------------------
    ----------------------------------------------------------------------- */


    /* -----------------------------------------------------------------------
    -----------------  styling algoassets page ----------------------------
    ----------------------------------------------------------------------- */
    .ShadesOfLogo{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        gap: 10px;
        background-color: var(--pryColor2);
        padding: 20px;
        margin: 15px 0px 15px 0px;
        border-radius: 5px;
    }
    .ShadesOfLogo img{
        width: 20%;
    }

    .clietsTestimony{
        background-color: #ebebeb;
        padding: 5% 10% 5% 10%;
        display: grid;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
    .comingSoon{
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }


    @media (max-width: 800px) {
        body{
            font-size: 80%;
        }
        nav{
            margin: 5px;
            
        }
        nav .mainMenu {
        height: 94vh;
        position: fixed;
        top: 0px;
        right: 0px;
        left: 0px;
        z-index: 10;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--pryColor);
        transition: top 1s ease 0s;
        display: none;
        color: #fff;
        }
        nav .mainMenu li a{
            color: #fff;
        }
        nav .mainMenu .closeMenu {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        }
        nav .openMenu {
        display: block;
        }
        nav .mainMenu li a:hover {
        border-bottom: 1px solid var(--pryColor);
        }
        .section{
            margin: 10px 20px 20px 20px;
        }
        .icons {
        margin-top: 2px;
        display: inline-block;
        padding: 15px;
        }
        .workcard{
        width: 48.5%;
        height: auto;
        margin-bottom: 10px ;
        overflow: hidden;
        position: relative;
        border-radius: 10px;
        }
        .workcard img{
            width: 100%;
        }
        .ProjectDP img{
            text-align: center;
            width: 100%;
        }
        .ProjectDP h1{
            font-size: 1.5rem;
            padding: 10px;
        }
        .ProjectDP p{
            font-size: 1.rem;
            padding: 0px 10px 10px 10px;
        }
        .designOverview1{
            display: grid;
            justify-content: space-between;
            align-items: start ;
            padding: 10px 0px;
        }
        .designOverview1 div{
            padding: 10px 0px;
        }
        .designOverview2{
            display: grid;
            justify-content: start;
            align-items: center;
            gap: 5px;
        }
        .designOverview{
            padding: 40px;
        }
        .CTA{
            display: flex;
            flex-wrap: wrap;
        }
/* ---------------------------------------------------------------
-------------------  CSS for the about page  ------------------
--------------------------------------------------------------- */

    .aboutMe{
        display: grid;
        justify-content: center;
        align-items: center;
        
    }
    .authorImage img{
        width: 100%;
        border-radius: 100%;
        margin-bottom: 50px;
        text-align: center;
    }
    .aboutMe div:nth-child(2){
        padding: 0px 10px;
    }
    .ExpEduSkls{
        display: flex;
        flex-wrap: wrap;
        justify-content: start ;
    }
    .DesignValueMain{
        padding: 25px 20px 50px 20px;
        margin-bottom: 50px;
    }
    .designValue{
        background-color: var(--pryColor);
        display: grid;
        justify-content: center;
        align-items: start;
        gap: 10px;
    }
    .designValue div{
        padding: 20px;
        margin: 5px 0px 0px 0px;
    }
    .letsConnect{
        display: grid;
        flex-wrap: wrap;
        align-items: center;
        padding: 10px 20px 10px 20px;
        gap: 5px;
        border: 1px solid var(--pryColor);
        margin-top: 20px;

    }
    .letsConnect div{
        padding: 10px 30px;
        background-color: var(--pryColor);
        color: #fff;
        border-radius: 60px;
    }


    /* ---------------------------------------------------------------
-------------------  CSS for the algoassets page  ------------------
--------------------------------------------------------------- */
    .painPoint{
        background-color: var(--pryColor2);
        padding: 10px;
        border-radius: 5px;
        margin: 5px;
    }
    .textBorder{
        padding: 10px; 
    }


    .imageOnMobile img{
        width: 100%;
    }
    .designOverview2 img{
        width: 100%;
    }

/*----------------------- styling Knead Page ---------------*/
    .mood-board-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

/* --------- Styling foodApp page ------------ */
.mood-board-food {
    justify-content: space-evenly;
}
.mood-board-item-food {
    flex: 1 1 calc(49.5% - 10px);
    max-width: calc(49.5% - 10px);
}

    }
    @media (max-width: 500px){
        .section{
            margin: 10px 20px 20px 20px;
        }
        .workcard{
        width: 100%;
        height: auto;
        overflow: hidden;
        position: relative;
        border-radius: 10px;
        }
        .workcard img{
            width: 100%;
        }
    }
