@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i);

@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css");

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css");



*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Poppins', sans-serif;
    /* border: 1px red solid; */
    cursor: none;
}

.bg-container{
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    position: fixed;
    z-index: -100;
}
div.main-container{
    width: 100%;
    height: 100vh;
}

div.above-bg{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
}

.side-navbar{
    width: 300px;
    height: 100vh;
    background-color: black;
    display:flex;
    flex-direction: column;
    align-items: center;
    z-index: 200;
    visibility: visible;
    position: fixed;
    left: 0px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 0 10px 0 rgba(255,255,255, 0.5);
}

.head{
    margin-top: 20px;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.img-cover{
    width: 115px;
    height: 115px;
    background-color: #23363d; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.img-cover:hover{
    background-color: #149ddd;
    transition: all 0.2s ease-in-out;
    transform: scale(1.1);
}

.user-img{
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
}

.user-img>img{
    width: 100%;
    height: 100%;
}
.user-details>a.name{
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.user-details{
    margin-bottom: 20px;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.user-details :hover{
    color: #149ddd;
    transition: all 0.2s ease-in-out;
    text-shadow: 0 0 20px #149ddd;
    font-size: 28px;
}

div.social-logos{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 80px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

div.logobox{
    width: 40px;
    height: 40px;
    border-radius: 40%;
    overflow: hidden;
    background-color: #23363d;
    margin-left: 10px;
    margin-right: 10px;
    transition: all 0.2s ease-in-out;
}

div.logobox:hover{
    background-color: #149ddd;
    transition: all 0.2s ease-in-out;
    transform: scale(1.2);
}

div.logo{
    width: 100%;
    height: 100%;
}
div.logo>a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.nav-menu{
    margin-top: 30px;
    width: 100%;
    height: 100%;
}

.nav-menu>ul{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 45px;
}

.nav-menu>ul>li{
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
}

.nav-menu>ul>li>a{
    color: #777777;
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease-in-out;
}

.nav-menu>ul>li>a:hover{
    color: #149ddd;
    transition: all 0.2s ease-in-out;
    transform: scale(1.2);
    text-shadow: 0 0 10px #149ddd;
}

.nav-menu>ul>li>a>i{
    margin-right: 20px;
}
#side-navbar-active{
    display: none;
}
.open-sidebar-button{
    display: none;
}
.close-sidebar-button{
    display: none;
}
.sidebox{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sidebox>.content{
    color: #fff;
    width: fit-content;
    height: fit-content;
    z-index: 0;
}

.content>.content-title>.title{
    width: fit-content;
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 5px -5px 15px #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content>.content-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: 300;
    text-shadow: 5px -5px 7px #fff;
}

.content-text>p.inline-block{
    width: fit-content;
    font-family: 'Poppins', sans-serif;
}

.main-body{
    padding: 10px;
    margin-left: 300px;
    width: calc(100% - 300px);
    height: max-content;
    transition: all 0.5s;
    z-index: 0;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.menu-item-container{
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255, 0.97);
    border-radius: 50px;
    box-shadow: 0 0 10px 0 rgba(255,255,255, 2);
}

.menu-item-heading{
    height: fit-content;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-heading>h2{
    color: #1f2a8b;
    font-size: 35px;
    font-weight: 700;
}

.menu-item-heading>h2::after{
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background-color: #331768;
    margin-top: 10px;
}

.about-text{
    color: #000;
    font-size: 16px;
    font-weight: 350;
    margin-top: 20px;
}

.about-data{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.about-img{
    width: 300px;
    height: 300px;
}

.about-img>img{
    width: 100%;
    height: 100%;
    border-radius: 80px 30px 80px 30px;
}

.about-details{
    width: calc(100% - 40vh);
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-details>h3{
    color: #1f2a8b;
    font-size: 25px;
    font-weight: 600;
    margin-left: 30px;
}

.about-details>.about-text{
    margin-left: 30px;
}

.details-row{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.details-row>.details-col{
    padding-top: 30px;
    width: 50%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
}

.details-col>ul>li{
    width: 100%;
    height: 35px;
}

div.project-title{
    margin-top: 50px;
}

div.project-title>a{
    text-decoration: none;
    color: #1f2a8b;
    transition: all 0.2s ease-in-out;
}

div.project-title>a:hover{
    color: #149ddd;
    transition: all 0.2s ease-in-out;
    text-decoration: underline;
}

.projects-row{
    font-size: 15px;
    font-weight: 380;
}

.project-imgs{
    width: 100%;
    height: 300px;
    /* overflow: hidden; */
    border-radius: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.project-img{
    width: 100%;
    height: 300px;
    /* overflow: hidden; */
    border-radius: 50px;
    display: flex;
    justify-content: center;
    padding: 20px;
}


.project-img>img{
    height : 100%;
    border-radius: 50px;
}

.project-imgs>.project-img{
    border-radius: 20px;
    height: 100%;
    padding: 20px;
}
.project-imgs img{
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.project-img:hover{
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}
.project-imgs:hover{
    padding-top: 20px;
    transition: all 0.2s ease-in-out;
}

.contact-text{
    font-size: 16px;
    font-weight: 350;
    margin-top: 20px;
    color: #000;
}

.cont-containers{
    width: 100%;
    padding: 20px;
    height: fit-content;
    display: block;
    box-sizing: border-box;
    background-color: whitesmoke;
    margin-bottom: 50px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
    border-radius: 50px;
}

.info{
    width: 100%;
}
.info i {
    font-size: 20px;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    background: #030305;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
    margin-right: 20px;
}

.info i:hover{
    background-color: #149ddd;
}

.typewrite>.wrap{
    text-decoration: #149ddd underline;
    font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 1300px){
    .about-container{
        height: max-content;
    }

    .about-data{
        width: 100%;
        height: max-content;
        display: grid;
    }
    .about-data>.about-img{
        justify-self: center;;
    }
    .about-details{
        margin-top: 40px;
        height: max-content;
        width: 100%;
    }
    .about-details>h3{
        margin: 0;
    }
    .about-details>.about-text{
        margin: 0;
    }

    .about-data ul{
        margin: 0;
    }
    .about-data div.details-col{
        padding-left: 0;
    }
}

@media screen and (max-width: 1100px){
    div.above-bg{
        display: flex;
        flex-direction: column;
    }
    
    div.contain-nav{
        margin: 0;
        width: 100%;
        height: 70px;
        background-color: #fff;
        position: fixed;
        z-index: 20;
        border-radius: 20px;
    }

    div.side-navbar{
        width: 100%;
        height: 70px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        z-index: 200;
        font: icon;
        border-radius: 20px
    }
    div.head{
        height: 70px;
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
        margin: 0;
        padding-left: 20px;
        z-index: 35;
    }

    .head>.img-cover{
        padding-left: 10px;
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        padding-right: 10px;
    }
    .user-img{
        width: 45px;
        height: 45px;
    }
    .head .user-details{
        margin: 0;
        width: max-content;
        padding-left: 10px;
        padding-right: 10px;
        align-items: start;
    }
    .user-details>a.name{
        font-size: 20px;
    }

    div.social-logos{
        margin: 0;
        width: fit-content;
        height: 70px;
        justify-content: right;
        padding-right: 20px;
    }
    .nav-menu{
        display: none;
    }
    .open-sidebar-button, .close-sidebar-button{
        display: block;
    }
    .togglenav{
        display: flex;
        padding-top: 15px;
        padding-right: 15px;
        background-color: black;
        width: 200px;
        height: 100vh;
        position: fixed;
        right: -100%;
        top: 0;
        z-index: 100;
        flex-direction: column;
        align-items: end;
        border-bottom-left-radius: 30px;
        border-top-left-radius: 30px;
        box-shadow: 0 0 10px 0 rgba(255,255,255, 0.5);
        transition: ease-in-out 0.5s;
    }
    .togglenav .nav-item{
        width: 100%;
        height: 50px;
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: left;
    }
    .togglenav .nav-item>a{
        color: #fff;
        font-size: 20px;
        font-weight: 300;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        transition: all 0.2s ease-in-out;
    }
    .togglenav .nav-item>a:hover{
        color: #149ddd;
        transition: all 0.2s ease-in-out;
        transform: scale(1.2);
        text-shadow: 0 0 10px #149ddd;
    }
    .togglenav .nav-item>a>i{
        margin-right: 10px;
    }
    
    .sidebox{
        width: 100%;
        height: 100vh;
        margin: 0;
        margin-top: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    div.content{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .content>.content-title>h1.title{
        font-size: 70px;
    }

    .content>.content-text>p{
        font-size: 30px;
    }
    .main-body{
        margin-left: 0;
        width: 100%;
    }
    .menu-item-container{
        width: 100%;
        padding-top: 70px;
    }

    .about-text{
        color: #000;
        font-size: 16px;
        font-weight: 350;
        margin-top: 20px;
    }

    .about-data{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: row;
        margin-top: 20px;
    }

    .about-img{
        width: 300px;
        height: 300px;
    }

    .about-img>img{
        width: 100%;
        height: 100%;
    }

    .about-details{
        width: calc(100% - 300px);
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 10px;
    }

    .about-details>h3{
        text-align: left;
        color: #1f2a8b;
        font-size: 25px;
        font-weight: 600;
        margin-left: 30px;
    }

    .about-details>.about-text{
        margin-left: 30px;
    }
      
    .about-details .details-row{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .about-details .details-row>.details-col{
        padding-top: 30px;
        width: 50%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        padding-left: 30px;
    }

    .about-details .details-col>ul>li{
        width: 100%;
        height: 35px;
        margin: 10px;
    }
    
    .about-details ul>li.start-list{
        margin-top: 0;
    }
}

@media screen and (max-width: 970px){
    .about-container{
        height: max-content;
    }

    .about-data{
        width: 100%;
        height: max-content;
        display: grid;
    }
    .about-details{
        margin-top: 40px;
        height: max-content;
        width: 100%;
    }
    .about-details>h3{
        margin: 0;
        text-align: center;
    }

    .about-details>.about-text{
        margin: 0;
    }

    .about-data ul{
        margin: 0;
    }

    .about-data ul>li.start-list{
        margin-top: 0;
    }
    .about-data ul>li{
        margin: 15px;
    }
    .about-data .details-row .details-col{
        padding-left: 0;
        width: 50%;
        align-items: center;
    }
    .about-data .col-2{
        padding: 0;
    }
}

@media screen and (max-width: 620px) {

    div.content{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .content>.content-title>h1.title{
        font-size: 45px;
    }
    .content>.content-text>p{
        font-size: 25px;
    }
    
    .about-data{
        width: 100%;
        height: max-content;
        display: flex;
        flex-direction: column;
    }
    .about-data .about-details{
        display: flex;
        flex-direction: column;
    }
    .about-data .about-details>h3{
        text-align: left;
    }

    .about-data .details-row{
        width: 100%;
        margin-top: 20px;
        height: fit-content;
        display: flex;
        flex-direction: column;
    }

    .about-data .details-row .details-col{
        width: 100%;
        padding: 0;
        margin: 0;
        align-items: start;
    }
    .about-data .details-row .details-col .col-1{
        padding-left: 0;
    }
        
    .about-data ul>li{
        margin: 15px;
    }
    
    .about-data ul>li.start-list{
        margin-top: 0;
    }

    .project-imgs{
        flex-direction: column;
        width: 80vw;
        height: fit-content;
    }
    .project-img{
        height: 200px;

    }
    .project-img img{
        width: 250px;
    }
}

@media screen and (max-width: 500px){
    *{
        font-size: 13px;
    }
    .side-navbar{
        width: 100%;
        height: 70px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        z-index: 200;
        font: icon;
        border-radius: 20px
    }
    .side-navbar .head{
        padding-left: 10px;
    }
    .side-navbar .head .img-cover{
        padding-left: 5px;
        padding-right: 5px;
        width: 45px;
        height: 45px;
    }
    .side-navbar .head .user-img{
        width: 35px;
        height: 35px;
    }
    .side-navbar .head .user-details{
        padding-left: 10px;
        width : max-content;
    }
    .side-navbar .head .user-details .name{
        font-size: 15px;
    }
    .side-navbar .social-logos{
        justify-content: right;
        padding-right: 10px;
    }
    .side-navbar .social-logos .logobox{
        width: 30px;
        height: 30px;
    }
    .about-container .about-data .about-img{
        width: 200px;
        height: 200px;
    }
    .about-container .about-data .about-details .details-col ul li{
        font-size: 12px;
    }
    .project-imgs{
        width: 100%;
        height: fit-content;
        flex-direction: column;
        align-items: center;
    }
    .project-imgs .project-img{
        width: 200px;
    }
    .project-imgs .project-img img{
        width: 200px;
    }
    .cont-containers .info{
        width: 100%;
        font-size: 12px;
    }
    
}
/* Adding Animations */

.hidden{
    opacity : 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 0.5s;
}

.hidden2{
    opacity : 0;
    filter: blur(5px);
    transform: translateX(100%);
    transition: all 0.5s;
}
.show{
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0%);
}

.zoom-out{
    transform: scale(0);
    transition: all 0.35s;
}

.zoom-in{
    transform: scale(1);
    transition: all 0.35s;
}

.cursor{
    position: absolute;
    height: 35px;
    width: 35px;
    left: -100%;
    top: -100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
}

.outer{
    border: 2px solid #149ddd90;
    transition: 150ms ease=in-out;
}

.inner{
    background-color: #149ddd50;
    transition: 150ms ease-out;
}

.cursor.hover{
    transform: translate(-50%,-50%);
    height: 80px;
    width: 80px;
    transition: transform 100ms ease-in-out;
}
.inner.hover{
    background-color: #149ddd70;
    mix-blend-mode: color-burn;
}
.outer.hover{
    border-color: #149ddd70;
}

