:root{
/** Font Sizes  */
    
font-size: 62.5%;
--fs-100:1.9rem;
--fs-200:2.2rem;
--fs-300:2.8rem;
--fs-400:3.6rem;
--fs-500:5.6rem;
--fs-600:6.2rem;
/* * Colors */
--primary-color:#4fc2f7e0 ;
--secondary-color:#18b3ded7 ;
--background-color:#000C14 ; 
--txt-h-color:#e2e2e2;
--secondary-color-2: rgb(12, 22, 37);

/* --glass- */
/** Font Families */
--inter:'Inter', sans-serif;
scroll-behavior: smooth;
}

/* ! Normalize */
*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}
li{
    list-style: none;
}
a{
    color: white;
    text-decoration: none;
}
body{
    font-size: 1.6rem;
    color: white;
    background-color: #000C14;
    font-family:var(--inter);
}
/*! Styling */
.loading-sc{
    background-color: #000C14;
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 10;
    display: block;
    animation: loadingSc 1.5s forwards;
    z-index: 100;

}
@keyframes loadingSc {
    0%{
    }
    70%{
        opacity: 1;
    }
    99%{
   opacity: 0;
}
100%{
   opacity: 0;

z-index: -1;

}
}
.loading-item{
    width: 100px;
    height: 30px;
    display: block;
    z-index: 10;
    /* border: solid var(--secondary-color); */
    border-radius: 100vw;
    top: 50%;
    left: 50%;
    position: relative;
    transform: translate(-50%);
    box-shadow: 0px 0px 0px var(--primary-color);
    animation: loading 1.2s forwards;
}

@keyframes loading {
    0%{}
    100%{
        box-shadow: 0px 1px 20px var(--primary-color);
        width: 115px;
    }

    
}
.container{
    width: 120rem;
    padding: 0 5rem;
    margin: 0 auto;
}
header{
    display: flex;
    min-height: 13rem;
    max-height: 13rem;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    align-items: center;
    padding: 0 5rem;
}
header .logo{
    font-size: var(--fs-400);
    font-weight: 700;
}
.nav-container{
    position: relative;
    width: 50rem;
    
}
header nav{
    width: 100%;
    background-image: linear-gradient(145deg,rgba(255, 255, 255,.3) ,rgba(255, 255, 255,.2));
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 100px;
    padding: 0 2rem;
    max-height: 4.2rem;
   
}

.glass-f{
background-color: transparent;
background-image: linear-gradient(145deg,rgba(255, 255, 255,.3) ,rgba(255, 255, 255,.2));
backdrop-filter: blur(100px);
-webkit-backdrop-filter: blur(100px);
border: solid var(--primary-color) 1px;
}
.light-on{
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -10;
    position:absolute;
    right: 50%;
    transform: translate(50%);
    border-radius: 100px;
  box-shadow: 0 0px 1.5rem var(--primary-color);
}

header nav ul{
    position: relative;
    display: flex; 
    justify-content: space-between;



}
header nav ul li {
    font-size:var(--fs-100);
    padding: .8rem;

}
.mode{
    /* display: inline-block; */
  /* border-radius: 100vw; */
    box-shadow: 2px 2px 3rem var(--primary-color);
}
li:hover{
    font-size:2rem;
    transition: .2s;
}
.mode.glass-f{
    border: none;
border-radius: 100vw;
    background: transparent;
}
.mode i{
    font-size:3.2rem;
}
.btn-cont{
    position:relative
}


/** Landing Section */
.introduction{
    margin: 7rem auto 0 4rem;
    width: 70%;
}
.introduction .hello{
    color: var(--primary-color);
    font-size: var(--fs-400);
    margin-bottom: 2rem;
display:inline-block;
}
.introduction h1,.primary-header{
    color: var(--txt-h-color);
}
.introduction h1,h2{
    font-size: var(--fs-500);
    font-weight:700 ;
}
.introduction h2{
    color: #ccc;
}
.introduction p{
    margin:  3rem 0 ;
    width: 30ch;
    font-size: var(--fs-200);
    color: #bebebe;
}
.introduction .sudo{

}
.btn-cont{
    width: fit-content;
}
.btn{
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: var(--fs-200);
    color: white;
    font-weight: 700;
}

#about{
    display: flex;
    padding: 10rem;
}
#about img{
    width: 28%;
    height: fit-content;
    align-self: center;
    transform: translate(3.5rem,-2rem);
    border: solid;
    border-radius: 50%;
}
#projects{
    margin-top: 50px;
}
.primary-header{
    font-size: var(--fs-600);
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    text-align: center;
}
.secondary-header {
    font-size: var(--fs-300);
    font-weight: 600;
    text-align: center;
    margin: 6rem 0;
    letter-spacing: 3px;
}
#projects .projects-cont{
    display: flex;
    justify-content: center;
    gap: 3rem;
}
.project {
    background-color: var(--secondary-color-2);
    width: 32%;
    overflow: hidden;
    border-radius: 1.7rem;
}
.project:hover{
    box-shadow: 0px 0px 2rem #70c6ff67;
    transform:scale(101%);
    transition: .3s all;
}
.project > *:not(a){
    padding: 3rem;
}
.project img{
    width: 100%;
    object-fit: cover;
    min-height: 24rem;
    max-height: 24rem;
}
.project p{
    font-size: var(--fs-100);

}
.project a{
    text-decoration: underline;
    font-weight: 500;
}

.project i {
    font-size:var(--fs-500);
    padding: 1rem  3rem 2rem ;
    color: #eee241;
}
.skills-cont{
    margin-top: 4rem;
    display: flex;
    align-items: center;
}
.skills-cont span{
    margin-right: 3rem;
font-size: var(--fs-300);
}
.skills-cont .skills{
    display: flex;
    justify-content: space-between;
    width: 35%;
}
.skills i{
font-size: var(--fs-600);
}

.skills i:first-child{
    color: #f79220;
}
.skills i:nth-child(2){
    color: #41b7ee;
}
.skills i:nth-child(3){
    color: #eee241;
}
#more{
    margin-top: 15rem;
    padding: 0;
}
#hire-me{
    margin-top: 15rem;
    padding: 15rem;
    display: relative;
}
#hire-me form {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-items: center;
    gap: 3rem;
}
#hire-me input{
    font-size: var(--fs-300);
    padding: 1.8rem;
    border-radius: 100px;
    color:white ;
}
#hire-me input::placeholder{
    color: white;
}
#hire-me input:focus{
    outline: transparent;
    box-shadow: 0 0px 1.5rem var(--primary-color);
}

#hire-me input:nth-child(5){
    grid-column: span 2;
    width: 90%;
    margin: 0 auto;
}
#hire-me  .btn-cont{
    margin-top: 3rem;
    grid-column: span 2;

}
.txt-grad{
    margin-top: 10rem;
    background-image: linear-gradient(90deg,var(--primary-color),rgb(5, 36, 65));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12rem;
    font-weight: 800;
    text-align: center;
    display: block;

}
footer{
background-color: var(--secondary-color-2);
}
footer .container{
    padding: 2rem 10rem;
}
footer .fiverr{
    display: flex;
    gap: 2rem;
    font-size: var(--fs-100);
    align-items: center;
    margin-bottom: 2rem;
}
.fiverr a{
    font-weight: bolder;
    color: var(--secondary-color);
}
footer img{
    width: 3rem;

}