@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

.max-width{
    max-width: 1496px;
    padding: 0 80px;
    margin: auto;
}

/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    /* background: indigo; */
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}

.navbar.sticky{
    padding: 15px 0;
    background: darkviolet;
}

.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}

.navbar .logo a span{
    color: darkviolet;
    transition: all 0.3s ease;
}

.navbar.sticky .logo a span{
    color: #fff;
}

.navbar .menu li{
    list-style: none;
    display: inline-block;
}

.navbar .menu li a{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover{
    color: darkviolet;

}

.nvarbar.sticky .menu li a:hover{
    color: #fff;
}

/* menu btn styling */
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}

/* home section starts */
.home{
    display: flex;
    background: url("images/banner2.jpg") no-repeat fixed;
    /* "fixed" can change to "center" */
    height: 100vh;
    color: #fff;
    min-height: 500px;
    font-family: 'Ubuntu', sans-serif;

}

.home .max-width{
    margin: auto 0 auto 40px;

}

.home .home-content .text-1{
    font-size: 27px;
}

.home .home-content .text-2{
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
}

.home .home-content .text-3{
    font-size: 40px;
    margin: 5px 0;
}

.home .home-content .text-3 span1{
    color: darkviolet;
    font-weight: 500;
}

.home .home-content .text-3 span2{
    color: mediumorchid;
    font-weight: 500;
}

.home .home-content .text-3 span3{
    color: plum;
    font-weight: 500;
}

.home .home-content a{
    display: inline-block;
    background: darkviolet;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid darkviolet;
    transition: all 0.3s ease;
}

.home .home-content a:hover{
    color: darkviolet;
    background: none;

}



/* responsive media query start */
/* ! responsive media query not working for info section*/
@media (max-width: 1496px){
    .home .max-width{
        margin-left: 0px;

    }
}

@media (max-width: 1300px){
    /* .info .info-content .left img{
        height: 300px;
        width: 300px;
    } */
    .info .info-content{
        padding-left: 80px;
        margin-left: 50px;
        margin-right: 50px;
    }

}

@media (max-width: 1165px){

    .menu-btn{
        display: block;
        z-index: 999;
    }

    .menu-btn i.active:before{
        content: "\f00d";
    }

    .navbar .menu{
        position: fixed;
        background: #111;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;

    }

    .navbar .menu.active{
        left: 0;

    }

    .navbar .menu li{
        display: block;

    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;

    }

    .home .home-content .text-2{
        font-size: 70px;
    }
    
    .home .home-content .text-3{
        font-size: 35px;
    }
    
    .home .home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }

    .max-width{
        max-width: 800px;
    }

    .info .info-content .column{
        width: 50%;
    }

    .info .info-content{
        padding-left: -80px;
    }

    .info .info-content .left{
        display: flex;
        justify-content: center;
        /* margin-bottom: 60px; */
        margin: 0 auto 60px;
        padding-right: 80px;
    }

    .info .info-content .right{
        flex: 100%;
        padding-right: 80px;
    }
}

@media (max-width: 800px){
    .max-width{
        padding: 0 23px;
    }

    .home .home-content .text-2{
        font-size: 60px;
    }
    
    .home .home-content .text-3{
        font-size: 32px;
    }

    .home .home-content a{
        font-size: 20px;
    }
}

@media (max-width: 500px){
    .home .home-content .text-2{
        font-size: 50px;
    }
    
    .home .home-content .text-3{
        font-size: 27px;
    }
    
    .home .home-content a{
        font-size: 20px;
    }
}





/* info section styling */
section{
    padding: 100px 0;

}

.info{
    font-family: 'Poppins', sans-serif;

}

/* .info .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

.info .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.info .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);

}

.info .title::after{
    content: "who i am";
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: darkviolet;
    padding: 5px;
    background: #fff;
    transform: translateX(-50%);

}

.info .info-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    padding-left: 80px;
    margin-left: 130px;
    margin-right: 130px;
}

.info .info-content .left{
    width: 45%;
}

.info .info-content .left img{
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 6px;
}

.info .info-content .right{
    width: 55%;
}

.info .info-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom:10px;
}

.info .info-content .right .text span{
    color: darkviolet;

}

.info .info-content .right .text-content{
    text-align: justify;
}

.info .info-content .right .text-content span{
    font-weight: 600;

}

.info .info-content .right .text-content a{
    color: darkviolet;
}

.info .info-content .right .cv-btn a{
    display: inline-block;
    background: darkviolet;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid darkviolet;
    transition: all 0.3s ease;
}

.info .info-content .right .cv-btn a:hover{
    color: darkviolet;
    background: none;
}




/* education section starts */
.edu{
    font-family: 'Poppins', sans-serif;
    background-color: lavender;
}

/* .info .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

.edu .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.edu .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 250px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);

}

.edu .title::after{
    content: "where i came from";
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: darkviolet;
    padding: 5px;
    background: lavender;
    transform: translateX(-50%);

}

.edu .edu-content{
    display: block;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    margin-left: 130px;
    margin-right: 130px;
}

.edu .edu-content .text span{
    font-size: 27px;
    font-weight: 500;
}

.edu .edu-content .text span2{
    font-weight: 600;
}

.edu .edu-content .text span3{
    font-style: italic;
    color: gray;
}



/* awards section starts */
.awards{
    font-family: 'Poppins', sans-serif;
    background-color: lavenderblush;
}

.awards .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.awards .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 250px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);

}

.awards .title::after{
    content: "what i got";
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: darkviolet;
    padding: 5px;
    background: lavenderblush;
    transform: translateX(-50%);

}

.awards .awards-content{
    display: block;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    margin-left: 130px;
    margin-right: 130px;
}

.awards .awards-content .text span{
    font-size: 27px;
    font-weight: 500;
}

.awards .awards-content .text span2{
    font-weight: 600;
}

.awards .awards-content .text span3{
    font-style: italic;
    color: gray;
}

.awards .awards-content .cert-btn a{
    display: inline-block;
    background: darkviolet;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid darkviolet;
    transition: all 0.3s ease;
}





/* lead section starts */
.lead{
    font-family: 'Poppins', sans-serif;
    background-color: lavender;
}

.lead .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.lead .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 250px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);

}

.lead .title::after{
    content: "what i was";
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: darkviolet;
    padding: 5px;
    background: lavender;
    transform: translateX(-50%);

}

.lead .lead-content{
    display: block;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    margin-left: 130px;
    margin-right: 130px;
}

.lead .lead-content .text span{
    font-size: 27px;
    font-weight: 500;
}

.lead .lead-content .text span2{
    font-weight: 600;
}

.lead .lead-content .text span3{
    font-style: italic;
    color: gray;
}

/* .lead .lead-content .cert-btn a{
    display: inline-block;
    background: darkviolet;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid darkviolet;
    transition: all 0.3s ease;
} */



/* extracurriculum section starts */
.extra{
    font-family: 'Poppins', sans-serif;
    background-color: lavenderblush;
}

.extra .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.extra .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 250px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);

}

.extra .title::after{
    content: "what i was";
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: darkviolet;
    padding: 5px;
    background: lavenderblush;
    transform: translateX(-50%);

}

.extra .extra-content{
    display: block;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    margin-left: 130px;
    margin-right: 130px;
}

.extra .extra-content .text span{
    font-size: 27px;
    font-weight: 500;
}

.extra .extra-content .text span2{
    font-weight: 600;
}

.extra .extra-content .text span3{
    font-style: italic;
    color: gray;
}

/* .lead .lead-content .cert-btn a{
    display: inline-block;
    background: darkviolet;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid darkviolet;
    transition: all 0.3s ease;
} */




/* work section starts */
.work{
    font-family: 'Poppins', sans-serif;
    background-color: lavender;
}

.work .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.work .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 250px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);

}

.work .title::after{
    content: "what am i doing";
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: darkviolet;
    padding: 5px;
    background: lavender;
    transform: translateX(-50%);

}

.work .work-content{
    display: block;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    margin-left: 130px;
    margin-right: 130px;
}

.work .work-content .text span{
    font-size: 30px;
    font-weight: 500;
}

.work .work-content .text span4{
    font-size: 25px;
    font-weight: 500;
}

.work .work-content .text span2{
    font-weight: 600;
}

.work .work-content .text span3{
    font-style: italic;
    color: gray;
}

/* .work .work-content .cert-btn a{
    display: inline-block;
    background: darkviolet;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid darkviolet;
    transition: all 0.3s ease;
} */




/* interests section starts */
.interests{
    font-family: 'Poppins', sans-serif;
    background-color: lavenderblush;
}

.interests .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.interests .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 250px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);

}

.interests .title::after{
    content: "what i like";
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: darkviolet;
    padding: 5px;
    background: lavenderblush;
    transform: translateX(-50%);

}

.interests .interests-content{
    display: block;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    margin-left: 130px;
    margin-right: 130px;
}

.interests .interests-content .text span{
    font-size: 27px;
    font-weight: 500;
}

.interests .interests-content .text span2{
    font-weight: 600;
}

.interests .interests-content .text span3{
    font-style: italic;
    color: gray;
}

/* .lead .lead-content .cert-btn a{
    display: inline-block;
    background: darkviolet;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid darkviolet;
    transition: all 0.3s ease;
} */
