@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;1,200;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;1,200;1,500&display=swap');
:root{
    --header-height:3rem;
    --hue-color:230;
    
    --first-color:hsl(var(--hue-color),69%,61%);
    --first-color-second: hsl(190, 75%, 49%);
    --first-color-alt: hsl(78, 79%, 70%);
    --first-color-lighter: hsl(294, 65%, 73%);
    --title-color: hsl(353, 28%, 28%);
    --text-color: hsl(204, 92%, 25%);
    --text-color-light: hsl(118, 100%, 17%);
    --input-color: hsl(155, 67%, 68%);
    --body-color:#eceab1;
    --container-color: hsl(250, 67%, 64%);

    --body-font:'Poppins', sans-serif;
    --big-font-size: 32px;
    --h1-font-size: 24px;
    --h2-font-size: 20px;
    --h3-font-size: 18px;
    --normal-font-size: 15px;
    --small-font-size: 13px;
    --smaller-font-size: 10px;

    --font-medium: 500;
    --font-semi-bold: 600;

    --mb-0-25: 4px;
    --mb-0-5: 8px;
    --mb-0-75: 12px;
    --mb-1: 16px;
    --mb-1-5: 24px;
    --mb-2: 32px;
    --mb-2-5: 40px;
    --mb-3: 48px;
    

    --z-tooltrip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}


*{
    box-sizing: border-box;
    padding:  0;
    margin: 0;
}

html{
    scroll-behavior: smooth;
}

body{
margin: 0 0 var(--header-height);
font-family: var(--body-font);
font-size: var(--normal-font-size);
background-color: var(--body-color);
color:var(--text-color)
}

h1,h2,h3,h4{
    color:var(--title-color);
    font-weight:var(--font-semi-bold);
}

.middle{
    width: 100%;
}


ul{
    list-style: none;
}

a{
    text-decoration: none;
}

img{
    max-width: 100%;
    height: auto;
}

.section{
    padding: 32px;
}

.section_title{
    font-size:var(--h1-font-size)
}

.section__subtitle{
    display:block;
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-3);
}

.section__title,.section_subtitle{
    text-align: center;
}

.conatiner{
    max-width: 768px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid{
    display: grid;
    gap:24px;
}

.header{
    width:100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: var(--body-color);
}

.nav{
    max-width: 968px;
    height:3rem;
    display:flex;
    justify-content: space-between;
    align-items: center;
}



.nav__logo,.nav__toggle{
    color:var(--title-color);
    font-weight: var(--font-medium);
    font-size: 1.9rem;
}

.nav__logo:hover{
    color:var(--first-color);
}

.hello{
    width: 1263px;
    background-color: rgb(211, 209, 209);
    color: rgb(27, 25, 25);
}


.hello1{
    width: 1263px;
    background-color: #ffffff;
}


.hello2{
    width: 1263px;
    background-color: rgb(211, 209, 209);
}


.upper{
    background-color: rgba(151, 106, 240, 0.5);
    text-align: center;
    font-size: 25px;
    color: rgb(33, 9, 43);
    font-weight: 600;
    border-radius: 3px;
    width: 1263px;
    height: 35px;
}

.upper:hover{
    background-color: #E5D9B6;
}

.nav__toggle{
    color: var(--first-color);
    cursor: pointer;
    font-size: 2rem;
    padding-left: 200px;
}


    .nav__menu{
        position: fixed;
        bottom: -100%;
        left: 0px;
        width: 100%;
        background-color: rgb(222, 237, 240);
        padding: 2rem 1.5rem 3rem;
        border-radius: 1.5rem 1.5rem 0 0;
        transition: .3s;
    }

    .nav__menu:hover{
      background-color: #9cbf8a;
    }


.nav__list{
    grid-template-columns:repeat(5 ,1fr);
    gap: 2rem;
}

.nav__link{
    display:flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--small-font-size);
    color:var(--title-color);
    font-weight: var(--font-medium);
}

.nav__link:hover{
    color:var(--first-color);
}

.nav__icon{
    font-size: 1.2rem;
}

.nav__close{
    position: absolute;
    right: 1.3rem;
    bottom:0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--first-color);
}

.nav__close:hover{
    color: var(--first-color);
}


.show-menu{
    bottom:0;
}

.home__container{
    gap:2rem;
}

.home__content{
    grid-template-columns: .5fr 3fr;
    padding-top: 3.5rem;
    align-items: center;
}

.home__social{
    display: grid;
    grid-template-columns: max-content;
    row-gap: 1 rem;
    font-size: 1.5rem;
}

.home__social-icon{
    font-size:1.25rem;
    color:white;
}

.home__social-icon:hover{
    color: white;
}


.home__blob{
    justify-content: center;
    width: 950px;
    height: 350px;
}

.home__blob-img{
    width: 150px;
}

.home__{
    grid-column: 1/3;
}

.home__title{
    font-size: var(--big-font-size);
}

.nice{
    background-color: #eeeeee;
    border-radius: .35rem;
    padding: .25rem .5rem 0rem 0.5rem;
    box-shadow: 0 5px 5px rgba(234, 110, 99, 0.5);
}

.home__subtitle{
    font-size: 25px;
    color: rgb(41, 41, 41);
    font-weight: 8px;
    margin-top: 10px;
    margin-bottom: var(--mb-0-75);
}

.home__description{
    margin-bottom: var(--mb-2);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 600;
    font-size: 20px;
}

.home__scroll{
    display: none;
}

.home__scroll-button{
    color: var(--first-color);
    transition: .3s;
}

.home__scroll-button:hover{
    transform: translateY(.25rem);

}


.home__scroll-mouse{
    font-size: 2rem;
}

.home__scroll-name{
    font-size: var(--small-font-size);
    color: var(--title-color);
    font-weight: var(--font-medium);
    margin-right: var(--mb-0-25);
}

.home__scroll-arrow{
    font-size: 1.25rem;
}

.button{
    display: inline-block;
    background-color: var(--first-color);
    color: #fff;
    padding: 1rem;
    border-radius: .7rem;
    font-weight: var(--font-medium);
}


.button:hover{
    background-color: rgb(223, 139, 139);
    transform: translateX(0.5rem);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}


.button__icon{
    font-size: 1.25rem;
    margin-left: var(--mb-0-5);
    transition: .3s;
}

.button--flex{
    display: inline-flex;
    align-items: center;
}

.about__img{
    margin-top: -75px;
    margin-bottom: 30px;
    width: 230px;
    height: 250px;
    border-radius: .75rem;
    justify-self: center;
    background-color: #f3efec;
    border-radius: .5rem;
    box-shadow: 0 7px 7px rgba(85, 178, 214, 0.5);
    align-self: center;
}

.about__description{
    text-align: center;
    margin-bottom: var(--mb-2-5);
    background-color: #f3efec;
    padding-top: 5px;
    font-weight:700;
    height: 30px;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(26, 26, 16, 0.5);
}

.about__info{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: var(--mb-2-5);
}

.about__info-title{
    font-size: 20px;
    font-weight:600;
    color: var(--title-color);
}

.about__info-name{
    font-size: 15px;
    font-weight: 600;
    color:black;
}

.about__info-title,
.about__info-name{
    display: block;
    text-align: center;
}

.about__buttons{
    display: flex;
    justify-content: center;
}

.section__title,
.section__subtitle{
    text-align: center;
    font-size: 1.5rem;
}

.skills__container{
    row-gap: 0;
}

.skills__header{
    display: flex;
    align-items: center;
    margin-bottom: var(--mb-2-5);
    cursor: pointer;
}

.skills__icon,
.skills__arrow{
    font-size: 1.5rem;
    color: var(--first-color);
}

.skills__icon{
    margin-right: var(--mb-0-75);
}


.skills__title{
    font-size: var(--h3-font-size);
}

.skills__subtitle{
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    background-color: rgb(243, 239, 236);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 5px;
    border-radius: 0.5rem;
}


.skills__subtitle:hover{
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.15);
}

.skills__arrow{
    margin-left: auto;
    transition: .4s;
}


.skills__list{
    row-gap: 1.5rem;
    padding-left:1rem;
}
.skills__titles{
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--mb-0-5);
}


.skills__name{
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
}

.skills__bar,
.skills__percentage{
    height: 6px;
    width: 1200px;
    border-radius: .5rem;
}

.skills__bar{
    background-color: #E5D9B6;
}

.skills__percentage{
    display: block;
    background-color: #1e9eed;
}


.skills__html{
    width: 60%;
    position: relative;
    background-color: #4a83ab;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(69, 103, 103, 0.5);
}

.skills__css{
    width: 50%;
    background-color: #4a83ab;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(69, 103, 103, 0.5);
}

.skills__js{
    width: 40%;
    background-color: #4a83ab;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(69, 103, 103, 0.5);
}


.skills__nodejs{
    width: 60%;
    background-color: #4a83ab;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(69, 103, 103, 0.5);
}


.skills__reactjs{
    width: 40%;
    background-color: #4a83ab;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(69, 103, 103, 0.5);
}

.skills__mongojs{
    width: 60%;
    background-color: #4a83ab;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(69, 103, 103, 0.5);
}


.skills__django{
    width: 65%;
    background-color: #4a83ab;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(69, 103, 103, 0.5);
}


.skills__sql{
    width: 70%;
    background-color: #4a83ab;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(69, 103, 103, 0.5);
}


.skills__flask{
    width: 40%;
    background-color: #4a83ab;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(69, 103, 103, 0.5);
}

.skills__sketch{
    width: 60%;
    background-color: #4a83ab;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(69, 103, 103, 0.5);
}

.skills__photoshop{
    width: 40%;
    background-color: #4a83ab;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(69, 103, 103, 0.5);
}
.skills__html:hover{
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.15);
}

.skills__js:hover{
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.15);
}

.skills__photoshop:hover{
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.15);
}

.skills__css:hover{
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.15);
}

.skills__sketch:hover{
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.15);
}

.skills__close .skills__list{
    height:0;
    overflow: hidden;
}

.skills__open .skills__list{
    height:max-content;
    margin-bottom: var(--mb-2-5);
}

.skills__open .skills__arrow{
    transform: rotate(-180deg);
}

.qualification{
    width: 1263px;
    background-color: #fefefe;
}


.qualification__tabs{
    display:flex;
    justify-content: space-evenly;
    margin-bottom: var(--mb-2);
}

.qualification__button{
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    cursor: pointer;
}

.qualification__button:hover{
    color: var(--first-color);
}

.qualification__icon{
    font-size: 1.8rem;
    margin-right: var(--mb-0-25);
}

.qualification__calender{
    color: rgb(125, 161, 211);
}

.qualification__title{
    font-size: 25px;
    font-weight: var(--font-medium);
    position: relative;
    background-color: #c9c8c8;
    padding: 0.25rem .25rem 0.75rem 0.5rem; 
    border-radius: .5rem;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

.qualification__title:hover{
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.15);
}

.qualification__subtitle{
    display: inline-block;
    margin-top: 15px;
    font-size: var(--small-font-size);
    color: black;
    font-weight: bold;
    margin-bottom: var(--mb-1);
}


.services{
    width: 1263px;
    background-color: #e3e2e2;
    cursor: pointer;
}


.services__container{
    gap: 1.5rem;
    grid-template-columns: repeat(1,1fr);
}

.services__content{
    position: relative;
    background-color:rgba(232, 178, 191, 0.813);
    padding: 3rem .5rem 1.25rem 1.5rem;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(230, 2, 2, 0.5);
}

.services__content:hover{
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.5);
    background-color: rgb(234, 210, 230);
}

.services__icon{
    display:block;
    font-size: 1.5rem;
    color:var(--first-color);
    margin-bottom: var(--mb-1);
    padding-left: 35rem;
}

.services__title{
    font-size: 30px;
    margin-bottom: var(--mb-1);
}

.services__button{
    cursor: pointer;
    font-size: var(--small-font-size);
}

.button--small{
    padding: .75rem .5rem .75rem 1.25rem;
}

.services__button:hover .button__icon{
    transform: translateX(.25rem);
}

.services__modal{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 252, 252, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem ;
    z-index: var(--z-modal);
    opacity: 0; 
    visibility: hidden; 
    transition: .3s;
}



.services__modal-content{
    position: relative;
    background-color: rgb(158, 168, 159);
    padding: .5rem;
    border-radius: .59rem;
}

.services__modal-content:hover{
    background-color: rgb(199, 203, 205);
    padding: .5rem;
    border-radius: .5rem;
}

.services__modal-services{
    row-gap: 1rem;
}

.services-modal-service{
    display: flex;
}

.services-modal-title{
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1-5);
}

.services__modal-close{
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--first-color);
    cursor: pointer;
}

.services__modal-icon{
    color:var(--first-color);
    margin-right: var(--mb-0-25);
}


.active-modal{
    opacity: 1;
    visibility: visible;
}


.home__data{
    cursor: pointer;
}

.home__datas{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 252, 252, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem ;
    z-index: var(--z-modal);
    opacity: 0; 
    visibility: hidden; 
    transition: .3s;
}



.home__datas-content{
    position: relative;
    background-color: rgb(183, 190, 194);
    padding: .5rem;
    border-radius: .5rem;
}

.home__datas-content:hover{
    position: relative;
    background-color: rgb(193, 218, 233);
    padding: .5rem;
    border-radius: .5rem;
}

.home__datas-service{
    row-gap: 2rem;
}

.home__datas-close{
    cursor: pointer;
}

.home-data{
    opacity: 1;
    visibility: visible;  
}


.Border{
    /* border: dotted #171913 8px; */
    border-bottom: none;
    border-radius: 10 px;
    background-color: #6d8070;
   width: 1263px;
}

.Border:hover{
    background-color: rgb(149, 180, 188);
}

@media only screen and (min-width: 400px){
    .header .main {
        right:-13%;
        width:30%;

    }
}

.g1{
    color: rgb(16, 16, 16);
}
.g2{
    color: #4a83ab;
}
