@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300&display=swap");

:root{
    --bgOrange:#e84949;
}
*{
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
    scroll-behavior: smooth;
    font-family: "Be Vietnam Pro", sans-serif;
    user-select: none;
}
#wrapper{
    /* background-image: linear-gradient(to bottom, #072142, #061c37, #07182b, #061220, #020b16); */
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 100px;
    transform-style: preserve-3d;
}

.container{
    max-width: 1200px;
    /* width: 1200px; */
    margin: 0 auto;
}

.navbar{
    backdrop-filter: blur(1px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.logo-container{
    display: flex;
    align-items: center;
}

.logo{
    max-width: 80px;
}

.logo-text{
    margin-left: -0.9rem;
    /* font-size: 28px; */
    font-size: 1.7rem;
}

.nav-items{
    display: flex;
    gap: 2rem;
    padding: 0 4rem;
}

.nav-items div{
    /* font-size: 20px; */
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: font-weight 0.2s;
}

.nav-items div a{
    color: black;
}

a{
    text-decoration: none;
}

.nav-items div:hover{
    transition: 0.8s;
    font-weight: bold;
}

.hero-section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin: 4rem auto;
    padding: 0 1rem;
    padding-bottom: 8rem;
    /* flex-wrap: wrap; */
}

.faded-text{
    color: rgb(231,231,231);
    user-select: none;
    position: absolute;
    font-size: 7rem;
    bottom: -16%;
    left: -5%;
    font-weight: 500;
    transition: all 3s;
}

.hero-section-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.hero-section-heading{
    font-size: 35px;
    font-weight: 500;
    color: #343d68;
}
.role{
    color: #4e45d5;
    font-weight: 800;
}

.hero-section-sub-heading{
    font-size: 45px;
    line-height: 45px;
}

.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;
    transition: all 0.5s;
    font-weight: 500;
    border: solid 3px transparent;
    position: relative;
    z-index: 1;
}
.btn-pink::before{
    content: "";
    position: absolute;
    background-color: #fff;
    /* background-image: linear-gradient(pink,purple); */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.8s;
}
.btn-pink:hover::before{
    transform: scaleX(1);
}
.btn-pink:hover{
    /* border: 3px solid rgb(153, 198, 6); */
    color: black;
}

#btn-bottom{
    display: none;
}

.absolute{
    position: absolute;
}

.heropic{
    width: 345px;
    height: 390px;
}

.hero-section-right{
    position: relative;
}

.user-image{
    padding: 2.5rem;
    filter: grayscale(1);
    transition: all 1s;
    animation: scaleImage 5s linear infinite;
}

.user-image img{
    z-index: -2;
}
@keyframes scaleImage{
    0%{
        filter: grayscale(0);
        transform: scale(1);
    }
    50%{
        filter: grayscale(1);
        box-shadow: 3px 3px 10px black;
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
        filter: grayscale(0);
    }
}

.icon-dots{
    z-index: 9;
    bottom: -1rem;
    right: 0;
    animation: dotsAnimation 5s infinite;
}
@keyframes dotsAnimation {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(0px);
    }
}

.icon-cube{
    z-index: 9;
    top: 0.8em;
    right: 1em;
    animation-name: cubeRotate;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
@keyframes cubeRotate {
    0%{
        transform: rotateY(0deg) translateY(0px);
    }
    50%{
        transform: rotateY(180deg) translateY(12px);
    }
    100%{
        transform: rotateY(360deg) translateY(0px);
    }
}

.icon-circle{
    z-index: 8;
    bottom: 0;
    left: 0;
    animation: shakeEffects 6s linear infinite;
}
@keyframes shakeEffects {
    0%{
        left: 0;   
        bottom: 0;
    }
    50%{
        left: 5%;
        bottom: 10%;
    }
    100%{
        left: 0;
        bottom: 0;
    }
}

.icon-zigzag{
    z-index: 8;
    top: 1.5em;
    left: -0.3em;
    animation: zigzagAnimation 5s ease-in infinite;
}
@keyframes zigzagAnimation {
    50%{
        top: 2%;
        left: 5%;
    }
}

.icon-plus{
    z-index: 9;
    top: -0.8rem;
    left: 50%;
    animation: shakeEffectsPlus 5s ease-in infinite;
}
@keyframes shakeEffectsPlus {
    50%{
        top: 3%;
        left: 48%;
    }
}

.project-section{
    background-color: rgba(231, 231, 231, 0.148);
    backdrop-filter: blur(4px);
    margin-top: 4rem;
}

.page-header{
    width: 100%;
    color: var(--bgOrange);
    font-size: 90px;
    text-align: center;
    padding-top: 30px;
}

.project-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 120px;
    /* border: 1px solid red; */
}

.project-card{
    width: 90%;
    height: 550px;
    /* background-image: url(/Images/Project/Project2.png); */
    background-size: cover;
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    position: relative;
    box-shadow: 0px 0px 40px #1f1f1f;
}

.project-card::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f1f1f9a;
    transform: scaleX(1);
    z-index: 0;
}

.project-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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: white;
    z-index: 10;
    display: none;
}

.project-number-right{
    right: -40px;
    top: 10px;
}

.project-number-left{
    left: -40px;
    top: 10px;
}

.project-content{
    position: absolute;
    display: flex;
    flex-direction: column;
    color: white;
    padding: 2em;
    bottom: 20%;
    z-index: 5;
    gap: 1em;
    transition: all 0.4s;
}

.project-content-left{
    left: 10%;
}

.project-content-right{
    right: 10%;
}

.project-skills-container{
    width: 60%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-skill{
    width: 40px;
}

.project-heading{
    z-index: 1000;
    font-size: 50px;
    font-weight: bold;
    line-height: 3rem;
}

.project-subHeading{
    width: 70%;
    font-style: italic;
    font-size: 16px;
}

.btn-grp{
    display: flex;
    gap: 0.9rem;
    align-items: center;
}

.btn-project:hover{
    border: none;
}

.icon{
    cursor: pointer;
    color: white;
    font-size: 35px;
    transition: all 0.4s;
}

.icon:hover{
    color: var(--bgOrange);
}

.project-card:hover .project-number{
    display: block;
}

.project-card:hover .project-content{
    transform: scale(1.1);
}

#project1{
    background-image: url(/Images/Project/Project1.png);
}
#project2{
    margin-left: 120px;
    background-image: url(/Images/Project/Project2.png);
}
#project3{
    background-image: url(/Images/Project/Project3.png);
}

/* Skills */

.skills-container{
    position: relative;
    display: flex;
    padding: 5rem;
    margin: 10rem auto;
    gap: 10px;
}

.skill-container-left{
    display: flex;
    width: 50%;
    flex-direction: column;
}

.skill-container-right{
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    position: relative;
    gap: 2rem;
    justify-content: center;
    z-index: 2;
}

.skill-fade-text{
    font-size: 15em;
    font-weight: bold;
    color: rgb(231, 231, 231);
    user-select: none;
    position: absolute;
    bottom: -34.5%;
    right: -7%;
    overflow-y: hidden;
}

.blob-style{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: blobAnimate 3s linear infinite;
    z-index: -1;
    filter: blur(10px);
}
@keyframes blobAnimate {
    50%{
        top: 54%;
        left: 56%;
    }
}

.skill-logo{
    width: 90px;
    transition: all 0.5s;
}

.skill-logo:hover{
    transform: scale(1.2);
}

.skill-heading{
    color: var(--bgOrange);
    font-size: 50px;
    font-weight: bold;
    line-height: 50px;
}

.caps{
    font-size: 90px;
}

.skill-subHeading{
    margin-top: 1rem;
    width: 85%;
    text-align: justify;
}

.skill-subHeading p{
    margin: 15px 0;
}

/* Contact-Us-Form */
.contactus-form-container{
    width: 100%;
    backdrop-filter: blur(4px);
    /* background-color: rgb(231, 231, 231); */
}

.contactus-heading{
    font-size: 5em;
    color: var(--bgOrange);
    padding-top: 2rem;
    display: inline-block;
    
}

.C{
    color: white;
    text-shadow: -1px 0 var(--bgOrange), 0 1px var(--bgOrange), 1px 0 var(--bgOrange), 0 -1px var(--bgOrange);
    transition: all 0.3s ease-in-out;
}

.contactus-heading:hover .C{
    color: var(--bgOrange);
}
.contactus-sub-heading{
    font-size: 3em;
    color: #343d68aa;
    text-transform: capitalize;
}

.contactus-form-container{
    position: relative;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 70%;
    margin: 2rem 5rem;
}

.formfield-container{
    width: 100%;
}

.formfield{
    width: 100%;
    height: 42px;
    padding: 0 2rem;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px #1f1f1f;
    font-weight: 500;
    border: none;
    margin-top: 27px;
}

.formfield-textarea{
    height: 200px;
    padding-top: 1rem;
}

#submit-btn{
    border: none;
    font-size: 1.4rem;
    margin: 1rem 0;
}

#submit-btn:hover{
    scale: 0.9;
}

.submit-icon{
    padding: 0 1rem;
    font-size: 1.5rem;
}

/* Footer */

.pagefoot{
    position: relative;
    background-image: linear-gradient(101deg, #072142, #8c2b7a 52%, #ff4d5a);
    margin-top: -24px;
    padding: 5rem;
    display: flex;
    flex-wrap: wrap;
}

.footer-wrapper{
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    justify-content: space-between;
    align-items: center;
}

.footer-faded-text{
    position: absolute;
    left: 0;
    bottom: 0;
    color: #535c87;
    font-size: 5em;
}

.link-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.link-wrapper div a{
    color: white;
    text-decoration: none;
    transition: all 0.6s;
}

.link-wrapper div a:hover{
    color: var(--bgOrange);
    text-decoration: line-through;
}

.link-wrapper div{
    transform: scale(1);
    transition: all 0.4s;
}
.link-wrapper div:hover{
    transform: scale(0.9);
}

.icon-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.col:hover{
    transform: scale(0.9);
    color: rgba(0, 0, 0, 0.2);
    /* text-decoration: line-through; */
    text-shadow: 0px -70px 2px #343d68aa;
}

/* Circle */
.circle{
    position: absolute;
    transform: translateY(250px) translateZ(1px);
    top: 0%;
    right: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -4;
    backdrop-filter: blur(15px);
}
.pulse{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 15vw;
    height: 15vw;
    border-radius: 50%;
    background-color: #3645593c;
}
.circle1{
    transform: scale(1.4);
}
.circle2{
    transform: scale(2);
}
.circle3{
    transform: scale(2.6);
}
.circle4{
    transform: scale(3.2);
}
.circle5{
    transform: scale(4);
}
.circle6{
    transform: scale(4.6);
}
.circle7{
    transform: scale(5.2);
}
.circle8{
    transform: scale(6);
}
.circle9{
    transform: scale(6.6);
}

.pulsecircle{
    position: sticky;
    top: 0;
    right: 0%;
    transform-style: preserve-3d;
    perspective: 100px;
    animation: move 0.8s linear infinite alternate;
}
@keyframes move {
    100%{
        transform: translate3d(5.7px,7.7px, 0px);
    }
}

@media only screen and (max-width: 1300px) {
    .footer-wrapper{
        display: none;
    }
    .pagefoot{
        padding: 7%;
        /* margin-top: 100px; */
    }
    .pagefoot::after{
        content: "Warikosailesh@gmail.com";
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.3rem;
        font-family: inherit;
        color: #e7e7e79e;
    }

    /* Contact-Us-Form */
    .contactus-form-container{
    width: 100%;
    /* background-color: rgb(231, 231, 231); */
    /* background-image: linear-gradient(101deg, #0721424c, #8c2b7a48 52%, #ff4d5959); */
    backdrop-filter: blur(6px);
    /* transform: scale(0.5); */
}

.contactus-heading{
    width: 100%;
    font-size: 40px;
    /* color: var(--bgOrange); */
    color: var(--bgOrange);
    /* padding-top: 1rem; */
    /* display: inline-block; */
    /* padding-left: 2rem; */
    text-align: center;
    padding: 15px 10px;
}

.C{
    color: var(--bgOrange);
    /* text-decoration: none; */
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
    transition: color 0.3s ease-in-out;
}

.contactus-heading:hover .C{
    color: white;
}

.contactus-sub-heading{
    width: 100%;
    font-size: 20px;
    color: #343d68aa;
    text-transform: capitalize;
    padding: 0 10px;
    text-align: center;
}


.form{
    width: 90%;
    display: flex;
    align-items: center;
}

.formfield-container{
    /* display: flex; */
    align-items: center;
    width: 90%;
}

.formfield{
    width: 90%;
}
/* Skills */
.skills-container{
    flex-direction: column;
    padding: 2rem;
    margin: 0;
    gap: 30px;
}

.skill-fade-text{
    display: none;
}
.skill-container-left{
    width: 100%;
}
.skill-heading{
    font-size: 40px;
}
.caps{
    font-size: 60px;
}
.skill-subHeading{
    width: 100%;
}
.skill-subHeading p{
    margin: 15px 0;
}
.skill-container-right{
    width: 100%;
}
.skill-logo{
    width: 50px;
}


/* Navbar */

.container{
    max-width: 100%;
}
.nav-items{
    display: none;
}

/* Herosection */

.hero-section{
    flex-direction: column;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 3rem;
    /* flex-wrap: wrap; */
}

.faded-text{
    display: none;
}

.hero-section-left{
    width: 100%;
}


.hero-section-description{
    text-align: center;
    margin: auto;
}
#btn-top{
    display: none;
}
.absolute{
    position: absolute;
}

.heropic{
    width: 345px;
    height: 390px;
}

.hero-section-right{
    margin-top: -6em;
    scale: 0.7;
}

#btn-bottom{
    margin-top: -7rem;
    display: block;
}

.page-header{
    padding-top: 30px;
    text-align: center;
    font-size: 40px;
}

.project-container{
    padding: 5px;
    margin: 10px;
    gap: 60px;
}
.project-content-left{
    left: 0;
    scale: 0.5;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;

}
.project-skills-container{
    width: 100%;
}
.project-skill{
    width: 35px;
}

.project-heading{
    font-size: 40px;
    width: 100%;
}
.project-subHeading{
    width: 100%;
}
#project2{
    margin-left: 0;
}
.project-content{
    scale: 0.5;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
}
#project4{
    margin-left: 0;
}
.project-card{
    width: 100%;
    height: 300px;
}
}
