@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&family=Press+Start+2P&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: "Roboto Mono", monospace;

}
html{
    scroll-behavior: smooth;
}
html,
body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #090909;
}

nav {
    width: 100%;
    height: 8vh;
    border-bottom: 1px solid #272E3A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
    background-color: #09090999;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    position: fixed;
    top: 0;
    z-index: 3;

}

.menu-ul {
    display: flex;
    align-items: center;
    column-gap: 4vw;
    height: 8vh;
    /* background-color: rgb(20, 78, 78); */
}

.menu-ul li {
    list-style-type: none;
    transition: all .2s;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    z-index: 2;

}

.menu-ul li::before {
    content: '';
    width: 100%;
    height: 9px;
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: rgb(255, 255, 255);
    filter: blur(22px);
    inset: auto 0% 18px;
    opacity: 0;
    transition: all .5s;
}

.menu-ul li::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: white;
    top: 95%;
    left: 0;
    position: absolute;
    opacity: 0;
    transition: all .5s;
}

.menu-ul li:hover::after {
    opacity: 1;
}

.menu-ul li:hover::before {
    opacity: 1;
}

nav ul li.active::after {
    opacity: 1;
}

nav ul li.active::before {
    opacity: 1;
}

.menu-icon{
    font-size: 28px;
    display: none;
}
.menu-ul li a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    font-family: "Roboto Mono", monospace;
    text-transform: uppercase;
    color: #F4F4F4;
}

.logo {
    width: 5%;
    /* background-color: red; */
    cursor: pointer;
}

.logo-h1 {
    font-family: "Roboto Mono", monospace;
    font-weight: 600;
    text-align: center;
}

.logo-para {
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    text-align: center;
}

.contact-btn {
    padding: 6px 15px;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 20px;
    border: 1px solid white;
    cursor: pointer;
    transition: background-color .3s;
    position: relative;

}

.contact-btn::after {
    content: '';
    width: 120%;
    height: 130%;
    background-color: #5d0781;
    filter: blur(20px);
    top: -5%;
    left: -13%;
    position: absolute;
    z-index: -1;
    transition: all .5s;
    opacity: 0;
}

.contact-btn:hover::after {
    opacity: 1;
}

.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* z-index: -1; */
    margin-top: 8vh;
}

.hero-bg {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.hero-img {
    animation: image-animate 5s ease-out infinite alternate;
    width: 550px;
    z-index: -1;
    position: absolute;
    left: calc(50% - 275px);
    top: calc(50% - 300px);
}

.hero-text {
    /* background-color: red; */
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    height: 70%;
    row-gap: 12vh;
    padding: 0 3.5vw;
    /* background-color: red; */
    margin-bottom: 5vh;
    pointer-events: none;
}

.hero-text h1 {
    font-family: "Press Start 2P", system-ui;
    font-size: 12vh;
    text-transform: uppercase;
    line-height: 1.2;

}

.hero-txt-2 {
    align-self: flex-start;
}

.hero-txt-3 {
    color: #ffffff;
}

.hero-txt-4 {
    align-self: flex-end;
    color: transparent;
    margin-top: 20px;
    -webkit-text-stroke: 1px white;
}

.welcome-txt {
    position: absolute;
    top: 9%;
    left: 4%;
    font-family: "Kode Mono", monospace;
    text-transform: uppercase;
    font-size: 18px;
}

.web-txt {
    position: absolute;
    top: 30%;
    right: 3%;
    font-family: "Kode Mono", monospace;
    text-transform: uppercase;
    font-size: 18px;
}

.portfolio-txt {
    position: absolute;
    right: 4%;
    bottom: 17%;
    font-family: "Kode Mono", monospace;
    text-transform: uppercase;
    font-size: 18px;
}

.cursor {
    height: 300px;
    width: 300px;
    background-color: red;
    border-radius: 50%;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    animation: bg-animate 4s linear infinite alternate;
    filter: blur(100px);
    opacity: 0;
}

@keyframes bg-animate {
    0% {
        background-color: #5d0781;
    }

    50% {
        background-color: rgb(255, 148, 164);
    }

    100% {
        background-color: purple;
    }
}

@keyframes image-animate {
    0% {
        transform: translateX(0) translateY(0) rotate(0);
    }

    50% {
        transform: translateX(20px) rotate(3deg);
    }

    100% {
        transform: translateY(10px) rotate(-2deg);
    }
}


.short-bio {
    width: 100%;
    height: 40vh;
    padding: 6vh 0;
    background-color: #090909;
    display: flex;
    align-items: center;
    justify-content: center;
}

.short-bio h2 {
    width: 70%;
    text-align: center;
    color: #999999;
    font-weight: 400;
}

.services {
    width: 100%;
    min-height: 100vh;
    padding-top: 7vh;
    /* background-color: red; */

}

.service-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10vh;
    row-gap: 5vh;
    padding: 0 4vw;
}

.service-div {
    width: 100%;
    height: auto;
    text-align: center;
    border: 1px solid #272E3A;
    border-radius: 30px;
    padding: 50px 0;
    cursor: pointer;
    position: relative;
    background-image: none;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 50px;
    transition: all .2s;

}

.service-div::after {
    content: '';
    width: 100%;
    height: 80%;
    background: linear-gradient(to left, #5f175c, rgb(184, 57, 78));
    top: 12%;
    left: 0%;
    position: absolute;
    z-index: -1;
    filter: blur(30px);
    border-radius: 60%;
    opacity: 0;
    transition: all .5s;
}

.service-div:hover::after {
    opacity: 0.65;
}

.service-div h1 {
    font-size: 50px;
    font-family: "Press Start 2P", system-ui;
    color: #999999;
    transition: all .4s;

}

.services h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    color: #F4F4F4;
    font-family: "Kode Mono", monospace;
}

.service-description {
    margin-top: 6px;
    display: none;
    opacity: 0;
    transition: all .2s;
    width: 65%;
    font-size: 20px;
}

.projects-div {
    width: 100%;
    min-height: 100vh;
    padding: 4vh 5vw;
    background-color: #090909;
}

.project-head {
    width: 100%;
    /* background-color: red; */
    margin-top: 6vh;
    padding: 0 1vw;
}

.project-head h2 {
    font-size: 18px;
    font-family: "Kode Mono", monospace;
}

.project-head h1,
.project-head h1 span {
    font-size: 8vh;
    font-family: "Press Start 2P", system-ui;
    line-height: 1.3;
    margin-top: 3vh;
}

.project-head h1 span {
    color: #6f049c;
}

.project-mockups-div {
    width: 100%;
    border: 1px solid #272E3A;
    border-radius: 30px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.sec1,
.sec2 {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.sec2 h2 {
    padding: 10px 25px;
    border-radius: 50px;
    background-color: #6f049c;
    font-weight: 400;
}

.project {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2vh 1vw;
    border-bottom: 1px solid #272E3A;
    cursor: pointer;
    background-color: #090909;
}

.sec1 i {
    font-size: 40px;
    color: #6f049c;
}

.sec1 {
    position: relative;
    z-index: 2;

}

.sec1::after {
    content: '';
    width: 120%;
    height: 110%;
    background-color: #6e049c9c;
    position: absolute;
    top: 0;
    left: -2%;
    z-index: -1;
    filter: blur(25px);
    opacity: 0;
    transition: all .3s;
}

.project:hover .sec1::after {
    opacity: 1;
}

.sec1 h2 {
    font-weight: 500;
    text-transform: uppercase;
}

.open-up-div {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 40px;
    overflow: hidden;
    will-change: height;
}

.images {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.images img {
    width: 45%;
}

.section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-bottom-div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
}

.project-bottom-div p {
    width: 50%;
}

.project-bottom-div h3 {
    cursor: pointer;
    color: #E32B97;
    transition: all .2s;
}

.project-bottom-div h3:hover i {
    transform: scale(2);
}

.perks-div-container {
    width: 100%;
    min-height: 100vh;
    margin-top: 12vh;
    background-image: url(assets/grid.svg);
    background-position: center;
    padding: 10vh 0;
    padding-bottom: 12vh;
    position: relative;
    z-index: 1;
}


.moving-div-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    row-gap: 10vh;
    pointer-events: none;
}

.moving-div1,
.moving-div2 {
    width: 100%;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    position: relative;
}

.moving-div,
.moving-marquee {
    display: flex;
    white-space: nowrap;
    column-gap: 100px;
    flex-shrink: 0;
    min-width: 100%;
    animation: marquee-left 30s linear infinite;
}

.moving-marquee {
    animation: marquee-right 30s linear infinite;
}

/* Duplicating content for seamless effect */
.moving-div::after,
.moving-marquee::after {
    content: "";
    display: flex;
    white-space: nowrap;
    column-gap: 40px;
}

.moving-div h1,
.moving-marquee h1 {
    font-size: 100px;
    font-family: "Press Start 2P", system-ui;
}

.moving-div h1 span,
.moving-marquee h1 span {
    font-size: 100px;
    font-family: "Press Start 2P", system-ui;
    color: transparent;
    -webkit-text-stroke: 1px white;
}

@keyframes marquee-left {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

.perk-cursor {
    height: 300px;
    width: 300px;
    background-color: red;
    border-radius: 50%;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    animation: bg-animate 4s linear infinite alternate;
    filter: blur(100px);
    opacity: 0;
    pointer-events: none;
}

.perk-txt {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 10vw;
    padding-left: 12vw;
    margin-top: 20vh;
    position: relative;
    /* background-color: red; */
}

.perk-txt h1 {
    font-size: 55px;
    text-transform: uppercase;
    font-weight: 500;
    pointer-events: none;
    line-height: 1.6;
}

.perk-txt h1 span {
    color: #6F049C;
}

.arrow-div {
    position: absolute;
}

.arrow-animate {
    top: 0;
    left: 12%;
    background-color: rgba(0, 0, 255, 0.712);
    padding: 5px 10px;
    border: 2px solid white;
    border-radius: 2px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    animation: arrow-animation 2.5s ease-in infinite alternate;

}

.arrow-name {
    top: 0;
    left: 60%;
    background-color: #5d0781;
    padding: 5px 10px;
    border: 2px solid white;
    border-radius: 2px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    animation: arrow-animation 1.5s ease-in infinite alternate;

}

.arrow-optimize {
    top: 35%;
    left: 85%;
    background-color: #525D6F;
    padding: 5px 10px;
    border: 2px solid white;
    border-radius: 2px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    animation: arrow-animation 2s ease-in infinite alternate;

}

.arrow-perfect {
    bottom: 2%;
    left: 20%;
    background-color: #700000;
    padding: 5px 10px;
    border: 2px solid white;
    border-radius: 2px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    animation: arrow-animation 2s ease-in infinite alternate;
}

@keyframes arrow-animation {
    0% {
        transform: translateX(20px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateX(-5px);
    }
}


.cool-numbers-div {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    padding: 4vh 2vw;
    margin-top: 7vh;
    row-gap: 15px;
}

.cool-numbers-div h1 {
    font-size: 16px;
    font-family: "Kode Mono", monospace;
    text-transform: uppercase;

}

.cards {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    column-gap: 25px;
    padding: 4vh 3vw;
}

.card {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 20px;
    position: relative;
    border-radius: 10px;
    border: 1px solid white;
    overflow: hidden;
}

.card1 {
    border: 1px solid #2A1FFF;
}

.top-txt {
    align-self: flex-end;
}

.top-txt h1 {
    font-size: 265px;
    font-family: "Press Start 2P", system-ui;
}

.plus-txt-card1 h1 {
    color: #2A1FFF;
}

.nmbr-txt {
    font-size: 200px !important;
    font-family: "Press Start 2P", system-ui !important;
}

.number-txt-card1 {
    color: #2A1FFF;
}

.sub-heading-card1 {
    font-size: 16px !important;
    font-family: "Kode Mono", monospace !important;
    color: #2A1FFF;
}

.heading-card1 {
    font-size: 24px !important;
    font-family: "Roboto Mono", monospace !important;
    line-height: 1.5;
    font-weight: 500 !important;
    width: 100%;
    padding: 25px;
    color: #FAFAFA;

}

.glow-1 {
    position: absolute;
    top: 20%;
    left: 25%;
    background-color: #2a1fff;
    height: 80%;
    width: 50%;
    filter: blur(140px);
    z-index: -1;
}



.card2 {
    border: 1px solid #F02D9F;
}

.top-txt {
    align-self: flex-end;
}

.top-txt h1 {
    font-size: 265px;
    font-family: "Press Start 2P", system-ui;
}

.plus-txt-card2 h1 {
    color: #F02D9F;
}

.nmbr-txt {
    font-size: 200px !important;
    font-family: "Press Start 2P", system-ui !important;
}

.number-txt-card2 {
    color: #F02D9F;
}

.sub-heading-card2 {
    font-size: 16px !important;
    font-family: "Kode Mono", monospace !important;
    color: #F02D9F;
}

.heading-card2 {
    font-size: 24px !important;
    font-family: "Roboto Mono", monospace !important;
    line-height: 1.5;
    font-weight: 500 !important;
    width: 100%;
    padding: 25px;
    color: #FAFAFA;

}

.glow-2 {
    position: absolute;
    top: 20%;
    left: 25%;
    background-color: #F02D9F;
    height: 80%;
    width: 50%;
    filter: blur(140px);
    z-index: -1;
}



.card3 {
    border: 1px solid #1FFF6B;
}

.top-txt {
    align-self: flex-end;
}

.top-txt h1 {
    font-size: 265px;
    font-family: "Press Start 2P", system-ui;
}

.plus-txt-card3 h1 {
    color: #1FFF6B;
}

.nmbr-txt {
    font-size: 200px !important;
    font-family: "Press Start 2P", system-ui !important;
}

.number-txt-card3 {
    color: #1FFF6B;
}

.sub-heading-card3 {
    font-size: 16px !important;
    font-family: "Kode Mono", monospace !important;
    color: #1FFF6B;
}

.heading-card3 {
    font-size: 24px !important;
    font-family: "Roboto Mono", monospace !important;
    line-height: 1.5;
    font-weight: 500 !important;
    width: 100%;
    padding: 25px;
    color: #FAFAFA;

}

.glow-3 {
    position: absolute;
    top: 20%;
    left: 25%;
    background-color: #1FFF6B;
    height: 80%;
    width: 50%;
    filter: blur(140px);
    z-index: -1;
}

.time-div {
    width: 100%;
    height: 100vh;
    padding: 5vh;
}

.clock {
    border: 1px solid #525D6F;
    height: 100%;
    width: 100%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 10vh;
    position: relative;
}

.clock>h1 {
    font-size: 16px;
    font-family: "Kode Mono", monospace;
    text-transform: uppercase;
    text-align: center;
    /* margin-bottom: 50px; */
}

.info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1vw;
    text-align: center;
}

.info h1 {
    font-size: 65px;
    text-transform: uppercase;
    font-weight: 400;
    flex: 1;
    text-align: center;
}

#clock {
    font-size: 160px;
    font-family: "Press Start 2P", system-ui;
    color: #d573ff;
    transition: all .2s;
    position: relative;
}

.gmt {
    position: absolute;
    left: 70%;
    top: 37%;
}

.looking-txt {
    font-size: 65px;
    text-transform: uppercase;
    text-align: center;
    width: 90%;
}

.clock-glow {
    position: absolute;
    height: 70%;
    width: 70%;
    background-color: #69158de8;
    top: 15%;
    left: 15%;
    filter: blur(150px);
    z-index: -1;
}

.form-container {
    width: 100%;
    min-height: 100vh;
    padding: 5vh 4vw;
    margin-top: 6vh;
}

.form-container h1 {
    font-size: 70px;
    font-family: "Press Start 2P", system-ui;
    line-height: 1.3;
    margin-bottom: 40px;

}

.form-container h1 span {
    font-size: 75px;
    font-family: "Press Start 2P", system-ui;
    color: #5d0781;
}

.form {
    width: 80%;
    height: 100vh;
    border: 1px solid #272E3A;
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.form form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 50px;
    width: 100%;
    padding: 30px;
}

form div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 10px;
}

.form input {
    flex: 1;
    width: 100%;
    background-color: transparent;
    border: 1px solid #272E3A;
    padding: 20px 40px;
    border-radius: 20px;
    font-size: 18px;
}

.form input:focus {
    border-color: #cf5fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.2);
    transition: all 0.3s ease;
}

form label {
    text-align: left;
    align-self: flex-start;
    width: 100%;
    margin-bottom: 0.5rem;
    padding-left: 20px;
    font-size: 18px;
    color: #FAFAFA;

}

.form textarea {
    width: 100%;
    height: 400px;
    /* Fixed height in pixels */
    background-color: transparent;
    border: 1px solid #272E3A;
    padding: 20px 40px;
    border-radius: 20px;
    font-size: 18px;
    resize: none;
}

.form textarea:focus {
    border-color: #cf5fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.2);
    transition: all 0.3s ease;
}

.form button {
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 22px;
    border: 1px solid #272E3A;
    padding: 20px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgb(175, 99, 112), #5d0781, purple);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.form button:hover::before {
    opacity: 1;
}

.footer {
    width: 100%;
    height: 90vh;
    margin-top: 20vh;
    background-color: #5d0781;
    padding: 7vh 5vw;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 12vh;
    position: relative;
}

.footer-txt h1 {
    font-size: 80px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1;
}

.footer-links {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 10vw;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
}

.external {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
}

.menu > h2,
.external > h2,
.contact > h2:first-child {
    font-family: "Kode Mono", monospace;
    font-size: 16px;
    text-transform: uppercase;
}

.footer-img{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}
.menu-div{
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: black;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateX(-100%);
}
.menu-div ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 20px;
}
.menu-div ul li{
    list-style-type: none;
}
.menu-div ul li a{
    /* text-decoration: none; */
    font-size: 40px;
    text-align: center;
}
.menu-div i{
    font-size: 22px;
}
.top-menu-div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    /* background-color: red; */
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.menu-logo{
    width: 30% !important;
}














/* hero Page Responsive  ************************************* */


@media (max-width: 576px) {
    
    .web-wrapper{
        overflow-x: hidden;
    }
    .cursor, .perk-cursor{
        display: none;
    }
    .menu-ul {
        display: none;
    }

    .logo {
        width: 25%;
        /* background-color: red; */
        cursor: pointer;
    }
    .menu-icon{
        display: block;
    }
    nav {
        width: 100vw;
    }

    .contact-btn {
        display: none;
    }

    .hero {
        height: 100vh;
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 8vh;
    }

    .hero-bg {
        position: absolute;
        z-index: -1;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }


    .hero-img {
        animation: image-animate 5s ease-out infinite alternate;
        width: 350px;
        z-index: -1;
        position: absolute;
        left: calc(50% - 175px);
        top: calc(50% - 200px);
    }

    .hero-text {
        /* background-color: red; */
        width: 100vw;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        row-gap: 6vh;
        padding: 0 3vw;
        /* background-color: red; */
        margin-bottom: 35vh;
        pointer-events: none;
    }

    .hero-text h1 {
        font-family: "Press Start 2P", system-ui;
        font-size: 4.5vh;
        text-transform: uppercase;
        line-height: 1;

    }

    .hero-txt-1 {
        align-self: flex-start;
    }

    .hero-txt-2 {
        align-self: flex-start;
    }

    .hero-txt-4 {
        align-self: flex-start;
        color: transparent;
        margin-top: 0px;
        -webkit-text-stroke: 2px white;
    }

    .welcome-txt {
        position: absolute;
        top: 10%;
        left: 4%;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
        font-size: 15px;

    }

    .web-txt {
        position: absolute;
        top: 90%;
        left: 5%;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
        font-size: 15px;
    }

    .portfolio-txt {
        position: absolute;
        right: 4%;
        bottom: 17%;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
        font-size: 15px;
    }



    /* Service page Responsive */

    .short-bio {
        width: 100%;
        height: 50vh;
        padding: 4vh 0;
        background-color: #090909;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .short-bio h2 {
        width: 90%;
        text-align: center;
        color: #999999;
        font-weight: 400;
        font-size: 17px;
    }

    .services {
        width: 100%;
        min-height: 100vh;
        padding-top: 7vh;
        /* background-color: red; */

    }

    .service-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 10vh;
        row-gap: 5vh;
        padding: 0 4vw;
    }

    .service-div {
        width: 100%;
        height: auto;
        text-align: center;
        border: 1px solid #272E3A;
        border-radius: 30px;
        padding: 40px 0;
        cursor: pointer;
        position: relative;
        background-image: none;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 50px;
        transition: all .2s;

    }

    .service-div::after {
        content: '';
        width: 100%;
        height: 80%;
        background: linear-gradient(to left, #5f175c, rgb(184, 57, 78));
        top: 12%;
        left: 0%;
        position: absolute;
        z-index: -1;
        filter: blur(30px);
        border-radius: 60%;
        opacity: 0;
        transition: all .5s;
    }

    .service-div:hover::after {
        opacity: 0.65;
    }

    .service-div h1 {
        font-size: 15px;
        font-family: "Press Start 2P", system-ui;
        color: #999999;
        transition: all .4s;
        line-height: 1.24;

    }

    .services h2 {
        text-align: center;
        text-transform: uppercase;
        font-size: 16px;
    }

    .service-description {
        margin-top: 4px;
        display: none;
        opacity: 0;
        transition: all .2s;
        width: 90%;
        font-size: 20px;
    }


    /* Projects Div Responsive */

    .projects-div {
        width: 100%;
        min-height: 100vh;
        padding: 4vh 3vw;
    }

    .project-head {
        width: 100%;
        /* background-color: red; */
        margin-top: 6vh;
        padding: 0 1vw;
    }

    .project-head h2 {
        font-size: 15px;
        font-family: "Kode Mono", monospace;
    }

    .project-head h1,
    .project-head h1 span {
        font-size: 4.5vh;
        font-family: "Press Start 2P", system-ui;
        line-height: 1.3;
        margin-top: 3vh;
    }

    .project-head h1 span {
        color: #6f049c;
    }

    .project-mockups-div {
        width: 100%;
        border: 1px solid #272E3A;
        border-radius: 30px;
        margin-top: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 20px;
    }

    .sec1,
    .sec2 {
        display: flex;
        align-items: center;
        column-gap: 10px;
    }

    .sec2 h2 {
        padding: 5px 15px;
        border-radius: 50px;
        background-color: #6f049c;
        font-weight: 400;
        font-size: 15px;
    }

    .sec2 {
        display: flex;
        flex-wrap: wrap;
        row-gap: 12px;
    }

    .project {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 2vh 1vw;
        border-bottom: 1px solid #272E3A;
        cursor: pointer;
    }

    .sec1 i {
        font-size: 30px;
        color: #6f049c;
    }

    .sec1 {
        position: relative;

    }

    .sec1::after {
        content: '';
        width: 120%;
        height: 110%;
        background-color: #6e049c9c;
        position: absolute;
        top: 0;
        left: -2%;
        z-index: -1;
        filter: blur(25px);
        opacity: 0;
        transition: all .3s;
    }

    .project:hover .sec1::after {
        opacity: 1;
    }

    .sec1 h2 {
        font-weight: 500;
        text-transform: uppercase;
        font-size: 15px;
    }

    .open-up-div {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 40px;
        display: none;

    }

    .images {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }

    .images img {
        width: 48%;
        height: 100%;
        object-fit: contain;
    }

    .section {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        row-gap: 10px;
    }

    .project-bottom-div {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 20px 10px;
        flex-direction: column;
        row-gap: 12px;
    }

    .project-bottom-div p {
        width: 100%;
    }

    .project-bottom-div h3 {
        cursor: pointer;
        color: #E32B97;
        transition: all .2s;
    }

    /* // perks div container responsive */
    .perks-div-container {
        width: 100%;
        min-height: 100vh;
        margin-top: 3vh;
        background-image: url(assets/grid.svg);
        background-position: center;
        padding: 10vh 0;
        padding-bottom: 12vh;
        position: relative;
        z-index: 1;
    }
    
    
    .moving-div-container {
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        row-gap: 10vh;
        pointer-events: none;
    }
    
    .moving-div1,
    .moving-div2 {
        width: 100%;
        overflow: hidden;
        display: flex;
        white-space: nowrap;
        position: relative;
    }
    
    .moving-div,
    .moving-marquee {
        display: flex;
        white-space: nowrap;
        column-gap: 30px;
        flex-shrink: 0;
        min-width: 100%;
        animation: marquee-left 30s linear infinite;
    }
    
    .moving-marquee {
        animation: marquee-right 30s linear infinite;
    }
    
    /* Duplicating content for seamless effect */
    .moving-div::after,
    .moving-marquee::after {
        content: "";
        display: flex;
        white-space: nowrap;
        column-gap: 40px;
    }
    
    .moving-div h1,
    .moving-marquee h1 {
        font-size: 35px;
        font-family: "Press Start 2P", system-ui;
    }
    
    .moving-div h1 span,
    .moving-marquee h1 span {
        font-size: 35px;
        font-family: "Press Start 2P", system-ui;
        color: transparent;
        -webkit-text-stroke: 1px white;
    }
    
    .perk-cursor {
        height: 300px;
        width: 300px;
        background-color: red;
        border-radius: 50%;
        position: fixed;
        z-index: -1;
        top: 0;
        left: 0;
        animation: bg-animate 4s linear infinite alternate;
        filter: blur(100px);
        opacity: 0;
        pointer-events: none;
    }
    
    .perk-txt {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5vh 2vw;
        padding-left: 5vw;
        margin-top: 20vh;
        position: relative;
        /* background-color: red; */
    }
    
    .perk-txt h1 {
        font-size: 30px;
        text-transform: uppercase;
        font-weight: 500;
        pointer-events: none;
        line-height: 1.6;
    }
    
    .perk-txt h1 span {
        color: #6F049C;
    }
    
    .arrow-animate {
        top: 0;
        left: 5%;
        font-size: 14px;
    
    }
    
    .arrow-name {
        top: 0;
        left: 50%;
        font-size: 14px;
    
    }
    
    .arrow-optimize {
        position: absolute;
        top: -10%;
        left: 30%;
        font-size: 14px;
    
    }
    
    .arrow-perfect {
        bottom: 2%;
        left: 20%;
        font-size: 14px;
    }




    /* // cool-numbers-responsive */


    .cool-numbers-div {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        padding: 4vh 0vw;
        margin-top: 7vh;
        row-gap: 80px;
    }
    
    .cool-numbers-div h1 {
        font-size: 14px;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
    
    }
    
    .cards {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        row-gap: 40px;
        padding: 4vh 3vw;
    }
    
    .card {
        width: 100%;
        height: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 20px;
        position: relative;
        border-radius: 10px;
        border: 1px solid white;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .card1 {
        border: 1px solid #2A1FFF;
    }
    
    .top-txt {
        align-self: flex-end;
    }
    
    .top-txt h1 {
        font-size: 20px;
        font-family: "Press Start 2P", system-ui;
    }
    
    .plus-txt-card1 h1 {
        color: #2A1FFF;
    }
    
    .nmbr-txt {
        font-size: 180px !important;
        font-family: "Press Start 2P", system-ui !important;
    }
    
    .number-txt-card1 {
        color: #2A1FFF;
    }
    
    .sub-heading-card1 {
        font-size: 16px !important;
    }
    
    .heading-card1 {
        font-size: 20px !important;

    
    }
    
    
    
    .card2 {
        border: 1px solid #F02D9F;
    }
    
    .top-txt {
        align-self: flex-end;
    }
    
    .top-txt h1 {
        font-size: 265px;
        font-family: "Press Start 2P", system-ui;
    }
    
    .plus-txt-card2 h1 {
        color: #F02D9F;
    }
    
    .nmbr-txt {
        font-size: 200px !important;
        font-family: "Press Start 2P", system-ui !important;
    }
    
    .number-txt-card2 {
        color: #F02D9F;
    }
    
    .sub-heading-card2 {
        font-size: 16px !important;
        font-family: "Kode Mono", monospace !important;
        color: #F02D9F;
    }
    
    .heading-card2 {
        font-size: 20px !important;
        font-family: "Roboto Mono", monospace !important;
        line-height: 1.5;
        font-weight: 500 !important;
        width: 100%;
        padding: 25px;
        color: #FAFAFA;
    
    }
    
    .card3 {
        border: 1px solid #1FFF6B;
    }
    
    .top-txt {
        align-self: flex-end;
    }
    
    .top-txt h1 {
        font-size: 170px;
        font-family: "Press Start 2P", system-ui;
    }
    
    .nmbr-txt {
        font-size: 120px !important;
        font-family: "Press Start 2P", system-ui !important;
    }

    
    .sub-heading-card3 {
        font-size: 16px !important;
    }
    
    .heading-card3 {
        font-size: 20px !important;
    
    }




    .time-div {
        width: 100%;
        min-height: 100vh;
        padding: 2vh 1vw;
        margin-top: 5vh;
    }
    
    .clock {
        border: 1px solid #525D6F;
        height: 100%;
        width: 100%;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 10vh;
        position: relative;
    }
    
    .clock>h1 {
        font-size: 16px;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
        text-align: center;
    }
    
    .info {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        padding: 0 1vw;
        text-align: center;
        row-gap: 20px;
    }
    
    .info h1 {
        font-size: 35px;
        text-transform: uppercase;
        font-weight: 400;
        flex: 1;
        text-align: center;
    }
    
    #clock {
        font-size: 50px;
        font-family: "Press Start 2P", system-ui;
        color: #d573ff;
        transition: all .2s;
        position: relative;
        width: 100%;
        text-align: center;
    }
    
    .gmt {
        position: absolute;
        left: 63%;
        top: 49%;
        font-size: 12px;
    }
    
    .looking-txt {
        font-size: 30px;
        text-transform: uppercase;
        text-align: center;
        width: 90%;
    }
    
    .clock-glow {
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: #69158de8;
        top: 0;
        left: 0%;
        filter: blur(180px);
        z-index: -1;
    }




    .form-container {
        width: 100%;
        min-height: 100vh;
        padding: 5vh 4vw;
        margin-top: 6vh;
    }
    
    .form-container h1 {
        font-size: 4.5vh;
        font-family: "Press Start 2P", system-ui;
        line-height: 1.3;
        margin-bottom: 40px;
    
    }
    
    .form-container h1 span {
        font-size: 4vh;
        font-family: "Press Start 2P", system-ui;
        color: #5d0781;
    }
    
    .form {
        width: 100%;
        min-height: 100vh;
        border: 1px solid #272E3A;
        border-radius: 20px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
    }
    
    .form form {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        row-gap: 50px;
        width: 100%;
        padding: 30px;
    }
    
    form div {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 10px;
    }
    
    .form input {
        flex: 1;
        width: 100%;
        background-color: transparent;
        border: 1px solid #272E3A;
        padding: 20px 40px;
        border-radius: 20px;
        font-size: 18px;
    }
    
    .form input:focus {
        border-color: #cf5fff;
        outline: none;
        box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    form label {
        text-align: left;
        align-self: flex-start;
        width: 100%;
        margin-bottom: 0.5rem;
        padding-left: 20px;
        font-size: 18px;
        color: #FAFAFA;
    
    }
    
    .form textarea {
        width: 100%;
        height: 200px;
    }
    
    
    .form button {
        width: 100%;
        background-color: transparent;
        border: none;
        outline: none;
        font-size: 20px;
        border: 1px solid #272E3A;
        padding: 15px;
        border-radius: 50px;
        cursor: pointer;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }



    .footer {
        width: 100%;
        height: auto;
        margin-top: 20vh;
        background-color: #5d0781;
        padding: 7vh 5vw;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        row-gap: 10vh;
        position: relative;
    }
    
    .footer-txt h1 {
        font-size: 29px;
        text-transform: uppercase;
        font-weight: 400;
        line-height: 1;
    }
    
    .footer-links {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 10vw;
        flex-wrap: wrap;
    }
    .footer-links a h2{
        font-size: 16px;
    }
    .menu {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 30px;
    }
    
    .external {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        row-gap: 30px; 
    }
    
    .contact {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        row-gap: 30px;
    }
    
    .menu > h2,
    .external > h2,
    .contact > h2:first-child {
        font-family: "Kode Mono", monospace;
        font-size: 16px;
        text-transform: uppercase;
        color: white;
    }
    .contact h2, .contact h2 a{
        font-size: 14px;
        text-align: left;
        align-self: flex-start;
    }
    .footer-img{
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
    }
}






@media (min-width: 577px) and (max-width: 768px){
    .web-wrapper{
        overflow-x: hidden;
    }
    .cursor, .perk-cursor{
        display: none;
    }
    .menu-ul {
        display: none;
    }

    .logo {
        width: 15%;
        /* background-color: red; */
        cursor: pointer;
    }
    .menu-icon{
        display: block;
        font-size: 30px;
    }
    .menu-logo{
        width: 20% !important;
    }
    nav {
        width: 100vw;
    }

    .contact-btn {
        display: none;
    }

    .hero {
        height: 100vh;
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 8vh;
    }

    .hero-bg {
        position: absolute;
        z-index: -1;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }


    .hero-img {
        animation: image-animate 5s ease-out infinite alternate;
        width: 500px;
        z-index: -1;
        position: absolute;
        left: calc(50% - 250px);
        top: calc(50% - 300px);
    }

    .hero-text {
        /* background-color: red; */
        width: 100vw;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        row-gap: 6vh;
        padding: 0 3vw;
        /* background-color: red; */
        margin-bottom: 35vh;
        pointer-events: none;
    }

    .hero-text h1 {
        font-family: "Press Start 2P", system-ui;
        font-size: 5.5vh;
        text-transform: uppercase;
        line-height: 1;

    }

    .hero-txt-1 {
        align-self: flex-end;
    }

    .hero-txt-2 {
        align-self: flex-start;
    }

    .hero-txt-4 {
        align-self: flex-end;
        color: transparent;
        margin-top: 0px;
        -webkit-text-stroke: 2px white;
    }

    .welcome-txt {
        position: absolute;
        top: 10%;
        left: 4%;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
        font-size: 15px;

    }

    .web-txt {
        position: absolute;
        top: 90%;
        left: 5%;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
        font-size: 15px;
    }

    .portfolio-txt {
        position: absolute;
        right: 4%;
        bottom: 17%;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
        font-size: 15px;
    }



    /* Service page Responsive */

    .short-bio {
        width: 100%;
        height: 50vh;
        padding: 4vh 0;
        background-color: #090909;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .short-bio h2 {
        width: 90%;
        text-align: center;
        color: #999999;
        font-weight: 400;
        font-size: 17px;
    }

    .services {
        width: 100%;
        min-height: 100vh;
        padding-top: 7vh;
        /* background-color: red; */

    }

    .service-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 10vh;
        row-gap: 5vh;
        padding: 0 4vw;
    }

    .service-div {
        width: 100%;
        height: auto;
        text-align: center;
        border: 1px solid #272E3A;
        border-radius: 30px;
        padding: 40px 0;
        cursor: pointer;
        position: relative;
        background-image: none;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 50px;
        transition: all .2s;

    }

    .service-div::after {
        content: '';
        width: 100%;
        height: 80%;
        background: linear-gradient(to left, #5f175c, rgb(184, 57, 78));
        top: 12%;
        left: 0%;
        position: absolute;
        z-index: -1;
        filter: blur(30px);
        border-radius: 60%;
        opacity: 0;
        transition: all .5s;
    }

    .service-div:hover::after {
        opacity: 0.65;
    }

    .service-div h1 {
        font-size: 20px;
        font-family: "Press Start 2P", system-ui;
        color: #999999;
        transition: all .4s;
        line-height: 1.24;

    }

    .services h2 {
        text-align: center;
        text-transform: uppercase;
        font-size: 16px;
    }

    .service-description {
        margin-top: 4px;
        display: none;
        opacity: 0;
        transition: all .2s;
        width: 90%;
        font-size: 20px;
    }


    /* Projects Div Responsive */

    .projects-div {
        width: 100%;
        min-height: 100vh;
        padding: 4vh 3vw;
    }

    .project-head {
        width: 100%;
        /* background-color: red; */
        margin-top: 6vh;
        padding: 0 1vw;
    }

    .project-head h2 {
        font-size: 15px;
        font-family: "Kode Mono", monospace;
    }

    .project-head h1,
    .project-head h1 span {
        font-size: 4.5vh;
        font-family: "Press Start 2P", system-ui;
        line-height: 1.3;
        margin-top: 3vh;
    }

    .project-head h1 span {
        color: #6f049c;
    }

    .project-mockups-div {
        width: 100%;
        border: 1px solid #272E3A;
        border-radius: 30px;
        margin-top: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 20px;
    }

    .sec1,
    .sec2 {
        display: flex;
        align-items: center;
        column-gap: 10px;
    }

    .sec2 h2 {
        padding: 5px 15px;
        border-radius: 50px;
        background-color: #6f049c;
        font-weight: 400;
        font-size: 15px;
    }

    .sec2 {
        display: flex;
        flex-wrap: wrap;
        row-gap: 12px;
    }

    .project {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 2vh 1vw;
        border-bottom: 1px solid #272E3A;
        cursor: pointer;
    }

    .sec1 i {
        font-size: 30px;
        color: #6f049c;
    }

    .sec1 {
        position: relative;

    }

    .sec1::after {
        content: '';
        width: 120%;
        height: 110%;
        background-color: #6e049c9c;
        position: absolute;
        top: 0;
        left: -2%;
        z-index: -1;
        filter: blur(25px);
        opacity: 0;
        transition: all .3s;
    }

    .project:hover .sec1::after {
        opacity: 1;
    }

    .sec1 h2 {
        font-weight: 500;
        text-transform: uppercase;
        font-size: 20px;
    }

    .open-up-div {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 40px;
        display: none;

    }

    .images {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }

    .images img {
        width: 48%;
        height: 100%;
        object-fit: contain;
    }

    .section {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        row-gap: 10px;
    }

    .project-bottom-div {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 20px 10px;
        flex-direction: column;
        row-gap: 12px;
    }

    .project-bottom-div p {
        width: 100%;
    }

    .project-bottom-div h3 {
        cursor: pointer;
        color: #E32B97;
        transition: all .2s;
    }

    /* // perks div container responsive */
    .perks-div-container {
        width: 100%;
        min-height: 100vh;
        margin-top: 3vh;
        background-image: url(assets/grid.svg);
        background-position: center;
        padding: 10vh 0;
        padding-bottom: 12vh;
        position: relative;
        z-index: 1;
    }
    
    
    .moving-div-container {
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        row-gap: 10vh;
        pointer-events: none;
    }
    
    .moving-div1,
    .moving-div2 {
        width: 100%;
        overflow: hidden;
        display: flex;
        white-space: nowrap;
        position: relative;
    }
    
    .moving-div,
    .moving-marquee {
        display: flex;
        white-space: nowrap;
        column-gap: 30px;
        flex-shrink: 0;
        min-width: 100%;
        animation: marquee-left 30s linear infinite;
    }
    
    .moving-marquee {
        animation: marquee-right 30s linear infinite;
    }
    
    /* Duplicating content for seamless effect */
    .moving-div::after,
    .moving-marquee::after {
        content: "";
        display: flex;
        white-space: nowrap;
        column-gap: 40px;
    }
    
    .moving-div h1,
    .moving-marquee h1 {
        font-size: 55px;
        font-family: "Press Start 2P", system-ui;
    }
    
    .moving-div h1 span,
    .moving-marquee h1 span {
        font-size: 55px;
        font-family: "Press Start 2P", system-ui;
        color: transparent;
        -webkit-text-stroke: 1px white;
    }
    
    .perk-cursor {
        height: 300px;
        width: 300px;
        background-color: red;
        border-radius: 50%;
        position: fixed;
        z-index: -1;
        top: 0;
        left: 0;
        animation: bg-animate 4s linear infinite alternate;
        filter: blur(100px);
        opacity: 0;
        pointer-events: none;
    }
    
    .perk-txt {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5vh 2vw;
        padding-left: 5vw;
        margin-top: 20vh;
        position: relative;
        /* background-color: red; */
    }
    
    .perk-txt h1 {
        font-size: 40px;
        text-transform: uppercase;
        font-weight: 500;
        pointer-events: none;
        line-height: 1.6;
    }
    
    .perk-txt h1 span {
        color: #6F049C;
    }
    
    .arrow-animate {
        top: 0;
        left: 5%;
        font-size: 14px;
    
    }
    
    .arrow-name {
        top: 0;
        left: 50%;
        font-size: 14px;
    
    }
    
    .arrow-optimize {
        position: absolute;
        top: -10%;
        left: 30%;
        font-size: 14px;
    
    }
    
    .arrow-perfect {
        bottom: 2%;
        left: 20%;
        font-size: 14px;
    }




    /* // cool-numbers-responsive */


    .cool-numbers-div {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        padding: 4vh 0vw;
        margin-top: 7vh;
        row-gap: 80px;
    }
    
    .cool-numbers-div h1 {
        font-size: 14px;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
    
    }
    
    .cards {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        row-gap: 40px;
        padding: 4vh 3vw;
    }
    
    .card {
        width: 100%;
        height: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 20px;
        position: relative;
        border-radius: 10px;
        border: 1px solid white;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .card1 {
        border: 1px solid #2A1FFF;
    }
    
    .top-txt {
        align-self: flex-end;
    }
    
    .top-txt h1 {
        font-size: 20px;
        font-family: "Press Start 2P", system-ui;
    }
    
    .plus-txt-card1 h1 {
        color: #2A1FFF;
    }
    
    .nmbr-txt {
        font-size: 180px !important;
        font-family: "Press Start 2P", system-ui !important;
    }
    
    .number-txt-card1 {
        color: #2A1FFF;
    }
    
    .sub-heading-card1 {
        font-size: 16px !important;
    }
    
    .heading-card1 {
        font-size: 20px !important;

    
    }
    
    
    
    .card2 {
        border: 1px solid #F02D9F;
    }
    
    .top-txt {
        align-self: flex-end;
    }
    
    .top-txt h1 {
        font-size: 265px;
        font-family: "Press Start 2P", system-ui;
    }
    
    .plus-txt-card2 h1 {
        color: #F02D9F;
    }
    
    .nmbr-txt {
        font-size: 200px !important;
        font-family: "Press Start 2P", system-ui !important;
    }
    
    .number-txt-card2 {
        color: #F02D9F;
    }
    
    .sub-heading-card2 {
        font-size: 16px !important;
        font-family: "Kode Mono", monospace !important;
        color: #F02D9F;
    }
    
    .heading-card2 {
        font-size: 20px !important;
        font-family: "Roboto Mono", monospace !important;
        line-height: 1.5;
        font-weight: 500 !important;
        width: 100%;
        padding: 25px;
        color: #FAFAFA;
    
    }
    
    .card3 {
        border: 1px solid #1FFF6B;
    }
    
    .top-txt {
        align-self: flex-end;
    }
    
    .top-txt h1 {
        font-size: 170px;
        font-family: "Press Start 2P", system-ui;
    }
    
    .nmbr-txt {
        font-size: 120px !important;
        font-family: "Press Start 2P", system-ui !important;
    }

    
    .sub-heading-card3 {
        font-size: 16px !important;
    }
    
    .heading-card3 {
        font-size: 20px !important;
    
    }




    .time-div {
        width: 100%;
        min-height: 100vh;
        padding: 2vh 3vw;
        margin-top: 5vh;
    }
    
    .clock {
        border: 1px solid #525D6F;
        height: 100%;
        width: 100%;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 10vh;
        position: relative;
    }
    
    .clock>h1 {
        font-size: 16px;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
        text-align: center;
    }
    
    .info {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        padding: 0 1vw;
        text-align: center;
        row-gap: 20px;
    }
    
    .info h1 {
        font-size: 35px;
        text-transform: uppercase;
        font-weight: 400;
        flex: 1;
        text-align: center;
    }
    
    #clock {
        font-size: 100px;
        font-family: "Press Start 2P", system-ui;
        color: #d573ff;
        transition: all .2s;
        position: relative;
        width: 100%;
        text-align: center;
    }
    
    .gmt {
        position: absolute;
        left: 70%;
        top: 52%;
        font-size: 14px;
    }
    
    .looking-txt {
        font-size: 30px;
        text-transform: uppercase;
        text-align: center;
        width: 90%;
    }
    
    .clock-glow {
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: #69158de8;
        top: 0;
        left: 0%;
        filter: blur(180px);
        z-index: -1;
    }




    .form-container {
        width: 100%;
        min-height: 100vh;
        padding: 5vh 4vw;
        margin-top: 6vh;
    }
    
    .form-container h1 {
        font-size: 4.5vh;
        font-family: "Press Start 2P", system-ui;
        line-height: 1.3;
        margin-bottom: 40px;
    
    }
    
    .form-container h1 span {
        font-size: 4vh;
        font-family: "Press Start 2P", system-ui;
        color: #5d0781;
    }
    
    .form {
        width: 100%;
        min-height: 100vh;
        border: 1px solid #272E3A;
        border-radius: 20px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
    }
    
    .form form {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        row-gap: 50px;
        width: 100%;
        padding: 30px;
    }
    
    form div {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 10px;
    }
    
    .form input {
        flex: 1;
        width: 100%;
        background-color: transparent;
        border: 1px solid #272E3A;
        padding: 20px 40px;
        border-radius: 20px;
        font-size: 18px;
    }
    
    .form input:focus {
        border-color: #cf5fff;
        outline: none;
        box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    form label {
        text-align: left;
        align-self: flex-start;
        width: 100%;
        margin-bottom: 0.5rem;
        padding-left: 20px;
        font-size: 18px;
        color: #FAFAFA;
    
    }
    
    .form textarea {
        width: 100%;
        height: 400px;
    }
    
    
    .form button {
        width: 100%;
        background-color: transparent;
        border: none;
        outline: none;
        font-size: 20px;
        border: 1px solid #272E3A;
        padding: 15px;
        border-radius: 50px;
        cursor: pointer;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }



    .footer {
        width: 100%;
        height: auto;
        margin-top: 20vh;
        background-color: #5d0781;
        padding: 7vh 5vw;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        row-gap: 10vh;
        position: relative;
    }
    
    .footer-txt h1 {
        font-size: 29px;
        text-transform: uppercase;
        font-weight: 400;
        line-height: 1;
    }
    
    .footer-links {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 10vw;
        flex-wrap: wrap;
    }
    .footer-links a h2{
        font-size: 16px;
    }
    .menu {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 30px;
    }
    
    .external {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        row-gap: 30px; 
    }
    
    .contact {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        row-gap: 30px;
    }
    
    .menu > h2,
    .external > h2,
    .contact > h2:first-child {
        font-family: "Kode Mono", monospace;
        font-size: 16px;
        text-transform: uppercase;
        color: white;
    }
    .contact h2, .contact h2 a{
        font-size: 14px;
        text-align: left;
        align-self: flex-start;
    }
    .footer-img{
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
    }
}




@media (min-width: 769px) and (max-width: 1024px){
    .web-wrapper{
        overflow-x: hidden;
    }
    .cursor, .perk-cursor{
        display: none;
    }
    .menu-ul {
        display: none;
    }

    .logo {
        width: 15%;
        /* background-color: red; */
        cursor: pointer;
    }
    .menu-icon{
        display: block;
        font-size: 30px;
    }
    .menu-logo{
        width: 20% !important;
    }
    nav {
        width: 100vw;
    }

    .contact-btn {
        display: none;
    }

    .hero {
        height: 100vh;
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 8vh;
    }

    .hero-bg {
        position: absolute;
        z-index: -1;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }


    .hero-img {
        animation: image-animate 5s ease-out infinite alternate;
        width: 500px;
        z-index: -1;
        position: absolute;
        left: calc(50% - 250px);
        top: calc(50% - 300px);
    }

    .hero-text {
        /* background-color: red; */
        width: 100vw;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        row-gap: 6vh;
        padding: 0 3vw;
        /* background-color: red; */
        margin-bottom: 35vh;
        pointer-events: none;
    }

    .hero-text h1 {
        font-family: "Press Start 2P", system-ui;
        font-size: 5.5vh;
        text-transform: uppercase;
        line-height: 1;

    }

    .hero-txt-1 {
        align-self: flex-end;
    }

    .hero-txt-2 {
        align-self: flex-start;
    }

    .hero-txt-4 {
        align-self: flex-end;
        color: transparent;
        margin-top: 0px;
        -webkit-text-stroke: 2px white;
    }

    .welcome-txt {
        position: absolute;
        top: 10%;
        left: 4%;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
        font-size: 15px;

    }

    .web-txt {
        position: absolute;
        top: 90%;
        left: 5%;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
        font-size: 15px;
    }

    .portfolio-txt {
        position: absolute;
        right: 4%;
        bottom: 17%;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
        font-size: 15px;
    }



    /* Service page Responsive */

    .short-bio {
        width: 100%;
        height: 50vh;
        padding: 4vh 0;
        background-color: #090909;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .short-bio h2 {
        width: 90%;
        text-align: center;
        color: #999999;
        font-weight: 400;
        font-size: 22px;
    }

    .services {
        width: 100%;
        min-height: 100vh;
        padding-top: 7vh;
        /* background-color: red; */

    }

    .service-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 10vh;
        row-gap: 5vh;
        padding: 0 4vw;
    }

    .service-div {
        width: 100%;
        height: auto;
        text-align: center;
        border: 1px solid #272E3A;
        border-radius: 30px;
        padding: 40px 0;
        cursor: pointer;
        position: relative;
        background-image: none;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 50px;
        transition: all .2s;

    }

    .service-div::after {
        content: '';
        width: 100%;
        height: 80%;
        background: linear-gradient(to left, #5f175c, rgb(184, 57, 78));
        top: 12%;
        left: 0%;
        position: absolute;
        z-index: -1;
        filter: blur(30px);
        border-radius: 60%;
        opacity: 0;
        transition: all .5s;
    }

    .service-div:hover::after {
        opacity: 0.65;
    }

    .service-div h1 {
        font-size: 22px;
        font-family: "Press Start 2P", system-ui;
        color: #999999;
        transition: all .4s;
        line-height: 1.24;

    }

    .services h2 {
        text-align: center;
        text-transform: uppercase;
        font-size: 18px;
    }

    .service-description {
        margin-top: 4px;
        display: none;
        opacity: 0;
        transition: all .2s;
        width: 90%;
        font-size: 20px;
    }


    /* Projects Div Responsive */

    .projects-div {
        width: 100%;
        min-height: 100vh;
        padding: 4vh 3vw;
    }

    .project-head {
        width: 100%;
        /* background-color: red; */
        margin-top: 6vh;
        padding: 0 1vw;
    }

    .project-head h2 {
        font-size: 15px;
        font-family: "Kode Mono", monospace;
    }

    .project-head h1,
    .project-head h1 span {
        font-size: 4.5vh;
        font-family: "Press Start 2P", system-ui;
        line-height: 1.3;
        margin-top: 3vh;
    }

    .project-head h1 span {
        color: #6f049c;
    }

    .project-mockups-div {
        width: 100%;
        border: 1px solid #272E3A;
        border-radius: 30px;
        margin-top: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 20px;
    }

    .sec1,
    .sec2 {
        display: flex;
        align-items: center;
        column-gap: 10px;
    }

    .sec2 h2 {
        padding: 5px 15px;
        border-radius: 50px;
        background-color: #6f049c;
        font-weight: 400;
        font-size: 15px;
    }

    .sec2 {
        display: flex;
        flex-wrap: wrap;
        row-gap: 12px;
    }

    .project {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 2vh 1vw;
        border-bottom: 1px solid #272E3A;
        cursor: pointer;
    }

    .sec1 i {
        font-size: 30px;
        color: #6f049c;
    }

    .sec1 {
        position: relative;

    }

    .sec1::after {
        content: '';
        width: 120%;
        height: 110%;
        background-color: #6e049c9c;
        position: absolute;
        top: 0;
        left: -2%;
        z-index: -1;
        filter: blur(25px);
        opacity: 0;
        transition: all .3s;
    }

    .project:hover .sec1::after {
        opacity: 1;
    }

    .sec1 h2 {
        font-weight: 500;
        text-transform: uppercase;
        font-size: 20px;
    }

    .open-up-div {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 40px;
        display: none;

    }

    .images {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }

    .images img {
        width: 48%;
        height: 100%;
        object-fit: contain;
    }

    .section {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        row-gap: 10px;
    }

    .project-bottom-div {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 20px 10px;
        flex-direction: column;
        row-gap: 12px;
    }

    .project-bottom-div p {
        width: 100%;
    }

    .project-bottom-div h3 {
        cursor: pointer;
        color: #E32B97;
        transition: all .2s;
    }

    /* // perks div container responsive */
    .perks-div-container {
        width: 100%;
        min-height: 100vh;
        margin-top: 3vh;
        background-image: url(assets/grid.svg);
        background-position: center;
        padding: 10vh 0;
        padding-bottom: 12vh;
        position: relative;
        z-index: 1;
    }
    
    
    .moving-div-container {
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        row-gap: 10vh;
        pointer-events: none;
    }
    
    .moving-div1,
    .moving-div2 {
        width: 100%;
        overflow: hidden;
        display: flex;
        white-space: nowrap;
        position: relative;
    }
    
    .moving-div,
    .moving-marquee {
        display: flex;
        white-space: nowrap;
        column-gap: 30px;
        flex-shrink: 0;
        min-width: 100%;
        animation: marquee-left 30s linear infinite;
    }
    
    .moving-marquee {
        animation: marquee-right 30s linear infinite;
    }
    
    /* Duplicating content for seamless effect */
    .moving-div::after,
    .moving-marquee::after {
        content: "";
        display: flex;
        white-space: nowrap;
        column-gap: 40px;
    }
    
    .moving-div h1,
    .moving-marquee h1 {
        font-size: 55px;
        font-family: "Press Start 2P", system-ui;
    }
    
    .moving-div h1 span,
    .moving-marquee h1 span {
        font-size: 55px;
        font-family: "Press Start 2P", system-ui;
        color: transparent;
        -webkit-text-stroke: 1px white;
    }
    
    .perk-cursor {
        height: 300px;
        width: 300px;
        background-color: red;
        border-radius: 50%;
        position: fixed;
        z-index: -1;
        top: 0;
        left: 0;
        animation: bg-animate 4s linear infinite alternate;
        filter: blur(100px);
        opacity: 0;
        pointer-events: none;
    }
    
    .perk-txt {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5vh 2vw;
        padding-left: 5vw;
        margin-top: 20vh;
        position: relative;
        /* background-color: red; */
    }
    
    .perk-txt h1 {
        font-size: 40px;
        text-transform: uppercase;
        font-weight: 500;
        pointer-events: none;
        line-height: 1.6;
    }
    
    .perk-txt h1 span {
        color: #6F049C;
    }
    
    .arrow-animate {
        top: 0;
        left: 5%;
        font-size: 14px;
    
    }
    
    .arrow-name {
        top: 0;
        left: 50%;
        font-size: 14px;
    
    }
    
    .arrow-optimize {
        position: absolute;
        top: -10%;
        left: 30%;
        font-size: 14px;
    
    }
    
    .arrow-perfect {
        bottom: 2%;
        left: 20%;
        font-size: 14px;
    }




    /* // cool-numbers-responsive */


    .cool-numbers-div {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        padding: 4vh 0vw;
        margin-top: 7vh;
        row-gap: 80px;
    }
    
    .cool-numbers-div h1 {
        font-size: 14px;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
    
    }
    
    .cards {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        row-gap: 40px;
        padding: 4vh 3vw;
    }
    
    .card {
        width: 100%;
        height: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 20px;
        position: relative;
        border-radius: 10px;
        border: 1px solid white;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .card1 {
        border: 1px solid #2A1FFF;
    }
    
    .top-txt {
        align-self: flex-end;
    }
    
    .top-txt h1 {
        font-size: 20px;
        font-family: "Press Start 2P", system-ui;
    }
    
    .plus-txt-card1 h1 {
        color: #2A1FFF;
    }
    
    .nmbr-txt {
        font-size: 180px !important;
        font-family: "Press Start 2P", system-ui !important;
    }
    
    .number-txt-card1 {
        color: #2A1FFF;
    }
    
    .sub-heading-card1 {
        font-size: 16px !important;
    }
    
    .heading-card1 {
        font-size: 20px !important;

    
    }
    
    
    
    .card2 {
        border: 1px solid #F02D9F;
    }
    
    .top-txt {
        align-self: flex-end;
    }
    
    .top-txt h1 {
        font-size: 265px;
        font-family: "Press Start 2P", system-ui;
    }
    
    .plus-txt-card2 h1 {
        color: #F02D9F;
    }
    
    .nmbr-txt {
        font-size: 200px !important;
        font-family: "Press Start 2P", system-ui !important;
    }
    
    .number-txt-card2 {
        color: #F02D9F;
    }
    
    .sub-heading-card2 {
        font-size: 16px !important;
        font-family: "Kode Mono", monospace !important;
        color: #F02D9F;
    }
    
    .heading-card2 {
        font-size: 20px !important;
        font-family: "Roboto Mono", monospace !important;
        line-height: 1.5;
        font-weight: 500 !important;
        width: 100%;
        padding: 25px;
        color: #FAFAFA;
    
    }
    
    .card3 {
        border: 1px solid #1FFF6B;
    }
    
    .top-txt {
        align-self: flex-end;
    }
    
    .top-txt h1 {
        font-size: 170px;
        font-family: "Press Start 2P", system-ui;
    }
    
    .nmbr-txt {
        font-size: 120px !important;
        font-family: "Press Start 2P", system-ui !important;
    }

    
    .sub-heading-card3 {
        font-size: 16px !important;
    }
    
    .heading-card3 {
        font-size: 20px !important;
    
    }




    .time-div {
        width: 100%;
        min-height: 100vh;
        padding: 2vh 3vw;
        margin-top: 5vh;
    }
    
    .clock {
        border: 1px solid #525D6F;
        height: 100%;
        width: 100%;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 10vh;
        position: relative;
    }
    
    .clock>h1 {
        font-size: 16px;
        font-family: "Kode Mono", monospace;
        text-transform: uppercase;
        text-align: center;
    }
    
    .info {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        padding: 0 1vw;
        text-align: center;
        row-gap: 20px;
    }
    
    .info h1 {
        font-size: 35px;
        text-transform: uppercase;
        font-weight: 400;
        flex: 1;
        text-align: center;
    }
    
    #clock {
        font-size: 100px;
        font-family: "Press Start 2P", system-ui;
        color: #d573ff;
        transition: all .2s;
        position: relative;
        width: 100%;
        text-align: center;
    }
    
    .gmt {
        position: absolute;
        left: 70%;
        top: 52%;
        font-size: 14px;
    }
    
    .looking-txt {
        font-size: 30px;
        text-transform: uppercase;
        text-align: center;
        width: 90%;
    }
    
    .clock-glow {
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: #69158de8;
        top: 0;
        left: 0%;
        filter: blur(180px);
        z-index: -1;
    }




    .form-container {
        width: 100%;
        min-height: 100vh;
        padding: 5vh 4vw;
        margin-top: 6vh;
    }
    
    .form-container h1 {
        font-size: 4.5vh;
        font-family: "Press Start 2P", system-ui;
        line-height: 1.3;
        margin-bottom: 40px;
    
    }
    
    .form-container h1 span {
        font-size: 4vh;
        font-family: "Press Start 2P", system-ui;
        color: #5d0781;
    }
    
    .form {
        width: 100%;
        height: auto;
        border: 1px solid #272E3A;
        border-radius: 20px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
    }
    
    .form form {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        row-gap: 50px;
        width: 100%;
        padding: 30px;
    }
    
    form div {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 10px;
    }
    
    .form input {
        flex: 1;
        width: 100%;
        background-color: transparent;
        border: 1px solid #272E3A;
        padding: 20px 40px;
        border-radius: 20px;
        font-size: 18px;
    }
    
    .form input:focus {
        border-color: #cf5fff;
        outline: none;
        box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    form label {
        text-align: left;
        align-self: flex-start;
        width: 100%;
        margin-bottom: 0.5rem;
        padding-left: 20px;
        font-size: 18px;
        color: #FAFAFA;
    
    }
    
    .form textarea {
        width: 100%;
        height: 500px;
    }
    
    
    .form button {
        width: 100%;
        background-color: transparent;
        border: none;
        outline: none;
        font-size: 20px;
        border: 1px solid #272E3A;
        padding: 15px;
        border-radius: 50px;
        cursor: pointer;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }



    .footer {
        width: 100%;
        height: auto;
        margin-top: 20vh;
        background-color: #5d0781;
        padding: 7vh 5vw;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        row-gap: 10vh;
        position: relative;
    }
    
    .footer-txt h1 {
        font-size: 45px;
        text-transform: uppercase;
        font-weight: 400;
        line-height: 1;
    }
    
    .footer-links {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 10vw;
        flex-wrap: wrap;
    }
    .footer-links a h2{
        font-size: 18px;
    }
    .menu {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 30px;
    }
    
    .external {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        row-gap: 30px; 
    }
    
    .contact {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        row-gap: 30px;
    }
    
    .menu > h2,
    .external > h2,
    .contact > h2:first-child {
        font-family: "Kode Mono", monospace;
        font-size: 18px;
        text-transform: uppercase;
        color: white;
    }
    .contact h2, .contact h2 a{
        font-size: 14px;
        text-align: left;
        align-self: flex-start;
    }
    .footer-img{
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
    }
}
