@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300&display=swap');
*{
    /* box-sizing: border-box; */
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Be Vietnam Pro', sans-serif;
}
:root{
    --bgOrange: #e84949;
}
#wrapper{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.container{
    width: 1200px;
    margin: 0 auto;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}
.logo{
    width: 80px;
}
.logo-container{
    display: flex;
    align-items: center;
    justify-content: baseline;
    position: relative;
}

.logo-text{
    margin-left: -1.0rem;
    font-size: 28px;
}
.nav-items{
    display: flex;
    gap: 2rem;
    padding: 0 4em;
}
.nav-items div{
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}
.nav-items div a{
    color: black;
    
}
.nav-items div:hover{
    font-weight: bold;
    transition: 0.8s;
}
a{
    text-decoration: none;
}
.hero-section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 5rem;
    margin: 4rem auto;
    padding: 0 1rem;
    padding-bottom: 8rem;
}
.faded-text{
    position: absolute;
    user-select: none;
    font-size: 7em;
    color: rgb(231, 231, 231);
    bottom: -16%;
    left: -5%;
    font-weight: bold;
    transition: all 3s;
}
.hero-section-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.hero-section-heading{
    font-size: 35px;
    color: #343d68;
    font-weight: 500;
}
.hero-section-sub-heading{
    font-size: 45px;
    line-height: 45px;
}
.role {
    color: #4e45d5;
    font-weight: 800;
}
.hero-section-description{
    margin-top: 1rem;
    width: 70%;
    font-weight: 500;
}
.btn-pink{
    background-color: var(--bgOrange);
    width: fit-content;
    color: white;
    padding: 0.8rem 2.3rem;
    box-shadow: 5px 5px 7px 0px #0000003f;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: all 0.5s;
    font-weight: 500;
    border: 3px solid transparent;
    z-index: 1;
}
.btn-pink::before{
    content: "";
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: all 0.8s;
    transform: scaleX(0);
    z-index: -1;
    transform-origin: left;

    
}
.btn-pink:hover:before{
    transform: scaleX(1);
}
.btn-pink:hover{
    color: black;
    border: 3px solid var(--bgOrange);
}
.hero-section-right{
    position: relative;
}
.absolute{
    position: absolute;
}
.user-image{
    padding: 2.5rem;
    width: 500px;
    animation: scaleImage 5s linear infinite ;
}
.user-image img{
    width: 100%;
}
@keyframes scaleImage {
    
    0%{
        transform: scale(1);
        filter: grayscale(1);
    }
    50%{
        filter: grayscale(0);
        transform: scale(0.9);
        box-shadow: 3px 3px 10px black;
    }
    100%{
        filter: grayscale(1);
        transform: scale(1);
    }
}
.icon-dots{
    z-index: 9;
    animation: dotsAnimation 5s linear infinite;
    bottom: -1rem;
    right: 0;
}
@keyframes dotsAnimation {
    0%{
        transform: translateY(0px);
    } 
    50%{
        transform: translateY(-15px);
    }   
    100%{
        transform: translateY(0px);
    }
}
.icon-cube{
    z-index: 9;
    right: 1em;
    top: -0.8em;
    animation: cubeRotate 3s linear infinite;
}
@keyframes cubeRotate {

    0%{
        transform: rotateY(0deg) translateY(0);
    }
    50%{
        transform: rotateY(180deg) translateY(-12px);
    }
    100%{
        transform: rotateY(360deg) translateY(0);

    }
}
.icon-circle{
    z-index: 9;
    bottom: 0;
    left: 0;
    animation: shakeEffect 6s linear infinite;
}
@keyframes shakeEffect {

    50%{
        left: 5%;
        bottom: 10%;
    }
      
}
.icon-zigzag{
    z-index: 9;
    top: 1.5em;
    left: -0.3em;
    animation: zigzagAnimation 5s linear infinite;
}
@keyframes zigzagAnimation {
    
    50%{
        left: 5%;
        top: 2%;
    }
      
}
.icon-plus{
    z-index: 9;
    top: -0.8rem;
    left: 50%;
    animation: shakeEffectPlus 5s ease-in infinite;
}
@keyframes shakeEffectPlus {
    50%{
        top: 3%;
        left: 48%;
    }
}
.project-section{
    background-color: rgb(231, 231, 231);
    margin-top: 4rem;
}
.page-header{
    color: var(--bgOrange);
    font-size: 90px;
    text-align: center;
    padding-top: 30px;
}
.page-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 120px;
    
}
.project-card{
    width: 90%;
    height: 540px;
    box-shadow: 0px 0px 40px #1f1f1f;
    /* background-image: url('./images/projects/Project2.png'); */
    background-size: cover;
    position: relative;
}
.project-card::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1f1f1f9a;
    transform: scale(1);
    z-index: 0;
}
.project-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #343d68, #343d68be, #343d687c);
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.4s;
    z-index: 1;
}
.project-card:hover::before{
    transform: scaleX(1);
}
.project-number{
    position: absolute;
    font-size: 200px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    z-index: 10;
}
.project-number-right{
    right: -40px;
    top: -45px;
    display: none;
}
.project-card:hover .project-number-right{
    display: block;
}
.project-number-left{
    left: -40px;
    top: -45px;
    display: none;
}
.project-card:hover .project-number-left{
    display: block;
}
.project-content{
    position: absolute;
    display: flex;
    flex-direction: column;
    color: white;
    width: 65%;
    height: 100%;
    justify-content: center;
    gap: 10px;
    left: 10rem;
    z-index: 10;
    transition: all 0.4s linear;
}
.project-card:hover .project-content{
    
    transform: scale(1.1);
}
.project-skills-container{
    width: 60%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

    
}
.project-skill{
    width: 40px;    
}
.project-heading{
    font-size: 50px;
    font-weight: bold;
    line-height: 3rem;
}
.project-sub-heading{
    width: 70%;
    font-size: 16px;
    font-style: italic;
}
.btn-grp{
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.btn-project:hover{
    border: none;
}
.icon{
    cursor: pointer;
    color: white;
    font-size: 35px;
    transition: all 0.4s;
}
.icon:hover{
    color: var(--bgOrange);

}
#project1{
    margin-left: 120px;
    /* background-image: url('./images/projects/Project1.png'); */
    /* width: 100%; */
}
#project2{
    background-image: url('./images/projects/Project2.png');
    /* width: 100%; */
}
#project3{
    margin-left: 120px;
    background-image: url('./images/projects/Project3.png');
    /* width: 100%; */
}
#project4{
    background-image: url('./images/projects/Project4.png');
    /* width: 100%; */
}
.skills-container{
    position: relative;
    display: flex;
    padding: 5rem;
    margin: 10rem auto;
    gap: 30px;
}
.skill-container-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}
.skill-container-right{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    gap: 2rem;
    justify-content: center;
}
.skill-fade-text{
    position: absolute;
    right: -25%;
    bottom: -35%;
    font-size: 15em;
    font-weight: bold;
    color: rgb(231, 231, 231);
    user-select: none;
}
.blob-style{
    position: absolute;
    align-self: center;
    transform: translateX(0) translateY(0);
    animation: blobAnimate 1.5s linear infinite;
    z-index: -2;
}
@keyframes blobAnimate {

    0%{
        transform: translateX(0) translateY(0); 
    }
    50%{
        transform: translateX(-10px) translateY(10px);
    }
    100%{
        transform: translateX(0) translateY(0);
    }
    
}
.skills-logo{
    width: 90px;
    transition: all 0.5s;
}
.skills-logo:hover{
    transform: scale(1.2);
}
.skill-heading{
    position: relative;
    z-index: -9;
    color: var(--bgOrange);
    line-height: 50px;
    font-size: 40px;
}
.caps{
    font-size: 60px;
}
.skill-subHeading{
    margin-top: 1rem;
    width: 85%;
    text-align: justify;
}
.skill-subHeading p{
    margin: 10px 0;
}
.contactus-form-container{
    width: 100%;
    background-color: rgb(231, 231, 231);
}
#submit-btn{
    
    border: none;
    font-size: 1.4rem;
    margin: 1rem 0;
}
#submit-btn:hover{
    transform: scale(0.9);
}
.submit-icon{
    padding: 0 1rem;
    font-size: 1.5rem;
}
.contactus-heading{
    padding-top: 2rem;
    font-size: 5em;
    color: var(--bgOrange);
}
.contactus-sub-heading{
    font-size: 3rem;
    text-transform: capitalize;
    color: #343d68aa
}
.contactus-form-container .container{
    display: flex;
    flex-direction: column;
}
.formfield-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    
}
.formfield{
    width: 100%;
    height: 42px;
    padding: 0 2rem;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 10px #1f1f1f;
    background: #ffffff97;
    font-weight: 500;
    margin-top: 27px;
}
.formfield-textarea {
    height: auto;
    padding-top: 1rem;
    
}
.form{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 70%;
    margin: 2rem 10rem;
 }

.contactus-form-container{
    margin-top: 25px;
    display: flex;
    
}
footer{
    background: #343d68;
    padding: 5rem;
    position: relative;
}
.footer-wrapper{
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-faded-text{
    font-size: 5em;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #535c87;
    user-select: none;
}
.link-wrapper{
    display: flex;
    
}
.link-wrapper a{
    color: white;
    text-decoration: none;
    margin: 2rem 1rem;
}
.icon-wrapper{
    display: flex;
    gap: 1rem;
}
.link-wrapper :hover,.icon-wrapper :hover{
    color: var(--bgOrange);
}
@media (max-width: 1000px){
    
}