@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Be Vietnam Pro", sans-serif;
    scroll-behavior: smooth;
}

: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;
    justify-content: baseline;
    align-items: center;
}

.logo-text {
    margin-left: -1.2rem;
    font-size: 28px;
}

.nav-items {
    display: flex;
    gap: 2rem;
}

.nav-items div {
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}

.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;
}

.faded-text {
    position: absolute;
    user-select: none;
    font-size: 7em;
    color: rgb(231, 231, 231);
    bottom: -17.5%;
    left: 5%;
    font-weight: bold;
    transition: all 3s;

}

.hero-section-left {
    width: 695px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.hero-section-heading {
    font-size: 35px;
    color: #343d68;
    font-weight: 500;
}

.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;
    padding: 0.8rem 2.3rem;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.5s;
    font-weight: 500;
    border: solid 3px transparent;
    box-shadow: 5px 5px 7px 0px #0000003f;
    position: relative;
    z-index: 1;
}

.btn-pink::before {
    content: "";
    background-color: #fff;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0px;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.8s;
    z-index: -1;
}

.btn-pink:hover::before {
    transform: scaleX(1);
}

.btn-pink:hover {
    border: solid 3px var(--bgOrange);
    color: black;
}

#btn-bottom {
    display: none;
}

.hero-section-right {
    position: relative;

}

.absolute {
    position: absolute;
}

#Lakhan {
    width: 320px;
    height: auto;
}

.user-image {

    padding: 2.5rem;
    filter: grayscale(1);
    transition: all 1s;
    animation: scaleImage 5s linear infinite;
}

.user-image img {
    z-index: -9;
}

@keyframes scaleImage {
    0% {
        filter: grayscale(0);
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        filter: grayscale(1);
        box-shadow: 3px 3px 10px black;
    }

    100% {
        transform: scale(1);
        filter: grayscale(0);
    }
}

.icon-dots {
    z-index: 9;
    bottom: -1rem;
    right: 0;
    animation-name: dotsAnimation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes dotsAnimation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.icon-cube {
    z-index: 9;
    top: -1rem;
    right: 0;
    animation-name: cubeAnimation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes cubeAnimation {
    0% {
        transform: rotateY(0deg) translateY(0px);
    }

    50% {
        transform: rotateY(180deg) translateY(-12px);
    }

    100% {
        transform: rotateY(360deg) translateY(0px);
    }
}

.icon-circle {
    z-index: 9;
    bottom: 0;
    left: 0;
    animation-name: circleAnimation;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes circleAnimation {
    50% {
        left: 5%;
        bottom: 10%;
    }
}

.icon-zigzak {
    z-index: 9;
    top: 1.5en;
    left: -0.3em;
    animation: zigzakAnimation 5s ease-in infinite;
}

@keyframes zigzakAnimation {
    50% {
        left: 5%;
        top: 2%;
    }
}

.icon-plus {
    z-index: 9;
    top: -0.8em;
    left: 50%;
    animation: shakeEffectPlus 5s ease-in infinite;
}

@keyframes shakeEffectPlus {
    50% {
        top: 3%;
        left: 48%;
    }
}

.project-section {
    background-color: rgb(231, 231, 231);
    margin: 4rem;
    margin-left: 0px;
    margin-right: 0px;
}

.page-header {
    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;
}

.project-card {
    width: 90%;
    height: 550px;
    background-image: url("/Static/Image/Project1.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 0px 0px 40px #1f1f1f;
}

.project-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1f1f1f9a;
    transform: scaleX(1);
}

.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;
    display: none;
    transition: all 0.4s;
}

.project-card:hover .project-number {
    display: block;
}

.project-number-right {
    right: -40px;
    top: -45px;
}

.project-number-left {
    left: -40px;
    top: -45px;
}

.project-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    color: white;
    padding: 2em;
    bottom: 20%;
    z-index: 5;
    gap: 1rem;
    transition: all 0.4s;
}

.project-content-left {
    left: 10%;
}

.project-content-right {
    left: 10%;
}

.project-skills-container {
    max-width: 55%;
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    transition: all 0.2s;
    border-radius: 5px;
    left: 112px;
}

.project-skill {
    width: 40px;
}

.project-heading {
    font-size: 50px;
    font-weight: bold;
    line-height: 3rem;
}

.project-subHeading {
    width: 70%;
    font-size: 16px;
    font-style: italic;
}

.btn-grp {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 20px;
    z-index: 10;
    position: relative;
}


.icon {
    cursor: pointer;
    color: white;
    font-size: 35px;
    transition: all 0.4s;
    display: inline-block;
}

.icon:hover {
    color: var(--bgOrange)
}

.project-card:hover .project-content {
    transform: scale(1.1);
}

#project1 {
    background-image: url("/Static/Image/Project1.png");
}

#project2 {
    margin-left: 120px;
    background-image: url("/Static/Image/project2.png");
}

.skills-container {
    position: relative;
    display: flex;
    padding: 5rem;
    margin: 10rem auto;
    gap: 30px;
}

.skill-container-left {
    width: 50%;
    display: flex;
    flex-direction: column;

}

.skill-container-right {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    position: relative;
    gap: 2rem;
    justify-content: center;
}

.skill-fade-text {
    position: absolute;
    font-size: 15em;
    font-size: bold;
    color: rgb(231, 231, 231);
    bottom: -34.5%;
    right: -25%;
    user-select: none;
    overflow-y: hidden;
}

.blob-style {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -5;
    transform: translate(-50%, -50%);
    animation: blobAnimate 3s linear infinite;
}

@keyframes blobAnimate {
    50% {
        top: 54%;
        left: 46%;

    }
}

.skills-logo {
    width: 90px;
    transition: all 0.5s;
}

.skills-logo:hover {
    transform: scale(1.2);
}

.skill-heading {
    font-size: 50px;
    font-style: bold;
    color: var(--bgOrange);
}

.caps {
    font-size: 90px;
}

.skill-subHeading {
    margin-top: 1rem;
    width: 85%;
    text-align: justify;
}

.skill-subHeading p {
    margin: 15px 0;
}

.contactus-form-container {
    width: 100%;
    background-color: rgb(231, 231, 231);
}

.contactus-heading {
    font-size: 5em;
    color: var(--bgOrange);
    padding-top: 2rem;
}

.contactus-sub-heading {
    font-size: 3rem;
    color: #343d68aa;
    text-transform: capitalize;
}

.contactus-form-container {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: 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: auto;
    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 {
    position: relative;
    margin-top: -1px;
    background-color: #343d68;
    padding: 5rem;

}

.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;
    user-select: none;
    font-size: 5em;
}

.link-wrapper {
    display: flex;
    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: none;
}

.icon-wrapper {
    display: flex;
    gap: 1rem;
}


@media (max-width:768px) {
    .navbar {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 1rem;
        padding: 1rem;
    }

    .logo-container {
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .logo {
        width: 60px;
    }

    .nav-items {
        font-size: 16px;
        text-align: center;
        padding: 0.5rem 0;
    }

    .nav-items div {
        font-size: 16px;
        padding: 8px 0;
        text-align: center;
    }

    .hero-section {
        flex-direction: column;
        gap: 3rem;
        padding-bottom: 4rem;
        text-align: center;
        position: relative;
    }

    #btn {
        position: absolute;
        top: 90%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 1.5rem;
    }

    .hero-section-left {
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-section-right {
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-section-heading {
        font-size: 26px;
    }

    .hero-section-sub-heading {
        font-size: 30px;
        line-height: 35px;
    }

    .hero-section-description {
        width: 90%;
        margin: 0 auto;
        font-size: 16px;
    }

    .btn-pink {
        font-size: 16px;
        padding: 0.6rem 1.8rem;
    }

    .faded-text {
        font-size: 2em;
        bottom: -13%;
        left: 7%;
    }

    #Lakhan {
        width: 200px;
    }

    .user-image {
        padding: 1rem;
    }

    .icon-dots {
        display: none;
    }

    .icon-cube {
        display: none;
    }

    .icon-circle {
        display: none;
    }

    .icon-zigzak {
        display: none;
    }

    .icon-plus {
        display: none;
    }

    .page-header {
        font-size: 35px;
        padding-top: 20px;
    }

    .project-container {
        gap: 60px;
        padding: 2rem 1rem;
    }

    .project-card {
        width: 100%;
        height: 100%;
        aspect-ratio: 16 / 10;
        background-position: center;
        background-repeat: no-repeat;
    }

    .project-card::after {
        border-radius: 10px;
    }

    .project-card::before {
        border-radius: 0px;
    }

    .project-number {
        font-size: 100px;
        top: 10px;
        left: 10px;
    }

    .project-number-left {
        left: 10px;
        right: auto;
    }

    .project-number-right {
        right: 10px;
        left: auto;
    }

    .project-content {
        padding: 1.2em;
        gap: 0.4rem;
        bottom: 5%;
        transform: scale(1);
    }

    .project-heading {
        font-size: 10px;
        line-height: 1.5rem;
    }

    .project-subHeading {
        font-size: 9px;
        width: 100%;
    }

    .project-content-left {
        left: 10%;
        top: -1%;
        padding: 1rem;

    }

    .project-skills-container {
        max-width: 80%;
        gap: 10px;
    }

    .project-skill {
        width: 20px;
        height: 20px;
    }

    .icon {
        font-size: 20px;
    }

    #project2 {
        margin-left: 0;
    }

    .btn-project {
        font-size: 12px;
        padding: 0.5rem 1.5rem;
    }

    .btn-grp {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .skills-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        gap: 2rem;
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        margin-top: auto;
    }

    .skill-container-left {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .skill-heading {
        font-size: 32px;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .caps {
        font-size: 60px;
    }

    .skill-subHeading {
        font-size: 15px;
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        text-align: justify;
        padding: 0 10px;
    }

    .skill-container-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
        max-width: 100%;
    }

    .skills-logo {
        width: 60px;
        height: auto;
    }

    .blob-style {
        width: 250px;
        height: 250px;
    }

    .skill-fade-text {
        display: none;
    }

    .skill-heading {
        text-align: center;
    }

    .heading-wrapper {
        display: inline-block;
        text-align: left;
        line-height: 1.3;
    }

    .caps {
        font-size: 60px;
    }

    .contactus-heading {
        font-size: 2em;
        text-align: center;
    }

    .contactus-sub-heading {
        font-size: 1rem;
        text-align: center;
        padding: 0 1rem;
    }

    .contactus-form-container {
        flex-direction: row;
        padding: 1rem;
    }

    .form {
        width: 100%;
        margin: 1rem 0;
        padding: 0 1rem;
        align-items: center;
    }

    .formfield {
        font-size: 16px;
        padding: 0 1rem;
        height: 30px;
    }

    .formfield-textarea {
        height: 150px;
        padding: 1rem;
    }

    #submit-btn {
        font-size: 1.1rem;
        width: fit-content;
        align-self: center;
        padding: 0.6rem 1.5rem;
    }

    .submit-icon {
        font-size: 1rem;
    }

    .footer-wrapper {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    .link-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        max-width: 90%;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .link-wrapper div a {
        font-size: 14px;

    }

    .link-wrapper div {
        text-align: center;
    }

    .icon-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        cursor: pointer;
    }

    .footer-faded-text {
        font-size: 2em;
        bottom: -10px;
        left: 10px;
    }
}