:root{
    --primary-color: #080e25;
    --primary-color-light: #111949;
    --secondary-color: #20a4f3;
    --secondary-color-dark: #15204b;
    --tertiary-color: #0E21A0;
    --secondary-g-color: linear-gradient(90deg, #0E21A0, #20a4f3);
    --secondary-g-color2: linear-gradient(180deg, #0E21A0, #20a4f3);
}

@font-face {
    font-family: Poppins;
    src: url(../fonts/Nunito-VariableFont_wght.ttf);
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    font-family: Poppins;
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* position: relative; */
}

body{
    background: var(--primary-color);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    color: white;
    /* background-image: linear-gradient(160deg, var(--primary-color) 55%, transparent, transparent), url(../images/spaceee.png); */
}

body::-webkit-scrollbar {
    width: 0px;
}
  
/* body::-webkit-scrollbar-track {
    background: var(--primary-color);   
}

body::-webkit-scrollbar-thumb {
    background: var(--secondary-g-color2); 
    border-radius: 20px;   
} */

p{
    font-size: 18px;
}

.transition{
    transition: all 200ms ease;
}
.lightDesign{
    position: absolute;
    top: calc(100vh - 100px);
    right: -150px;
    width: 200px;
    height: 200px;
    /* background: #4f7aa3; */
    z-index: 1;
    background: radial-gradient(white, #71bdf3, #70bef5);
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 200px #91d1ff, 0 0 350px #71bdf3, 0 0 600px #70bef5;
}

.moon{
    width: 150px;
    height: 150px;
    position: absolute;
    background: radial-gradient(#91d1ff, #71bdf3, #70bef5);
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 100px #00377d, 0 0 200px #00377d, 0 0 200px #00377d;
    /* box-shadow: 0 0 400px #91d1ff, 0 0 500px #71bdf3, 0 0 900px #70bef5; */
    z-index: -1;
    animation: scale 60s ease-in-out infinite;
    transition: all 1s ease-in-out;
    transform: scale(0.5);
}

/* ------------------------------header start  ------------------------------ */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    /* transition: all 300ms ease-in-out; */
    z-index: 1000;
}

header #header-inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

header a{
    text-decoration: none;
    cursor: pointer;
}

header .header-logo{
    color: white;
    font-size: 30px;
}

header .header-logo span{
    color: var(--secondary-color);
}

header nav{
    display: flex;
    gap: 50px;
}

header nav a{
    color: white;
    transition: all 400ms ease-in-out;
}

header .nav-line, .sectionTitleLine{
    height: 5px;
    width: 0;
    background: var(--secondary-g-color);
    border-radius: 20px;
    margin-top: 2px;
    transition: all 100ms ease-in-out;
}

header .nav-item > p{
    font-size: 16px;
}

header .nav-item.active .nav-line{
    width: 80%;
}

header .nav-item:hover .nav-line{
    width: 80%;
}

header .burgerMenu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    height: 100%;
    cursor: pointer;
    display: none;
}


header .burgerMenu div{
    width: 30px;
    height: 5px;
    background: var(--secondary-color);
    border-radius: 10px;
}

header .burgerMenu div:nth-child(2){
    width: 25px;
}
header .burgerMenu div:nth-child(3){
    width: 20px;
}

header .burgerMenu div:not(:last-child){
    margin-bottom: 3px;
}

/* ------------------------------header end ------------------------------ */


/* ------------------------------home start ------------------------------ */

#home{
    width: 100%;
    height: 100vh;
    max-height: 1000px;
    padding:  100px 100px 100px 120px;
    /* overflow: hidden; */
    transition: all 300ms ease-in-out;
}

.home-inner{
    max-width: 1300px;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    position: relative;
}

.home-inner > div {
    width: 100%;
}

.home-text-content{
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-text-content .home-text-box{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

#home .home-text-box > div{
    width: 100%;
}

.home-text-content .home-text-box p{
    transition: all 200ms ease-in-out;
}

.home-text-content .greetings{
    font-size: 70px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.home-text-content .greetings svg{
    width: 70px;
    height: auto;
}

.home-text-content .whom .im{
    font-size: 80px;
    display: inline-block;
    margin-right: 15px;
}

.home-text-content .name{
    font-size: 80px;
    display: inline-block;
}

.home-text-content .name span{
    color: var(--secondary-color);
    /* text-shadow: 0 0 50px var(--secondary-color); */
}

.home-text-content .job{
    font-size: 60px;
}

.home-btns{
    display: flex;
    align-items: center;
    gap: 50px;
}

.home-btns a{
    text-decoration: none;
}

.home-text-content button{
    background: var(--secondary-g-color);
    border: none;
    border-radius: 100px;
    font-size: 18px;
    padding: 10px 30px;
    color: white;
    cursor: pointer;
    width: 170px;
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home-text-content button svg{
    width: auto;
    height: 20px;
}

.icons{
    display: flex;
    align-items: center;
    gap: 30px;
}

.icons .icon svg{
    width: 30px;
    height: auto;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}

.icons .icon svg:hover{
    transform: scale(1.3);
}

.fillableSVG{
    fill: var(--secondary-color);
}

.home-image-content{
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease-in-out;
}

.home-image-content .image-design-container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit.outside{
    padding: 50px;
    animation: rotate 60s linear infinite reverse;
}
.orbit{
    border: 1px solid rgba(58, 57, 57, 0.4);
    padding: 40px;
    border-radius: 50%;
    position: relative;
    animation: rotate 30s linear infinite;
}


.hallow{
    width: 300px;
    height: 300px;
}

.orbit .icon-box{
    border: 1px solid rgba(58, 57, 57, 0.4);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    position: absolute;
    top: 20px;
    right: 50px;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}

.orbit .icon-box:hover{
    transform: scale(1.1);
}

.orbit .icon-box svg{
    width: 25px;
    height: auto;
    object-fit: contain;
}

.orbit .icon-box.left{
    top: 74px;
    left: 17px;
    animation: rotate 60s linear infinite reverse;
}

.orbit .icon-box.right{
    top: 300px;
    right: -10px;
    animation: rotate 60s linear infinite reverse;

}

.orbit .icon-box.top{
    top: 10px;
    left: 280px;
    animation: rotate 30s linear infinite;
}

.orbit .icon-box.bottom{
    top: 300px;
    left: 35px;
    animation: rotate 30s linear infinite;
}

.orbit .icon-box:hover{
    transform: scale(1.1);
}

.myimage-container{
    border-radius: 50%;
    overflow: hidden;
    width: 300px;
    height: 300px;
    position: absolute;
    transition: all 300ms linear;
}

.home-image-content img{
    width: 100%;
    height: 350px;
    object-fit: contain;
    object-position: top;
    transition: all 300ms linear;
}

/* ------------------------------home end ------------------------------ */

/* ------------------------------about start ------------------------------ */

#about{
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    padding-top: 210px;
    padding-bottom: 100px;
}

.about-content-wrapper{
    width: 100%;
    max-width: 100%;
    position: relative;
    /* background: var(--secondary-color-dark); */
}

#about > .about-svg-top{
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 100px;
}

#about .about-wave-bottom{
    transform: translateY(-10px);
}

#about .about-content{
    max-width: 1000px;
    padding: 0 100px;
    margin: 0 auto;
    position: relative;
}

.sectionTitle{
    position: relative;
    margin-bottom: 70px;
}

.sectionTitle h2{
    text-align: center;
    font-size: 40px;
    color: white;
    text-transform: uppercase;
}

.sectionTitle h2::after{
    content: '';
    width: 80px;
    height: 5px;
    background: var(--secondary-g-color);
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

#about .about-image-text-cont{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
    gap: 20px;
}

#about .about-image-text-cont .box-text{
    padding-bottom: 25px;
}

#about .about-image-text-cont .box-text p{
    line-height: 30px;
}


#about .about-image-text-cont .box-text h4{
    font-size: 30px;
    margin-bottom: 5px;
}

#about .about-image-text-cont .box-image img{
    width: 225px;
    height: 225px;
}

#about .about-left-moon{
    position: absolute;
    left: -300px;
    top: -150px;
    z-index: 1;
    width: 250px;
}

#about .about-right-moon{
    position: absolute;
    right: -350px;
    bottom: -250px;
    z-index: 1;
    width: 400px;
}

.about-right-moon svg, .about-left-moon svg{
    width: 100%;
    height: auto;
}

/* ------------------------------about end ------------------------------ */

/* ------------------------------Skill start ------------------------------ */



#skills{
    width: 100%;
    padding: 130px 50px 100px;
}

#skills .skills-inner{
    max-width: 900px;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    /* height: 500px; */
    /* position: relative; */
}

#skills .skill-icons-wrapper{
    width: 100%;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(6, 1fr);
    justify-content: center;
    align-self: flex-start;
    /* column-gap: 40px; */
    row-gap: 50px;
    transition: all 200ms ease;
}

#skills .skill-icon-cont, #skills .skill-img-cont{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    transition: all 300ms linear;
}

#skills .skill-icon-box{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(58, 57, 57, 0.4);
    background-color: var(--primary-color);
    transition: all 200ms ease-in-out;
    width: 65px;
    height: 65px;
    z-index: 1;
}

#skills .skill-icon-box:hover{
    background-color: #0c1537;
    transform: scale(1.1);
    box-shadow: 0 0 1px #00377d, 0 0 2px #00377d, 0 0 50px #00377d;
}

#skills .skill-img-cont{
    grid-column: span 2;
    justify-content: flex-start;
    max-height: 150px;
    overflow: hidden;
}

#skills .skill-img-cont img{
    width: 170px;
    height: 170px;
    grid-column: span 2;
    transform: translateY(-20px);
}


#skills .skill-icon-box svg{
    width: 35px;
    height: auto;
}

.skill-icon-name{
    color: white;
    margin-top: 5px;
    letter-spacing: 1px;
    text-align: center;
}

#skills .skill-icon-box svg.pythonicon{
    transform: scale(1.5);
}

/* ------------------------------Skill end ------------------------------ */


/* ------------------------------Projects start ------------------------------ */

#projects{
    width: 100%;
    padding: 100px 50px 100px;
    position: relative;
}

#projects .projects-inner{
    max-width: 1100px;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
    position: relative;
}

#projects .proj-cont{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 20px;
    z-index: 999;
}

#projects .proj-box{
    max-width: 350px;
    width: 350px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--primary-color-light);
    /* transition: all 3s linear; */
}

#projects .proj-img-box{
    width: 100%;
    height: 250px;
    background-color: var(--primary-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#projects .proj-img-box img{
    width: 350px;
    height: 250px;
    object-fit: cover;
    transition: all 300ms ease-in;
}

#projects .proj-cm{
    width: 50%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    transition: all 200ms ease;
    opacity: 0;
}

#projects .proj-cm::before, #projects .proj-cm::after{
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
}

#projects .proj-cm::before{
    left: 15px;
    top: 15px;
    border-top: 3px solid white;
    border-left: 3px solid white;
}

#projects .proj-cm::after{
    right: 15px;
    bottom: 15px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
}

#projects .proj-cm p{
    font-size: 25px;
}

#projects .proj-cm button{
    font-size: 15px;
    border-radius: 50px;
    color: white;
    background: var(--secondary-g-color);
    padding: 7px 20px;
    border: none;
    cursor: pointer;
    transition: all 200ms ease;
}

#projects .proj-cm a button{
    display: flex;
    justify-content: center;
    align-items: center;
}

#projects .proj-cm button svg{
    width: 20px;
    height: auto;
}

#projects .proj-cm button:hover{
    background: var(--primary-color);
    color: white;
    border: 2px sold var(--primary-color);
}

#projects .proj-img-box:hover .proj-cm {
    width: 100%;
    height: 100%;
    opacity: 1;
}

#projects .proj-seemore, #projects .proj-seemore-link{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 300ms linear;
    display: none;
}

#projects .proj-seemore:hover{
    background-color: rgba(97, 97, 97, 0.527);
}

#projects .proj-seemore > div{
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
}

#projects .proj-seemore-link svg{
    width: 20px;
    height: auto;
}

#projects .proj-info-wrapper{
    width: 100%;
    min-height: 220px;
    background: var(--primary-color);
    display: flex;
    /* align-items: flex-end; */
    padding: 20px;
    transition: all 400ms ease-in;
} 

#projects .proj-info{
    width: 100%;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#projects .proj-title{
    font-size: 25px;
    margin-bottom: 10px;
}

#projects .proj-sys{
    font-size: 20px;
}

#projects .proj-tech-wrapper{
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 15px 0 10px;
}

#projects .proj-tech-wrapper::-webkit-scrollbar {
    height: 5px;
}
  
#projects .proj-tech-wrapper::-webkit-scrollbar-track {
    background: var(--primary-color);   
    padding-top: 10px;

}

#projects .proj-tech-wrapper::-webkit-scrollbar-thumb {
    background: var(--secondary-g-color2); 
    border-radius: 20px;   
}

#projects .proj-tech-cont{
    display: flex;
    align-items: center;
    gap: 15px;
}

.proj-tech-icon{
    width: 45px;
    min-width: 45px;
    height: 45px;
    /* cursor: pointer; */
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 1px solid rgba(58, 57, 57, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.proj-tech-icon svg{
    width: 25px;
    height: auto;
}


.proj-blurred-bg, .backropNav, .seeImg{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    opacity: 0;
    transition: all 300ms ease;
    transform: scale(0);
}

.proj-blurred-bg.open{
    opacity: 1;
    transform: scale(1);
    /* align-items: flex-start; */
}

#proj-modal{
    display: flex;
    gap: 70px;
    width: 100%;
    height: 550px;
    /* background-color: #70bef5; */
    max-width: 1200px;
}

#proj-modal .proj-m-images{
    width: 65%;
}

#proj-modal .proj-m-b-img{
    width: 100%;
    max-height: 400px;
    overflow: hidden auto;
    border-radius: 15px;
}

#proj-modal .proj-m-b-img img{
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}


#proj-modal .proj-m-b-img::-webkit-scrollbar{
    width: 5px;
}
  
#proj-modal .proj-m-b-img::-webkit-scrollbar-track {
    background: var(--primary-color);   
    /* padding-top: 10px; */
    border-radius: 20px;   
}

#proj-modal .proj-m-b-img::-webkit-scrollbar-thumb {
    background: var(--secondary-g-color2); 
    border-radius: 20px;   
}

#proj-modal .proj-m-s-w{
    width: 100%;
    height: 150px;
    overflow: auto hidden;
    border-radius: 15px;
    margin-top: 5px;
    position: relative;
    transition: all 300ms ease;
    scroll-behavior: smooth;
}

#proj-modal .proj-m-s-w::-webkit-scrollbar {
    height: 0px;
}

#proj-modal .proj-m-s-img{
    position: relative;
}

#proj-modal .proj-m-s-c{
    display: flex;
    gap: 10px;
    position: relative;
    transition: all 300ms ease;
}

#proj-modal .proj-m-s-img-b{
    width: 200px;
    min-width: 200px;
    height: 150px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
}

#proj-modal .proj-m-s-img-b img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 300ms ease;
}

#proj-modal .proj-m-s-img-b:hover img{
    transform: scale(1.1);
}

#proj-modal .proj-m-s-pn{
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), rgba(0, 0, 0, 0.7));
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    border-right: 0;
    transition: all 300ms ease;
    border-radius: 15px;
}

#proj-modal .proj-m-s-pn.prev{
    left: 0;

}

#proj-modal .proj-m-s-pn.next{
    right: 0;
    background: linear-gradient(270deg, var(--primary-color), rgba(0, 0, 0, 0.7));
}

#proj-modal .proj-m-s-pn.next svg{
    transform: rotateZ(180deg);
}


#proj-modal .proj-m-s-pn-btn{
    width: 50px;
}

#proj-modal .proj-m-infos{
    width: 35%;
    overflow: hidden auto;
}

#proj-modal .proj-m-infos::-webkit-scrollbar {
    width: 0;
}

#proj-modal .proj-m-infos:hover::-webkit-scrollbar {
    width: 5px;
}

#proj-modal .proj-m-infos::-webkit-scrollbar-track {
    background: var(--primary-color);   
    padding-top: 10px;
}

#proj-modal .proj-m-infos::-webkit-scrollbar-thumb {
    background: var(--secondary-g-color2); 
    border-radius: 20px;   
}

#proj-modal .proj-m-info-b{
    margin-bottom: 20px;
}

#proj-modal .proj-m-info-b.techs .proj-m-info-b-l{
    margin-bottom: 10px;
}

#proj-modal .proj-m-info-b-t{
    font-size: 30px;
    font-weight: bold;
}

#proj-modal .proj-m-info-b-techs-w{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
}

#proj-modal .proj-m-info-ti-box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* max-width: 70px; */
}

#proj-modal .proj-m-info-ti-box p{
    margin-top: 5px;
    font-size: 14px;
}

.proj-blurred-bg .proj-m-close-btn, .backropNav-close-btn, .seeImg-close-btn{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1002;
}

.proj-blurred-bg .proj-m-close-btn svg, .backropNav-close-btn svg, .seeImg-close-btn svg{
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 300ms ease;
}

.proj-blurred-bg .proj-m-close-btn svg:hover, .backropNav-close-btn svg:hover, .seeImg-close-btn svg:hover{
    transform: scale(1.1);
    animation: rotate 1s linear infinite;
}

#projects .proj-planet{
    position: absolute;
    top: 45%;
    right: -150px;
    width: 400px;
    /* transform: rotate(310deg); */
    transition: all 300ms linear;
}

#projects .proj-planet svg{
    width: 100%;
    height: auto;
    transform: rotate(253deg);
}

#proj-loadmorebtn{
    padding: 10px 20px;
    border: 1px solid #00377d;
    background: none;
    color: white;
    border-radius: 50px;
    font-size: 18px;
    margin-top: 50px;
    cursor: pointer;
}

#proj-loadmorebtn:hover{
    background: var(--secondary-g-color);
}


.seeImg{
    opacity: 0;
    transform: scale(0);
    padding: 0;
}

.seeImg.open{
    opacity: 1;
    transform: scale(1);
}

.seeImg .seeimgcont{
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}
.seeImg img{
    max-width: 100%;
    max-height: 100%;
    border-radius: 15px;
    /* transform: scale(1); */
    /* transform-origin: top; */
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.seeImg .zoombtns{
    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 20px;
    left: 0;
    z-index: 10100;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.zoombtn{
    width: 40px;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
 }

 .zoombtn:hover{
    background: rgb(134, 134, 134);
 }

.zoombtns svg{
   width: auto;
   height: 20px;
}

/* ------------------------------Projects end ------------------------------ */

/* ------------------------------Contact start ------------------------------ */


#contact {
    width: 100%;
    /* height: 100vh; */
    padding: 100px 50px 0;
    overflow: hidden;
}

#contact .c-getintouch{
    max-width: 900px;
    margin: 50px auto 0;
}

#contact .c-getintouch .c-gt-1{
    display: flex;
    align-items: center;
    flex-direction: column;
}

#contact .c-getintouch .c-gt-1 p{
    margin-bottom: 20px;
    font-size: 30px;
    text-align: center;
}

#contact .c-getintouch .c-gt-1 button{
    background: var(--secondary-g-color);
    border: none;
    border-radius: 100px;
    font-size: 18px;
    padding: 10px 30px;
    color: white;
    cursor: pointer;
    width: 170px;
    text-wrap: nowrap;
}

#contact .c-info{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

#contact .c-icon{
    display: flex;
    align-items: center;
}

#contact .c-icon svg{
    width: 25px;
    height: auto;
}

#contact .c-info a{
    font-size: 18px;
    text-decoration: none;
    color: white;
}

#contact  .c-big-earth-w{
    display: flex;
    justify-content: center;
    position: relative;
    height: 400px;
}

#contact  .c-big-earth{
    display: flex;
    justify-content: center;
    position: absolute;
    top: 200px;
    height: 1200px;
    width: 1200px;
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 0 100px #00377d, 0 0 200px #00377d, 0 0 600px #00377d;
    transition: all 300ms linear;
}

#contact  .c-big-earth svg{
    width: 100%;
    height: 1200px;
    animation: rotate 60s linear infinite;
    transition: all 300ms linear;
}


.backropNav{
    transform: translateX(100vw);
    opacity: 1;
    transition: all 300ms ease-in-out;
    display: none;

}

.backropNav.open{
    transform: translateX(0);
    opacity: 1;
}

.backropNav-bg{
    position: absolute;
    left: 0;
    top: 0;
}

.backropNav-cont{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
    overflow-y: auto;
    height: 90vh;
}

.backropNav-cont a{
    font-size: 30px;
    width: 100%;
    color: white;
    padding: 20px;
    text-align: center;
    transition: all 500ms linear;
    z-index: 1002;
    transform: translateY(100px);
    opacity: 0;
}

.backropNav-cont a:nth-child(2){
    transition: all 500ms linear 150ms;
}
.backropNav-cont a:nth-child(3){
    transition: all 500ms linear 300ms;
}
.backropNav-cont a:nth-child(4){
    transition: all 500ms linear 450ms;
}
.backropNav-cont a:nth-child(5){
    transition: all 500ms linear 600ms;
}

.backropNav.open .backropNav-cont a{
    transform: translateY(0);
    opacity: 1;
}

.backropNav-cont a:hover{
    background: var(--secondary-g-color);
}

.backropNav-close-btn svg, .seeImg-close-btn svg{
    animation: rotate 1s linear infinite;
}



/* ------------------------------Contact end ------------------------------ */


/* ------------------------------Global start ------------------------------ */

.ldblurred{
    width: 250px !important;
    height: 250px;
    background-color: var(--secondary-color);
    position: absolute;
    border-radius: 70% 30% 46% 54% / 30% 30% 70% 70%;
    filter: blur(70px);
    opacity: 0.3;
    bottom: 0;
    right: 500px;
    animation: ldblurredchangeshape 20s linear infinite;
}

#projects .ldblurred.d1{
    top: 100px;
    left: -150px;
}




/* ------------------------------ animation class ------------------------------ */


.animateEl {
    visibility: hidden;
    transition: all 500ms ease-in-out;
    opacity: 0;
}

.animateEl.fromLeft {
    transform: translateX(-200px);
    visibility: hidden;
    opacity: 0;
}

.animateEl.fromRight {
    transform: translateX(200px);
    visibility: hidden;
    opacity: 0;
}

.animateEl.fromBottom {
    transform: translateY(100px);
    visibility: hidden;
    opacity: 0;
}

.animateEl.fromBottom200 {
    transform: translateY(200px);
    visibility: hidden;
    opacity: 0;
}
  
.animateEl.visible {
    visibility: visible;
    transform: translate(0, 0);
    opacity: 1;
}



/* ------------------------------ responsiveness ------------------------------ */

@media screen and (max-width: 1400px) {
    #home{
        padding: 100px 100px;
    }

    #about .about-content{
        position: unset;
    }

    #about .about-left-moon{
        left: -100px;
    }

    #about .about-right-moon{
        bottom: -300px;
        right: -150px;
    }

    #projects .proj-planet{
        right: -250px;
    }
}

@media screen and (max-width: 1200px) {
    #home{
        padding-top: 150px;
        height: auto;
        max-height: 100%;
    }
    #home .home-inner{
        flex-direction: column;
        align-items: center;
        gap: 100px;
    }
    #home .home-text-content{
        padding: 0;
    }
    #home .home-text-box p{
        align-items: center;
    }
    #home .home-image-content{
        margin-top: -50px;
    }

    #home .home-text-box p{
        width: 100%;
        text-align: center;
    }
    .home-text-content .greetings{
        justify-content: center;
    }
    #home .home-btns{
        width: 100%;
        justify-content: center;
    }
    #about .about-left-moon{
        width: 200px;
        top: -150px;
    }
    #about .about-right-moon{
        width: 300px;
        height: 300px;
        bottom: -250px;
    }
    #projects .projects-inner {
        max-width: 750px;
    }
    #projects .proj-cont{
        grid-template-columns: 1fr 1fr;
        place-items: center;
    }
}

@media screen and (max-width: 1000px) {
    #proj-blurred-bg{
        overflow-y: auto;
    }
    #proj-modal{
        height: 100%;
        gap: 20px;
        flex-direction: column;
        overflow-y: auto;
        border-radius: 15px;
    }

    #proj-modal .proj-m-s-w{
        height: 100px;
    }

    #proj-modal .proj-m-s-pn{
        display: none;
    }

    #proj-modal .proj-m-s-img-b{
        width: 150px;
        min-width: 150px;
        height: 100px;
    }

    #proj-modal .proj-m-b-img{
        max-height: 100% ;
    }

    #proj-modal .proj-m-images{
        width: 100%;
    }

    #proj-modal .proj-m-infos{
        width: 100%;
        overflow: unset;
    }
}

@media screen and (max-width: 850px) {
    #projects .proj-cont{
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 800px) {
    header #header-inner{
        align-items: center;
    }
    header .burgerMenu {
        display: flex;
    }
    header nav{
        display: none;
    }

    .proj-blurred-bg, .backropNav{
        display: flex;
    }

    #about .about-right-moon{
        width: 200px;
        height: 200px;
        bottom: -120px;
        right: -100px;
    }

    #skills .skill-icons-wrapper{
        grid-template-columns: repeat(5, 1fr);
    }
    #skills .skill-img-cont{
        grid-area: 4 / 3;
    }

    #projects .proj-cm{
        display: none;
    }

    #projects .proj-seemore, #projects .proj-seemore-link{
        display: flex;
    }
}


@media screen and (max-width: 750px) {
    #about .about-image-text-cont{
        flex-direction: column;
        align-items: center;
    }
    
    #about .about-left-moon{
        width: 150px;
        left: -50px;
    }

    
    #about .about-image-text-cont .box-text p{
        text-align: justify;
    }
    
    #about .about-image-text-cont .box-text h4{
        text-align: center;
    }

    #skills .skill-icons-wrapper{
        grid-template-columns: repeat(4, 1fr);
        row-gap: 30px;
    }

    #skills .skill-img-cont{
        grid-area: 5 / 2 / 5 / 4;
    }

    #projects .proj-cont{
        grid-template-columns: 1fr;
        place-items: center;
    }

    #contact  .c-big-earth{
        height: 1000px;
        width: 1000px;
    }
    
    #contact  .c-big-earth svg{
        height: 1000px;
    }
    
}

@media screen and (max-width: 600px) {
    .home-text-content .greetings{
        font-size: 55px;
    }

    .home-text-content .greetings svg{
        width: 55px;
    }
    
    .home-text-content .whom .im{
        font-size: 65px;
        display: inline-block;
        margin-right: 15px;
    }
    
    .home-text-content .name{
        font-size: 65px;
        display: inline-block;
    }

    .home-text-content .job{
        font-size: 45px;
    }

    #about .about-left-moon{
        top: -170px;
        left: -70px;
    }

    #skills .skill-icons-wrapper{
        grid-template-columns: repeat(3, 1fr);
        row-gap: 25px;
    }

    #skills .skill-img-cont{
        grid-area: 4 / 2;
    }

}

@media screen and (max-height: 500px) {
    .backropNav-cont{
        justify-content: flex-start;
    }
}

@media screen and (max-width: 500px) {
    #home{
        padding-top: 120px;
    }

    .myimage-container{
        width: 250px;
        height: 250px;
    }
    
    .home-image-content img{
        height: 300px;
    }

    .hallow{
        width: 250px;
        height: 250px;
    }


    .orbit .icon-box.left{
        left: 5px;
    }
    
    .orbit .icon-box.right{
        right: 5px;
    
    }
    
    .orbit .icon-box.top{
        left: 240px;
    }
    
    .orbit .icon-box.bottom{
        top: 265px;
    }


    .home-text-content .greetings{
        font-size: 40px;
    }

    .home-text-content .greetings svg{
        width: 40px;
    }
    
    .home-text-content .whom .im{
        font-size: 50px;
        display: inline-block;
        margin-right: 15px;
    }
    
    .home-text-content .name{
        font-size: 50px;
        line-height: 55px;
        margin-bottom: 5px;
        display: inline-block;
    }

    .home-text-content .job{
        font-size: 30px;
        display: inline-block;
    }
    #about .about-content{
        padding: 0 50px;
    }

    #about .about-right-moon{
        right: -120px;
    }

    #skills .skill-icons-wrapper{
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }

    #skills .skill-img-cont img{
        width: 150px;
        height: 150px;
    }

    #contact  .c-big-earth{
        height: 800px;
        width: 800px;
    }
    
    #contact  .c-big-earth svg{
        height: 800px;
    }
}

@media screen and (max-width: 450px) {
    #projects .proj-box{
        width: 100%;
    }
}

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

    header{
        padding: 20px 25px;
    }

    #home{
        padding-left: 50px;
        padding-right: 50px;
    }

    #home .home-btns{
        flex-direction: column;
        gap: 20px;
        transition: all 400ms ease-in-out;
    }

    #about .about-content{
        padding-top: 30px;
    }

    #about .about-left-moon{
        left: -85px;
    }
}

@keyframes hideNav {
    1%{
        transform: scale(0.5);
        transform: rotateY(0deg);
    }
    100%{
        transform: scale(0.5);
        transform: rotateZ(360deg);
    }
}

@keyframes scale {
    1%{
        transform: scale(0.5);
        transform: rotateY(0deg);
    }
    10%{
        transform: scale(1);
    }
    80%{
        transform: scale(1);
    }
    100%{
        transform: scale(0.5);
        transform: rotateZ(360deg);
    }
}

@keyframes rotate {
    from{
        transform: rotateZ(0deg);
    }

    to{
        transform: rotateZ(360deg);
    }
}

@keyframes ldblurredchangeshape {
    0%{
        bottom: 0px;
        right: 500px;
        border-radius: 13% 87% 15% 85% / 73% 69% 31% 27%;
    }
    50%{
        right: 100px;
        bottom: 150px;
        border-radius: 67% 33% 65% 35% / 73% 46% 54% 27% ;
    }
    100%{
        right: 500px;
        bottom: 0;
        border-radius: 13% 87% 15% 85% / 73% 69% 31% 27%;
    }
}

@keyframes ldblurredchangeshape2 {
    0%{
        left: -150px;
        top: 100px;
        border-radius: 13% 87% 15% 85% / 73% 69% 31% 27%;
    }
    50%{
        left: 200px;
        top: 100px;
        border-radius: 67% 33% 65% 35% / 73% 46% 54% 27% ;
    }
    100%{
        left: -150px;
        top: 100;
        border-radius: 13% 87% 15% 85% / 73% 69% 31% 27%;
    }
}





#orbit0 {
    animation-delay: 0s;
}
#pos0 {
    animation-delay: 0s;
}
#dot0 {
    animation-delay: 0s;
}
#orbit1 {
    animation-delay: -1s;
}
#pos1 {
    animation-delay: -1s;
}
#dot1 {
    animation-delay: -1s;
}
#orbit2 {
    animation-delay: -2s;
}
#pos2 {
    animation-delay: -2s;
}
#dot2 {
    animation-delay: -2s;
}

#universe {
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary-color);
}
#galaxy {
    transform: rotateX(75deg);
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
    height: 100%;
}
.circle {
    border-radius: 50%;
    border: 1px solid #eee;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    margin-left: -0.5em;
    -webkit-animation: spinner 1.5s infinite ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotateX(-75deg);
}
.circle2 {
    border-radius: 50%;
    border: 1px solid #eee;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    margin-left: -0.5em;
    -webkit-animation: spinner2 2s infinite ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotateX(-75deg);
}
.circle3 {
    border-radius: 50%;
    border: 1px solid #eee;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    margin-left: -0.5em;
    -webkit-animation: spinner3 2.5s infinite ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotateX(-75deg);
}
#orbit0, #orbit1, #orbit2 {
    transform-style: preserve-3d;
    position: absolute;
    top: 50%;
    left: 50%;
    animation-name: orbit;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    width: 8em;
    height: 8em;
    margin-top: -4em;
    margin-left: -4em;
    border-radius: 50%;
}
.pos, #pos0, #pos1, #pos2 {
    position: absolute;
    width: 2em;
    height: 2em;
    margin-left: -1em;
    margin-top: -1em;
    animation-name: invert;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    left: 50%;
    top: -1px;
}
.dot, #dot0, #dot1, #dot2 {
    background-color: #eee;
    width: 0.5em;
    height: 0.5em;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -0.25em;
    margin-left: -0.25em;
    border-radius: 50%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

 #orbit0, #orbit1, #orbit2, .pos, #pos0, #pos1, #pos2 {
    animation-duration: 3s;
}
.circle {
    font-size: 6em;
}
.circle2 {
    font-size: 5em;
}
.circle3 {
    font-size: 4em;
}
.dot, #dot0, #dot1, #dot2 {
    font-size: 0.2em;
}
@keyframes orbit {
    0% {
        transform: rotateZ(0deg);
   }
    100% {
        transform: rotateZ(-360deg);
   }
}
@keyframes invert {
    0% {
        transform: rotateX(-90deg) rotateY(360deg) rotateZ(0deg);
   }
    100% {
        transform: rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
   }
}
@keyframes spinner {
    0% {
        -webkit-transform: rotate3d(1, 0, 1, 0deg);
   }
    50% {
        -webkit-transform: rotate3d(1, 0, 1, 180deg);
   }
    100% {
        -webkit-transform: rotate3d(1, 0, 1, 360deg);
   }
}
@keyframes spinner2 {
    0% {
        -webkit-transform: rotate3d(0, 1, 1, 0deg);
   }
    50% {
        -webkit-transform: rotate3d(0, 1, 1, 180deg);
   }
    100% {
        -webkit-transform: rotate3d(0, 1, 1, 360deg);
   }
}
@keyframes spinner3 {
    0% {
        -webkit-transform: rotate3d(1, 1, 0, 0deg);
   }
    50% {
        -webkit-transform: rotate3d(1, 1, 0, 180deg);
   }
    100% {
        -webkit-transform: rotate3d(1, 1, 0, 360deg);
   }
}
