@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Gabarito:wght@900&family=Heebo&family=Hind+Siliguri:wght@300;400;500&family=Montagu+Slab:opsz,wght@16..144,100;16..144,200;16..144,300;16..144,400;16..144,500;16..144,600;16..144,700&family=Poppins:wght@200;300;400;500;600;900&family=Zen+Dots&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}

.header{
    min-height: 95vh;
    width: 100%;
}

nav{
display: flex;
align-items: center;
justify-content: space-between;
margin: 10px 20px;
padding: 10px 20px;
}

nav .nav-links ul{
    display: flex;
    align-items: center;
}

nav .nav-links ul li{
    transition: all ease-in-out .4s;
}

nav .nav-links ul li a{
    position: relative;
    margin: 0 20px;
    color: black;
    font-size: 20px;
    transition: all ease-in .4s;
}


nav .nav-links ul li a::before{
    content: '';
    background-color: black;
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 0;
    transition: all ease-in-out .4s;
}

nav .nav-links ul li:hover a::before{
   width: 50%;
}

nav .nav-links ul li:hover{
    scale: 1.2;
}

.desc-btns.cv,.desc-btns.hireme{
    outline: none;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    background-color: rgb(59, 59, 59);
    color: white;
    border-radius: 20px;
    cursor: pointer;
    gap: 35px;
    transition: all ease-in-out .3s;
    margin-top: 20px;
}

.desc-btns.hireme a{
   color: white;
   transition: all ease-in-out .5s;
}

.desc-btns.hireme:hover{
    opacity: 0.8;
}

.desc-btns.cv{
    background-color:white;
    color: black;
    border: 1px solid black;
    margin-right: 20px;
}

.desc-btns.cv a{
    color: black;
}

.cvbtn:hover{
    opacity: .4;
}

.mobile-menu{
    opacity: 0;
}

.social-media-header a i{
    color: rgb(30, 30, 30);
}


@media (max-width:800px) {
    .nav-links{
        display: none;
    }

    .mobile-menu{
        opacity: 1;
        z-index: 1;
    }

    .mobile-menu-links{
        position: absolute;
        top: -200%;
        right: 40px;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        padding: 10px 50px;
        line-height: 50px;
        text-align: center;
        border-radius: 10px;
        transition: all ease-in-out .4s;
    }
    
    .mobile-menu-links.active{
        top: 50px;
    }

    .mobile-menu li a{
        color: black;
    }
    .mobile-icons{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 17px;
        width: 22px;
        cursor: pointer;
        position: absolute;
        top: 25px;
        right: 20px;
    }
    
    .mobile-menu .mobile-icons span{
    height: 1px;
    width: 100%;
    background-color: black;
    transition: all ease-in-out .5s;
    }

    .mobile-icons.active span:first-child{
        transform: rotate(45deg) translate(8px,5px);
        color: black;
    }

    .mobile-icons.active span:nth-child(2){
        opacity: 0;
    }

    .mobile-icons.active span:last-child{
        transform: rotate(-45deg) translate(7px,-3px);
    }


}

.hero-section{
   margin: 0 7%;
   display: flex;
   align-items: center;

}

.image-section{
    flex-basis: 50%;
    align-items: center;
    text-align: center;
    justify-content: center;
    z-index: -1;
}

.image-section img{
    height: 450px;
    width: 450px;
    border-radius: 50%;
}


.desc{
    flex-basis: 50%;
}

.desc .social-media-header i{
    margin-top: 50px;
    font-size: 30px;
    padding-right: 50px;
}

.desc p{
  font-size: 25px;
  color: rgb(105, 105, 105);
}

.desc p .fir{
    font-size: 70px;
    font-weight: 600;
    color: black;
}

.desc p .sec{
    font-size: 30px;
    font-weight: 500;
    color: rgb(105, 105, 105);
}

@media (max-width:800px) {
    .hero-section{
        flex-direction: column;
        margin-top: 15%;
    }

    .image-section{
        flex-basis: 100%;
    }

    .image-section img{
        height: 200px;
        width: 200px;
    }
    
    .desc p{
        font-size: 15px;
        margin-top: 15px;
    }

    .desc p .fir{
        font-size: 25px;
    }
    .desc p .sec{
        font-size: 20px;
    }
    .desc .social-media-header i{
       margin-top: 30px;
    }
}


/* =========About Me============ */


.about-me{
 padding: 0 7%; 
}

.title{
    text-align: center;
    color: rgb(105, 105, 105);
}

.sub-title{
    text-align: center;
    font-size: 50px;   
}

.about-me .row{
    display: flex;
    text-align: center;
    gap: 85px;
    margin-top: 7%;
}

.about-me .row .col-1{
    flex-basis: 30%;
}

.about-me .row .col-1 img{
   width: 100%;
   height: 100%;
   border-radius: 20px;
}
.about-me .row .col-2{
    flex-basis: 60%;
    margin-top: 2%;
    height: fit-content;
    text-align: center;
}

.about-me .row .col-2 .col-header{
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-me .row .col-2 p{
    margin-top: 20px;
    text-align: left;
    font-size: 15px;
}

.about-me .row .col-2 .edu{
    border: 1px solid black;
    width: fit-content;
    border-radius: 20px;
    padding: 30px 40px;
}

.about-me .row .col-2 .edu h3{
    font-weight: 600;
    font-size: 20px;
}

.about-me .row .col-2 .edu i{
    font-size: 20px;
}

.about-me .row .col-2 .edu p{
    font-size: 13px;
    margin-top: 0;
}

@media (max-width:800px) {
    .about-me .row{
        flex-direction: column;
        margin-top: 0;
        gap: 20px;
    }

    .about-me .row .col-2 .edu{
        padding: 10px 20px;
    }

    .about-me .row .col-2 .edu h3{
        font-size: 15px;
    }

    .about-me .row .col-2 .edu i{
        font-size: 10px;
    }

    .about-me .row .col-2 .edu p{
        font-size: 9px;
    }

    .about-me .row .col-1{
     flex-basis: 100%;
    }

    .about-me .row .col-2 p{
        font-size: 15px;
    }
}


/* =========Experience============ */

.experience{
    margin-top: 7%;
    padding: 0 7%;
}

.experience .row{
    display: flex;
    text-align: center;
    gap: 85px;
    margin-top: 3%;
}

.experience .row .col-1{
    flex-basis: 50%;
    text-align: center;
    align-items: center;
    border: 1px solid black;
    border-radius: 15px;
    padding: 20px 30px;
}

.col-1 h3{
    color: rgb(105, 105, 105);
    font-size: 20px;
    font-weight: 500;
}

.col-2 h3{
    color: rgb(105, 105, 105);
    font-size: 20px;
    font-weight: 500; 
}
.experience .row .col-2{
    flex-basis: 50%;
    text-align: center;
    border: 1px solid black;
    border-radius: 15px;
    padding: 20px 30px;
}

article{
    display: flex;
    gap: 35px;
    margin: 20px;
    align-items: center;
}

article img{
    width: 30px;
    height: 30px;
    align-items: center;
}

article .exp h3{
   font-weight: 600;
   color: black;
}

article .exp p{
    color: rgb(105, 105, 105);
}

@media (max-width:800px) {
    .experience .row{
        flex-direction: column;
        gap: 20px;
    }
    .experience .row .col-1{
        flex-basis: 100%;
    }
}



/* =========Projects============ */
.projects{
    margin-top: 7%;
    padding: 0 7%;
    height: fit-content;
}

.projects .row{
    display: flex;
    flex-wrap: wrap;

}

.projects .project-list{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 5%;
}

.project-list .project-card{
    border: 1px solid black;
    padding: 7px 10px;
    border-radius: 10px;
    height: 250px;
    width: 300px;
}

@media (max-width:700px) {
    .project-list .project-card{
        margin-top: 10px;
    }
    .projects .project-list{
    display: flex;
    align-items: center;
    justify-content: center;
     grid-gap: 30px; 
}

}

.project-list .project-card img{
    width: 100%;
    height: 85%;
    border-radius: 10px;
}

.project-list .project-card p{
    align-items: center;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
}



.demobtn{
border: none;
background-color: transparent;
width: 100%;
}

.demobtn a{
    background-color: white;
    padding: 7px 30px;
    border-radius: 10px;
    width: 100%;
    color: black;
    border: 1px solid black;
    transition: all ease-in-out .5s;
    margin-top: 5px;
}

.demobtn a:hover{
    color: white;
    background-color: black;
}


/* =================Contact US================== */

.contact-us{
    margin-top: 10%;
    padding: 0 7%;
    background:linear-gradient(rgba(0,0,0,0.26),rgba(0,0,0,0.26),url(images/common-bg.svg)) ;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.contact-box{
  display: flex;
  justify-content: center;
  border-radius: 2rem;
  border: 1px solid black;
  margin: 2rem auto;
  padding: 0.5rem;
}

.contact-info-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem;
}

.contact-info-box i{
    background-color: black;
    padding: 10px;
    border-radius: 50%;
    color: aliceblue;
}

.contact-info-box a,i{
    gap: .5rem;
    color: black;
}

@media (max-width:800px) {
    .contact-box{
        flex-direction: column;
    }
}



  /* =======footer========= */

  .footer{
    margin-top: 5%;
    padding: 0 7%;
    align-items: center;
    text-align: center;
  }







