/* Styling Below */

@import url('https://fonts.googleapis.com/css2?family=Bungee+Outline&family=Bungee+Shade&family=Mochiy+Pop+One&family=Oswald&family=Press+Start+2P&family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Slab:wght@100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Gurmukhi:wght@500&display=swap');


@font-face {
    font-family: 'font-about';
    src: url('assets/font-about.otf') format('otf');
}


@font-face {
    font-family: "skills";
    src: url("./assets/fonts/29.ttf");
}

@font-face {
    font-family: "contact";
    src: url("./assets/fonts/33.otf");
}

@font-face {
    font-family: "mail";
    src: url('./assets/fonts/42.ttf');
}

@font-face {
    font-family: "font-project";
    src: url("./assets/fonts/Deutschlander.otf");
}

@font-face {
    font-family: "signature";
    src: url("./assets/fonts/24.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #030202;
    position: relative;
    cursor: none;
    overflow-x: hidden;
    user-select: none;
    overflow: hidden;
}


/* style the scrollbar */
::-webkit-scrollbar {
    display: none;
    width: 10px;
    background: transparent !important;
}

/* Track */
::-webkit-scrollbar-track {
    display: none;
    background: transparent !important;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #eec5bd;
    border-radius: 1rem;
}

.loader {
    position: absolute;
    left: 50%;
    width: 100vw;
    height: 100vh;
    z-index: 100000;
    transform: translateX(-50%);
    color: #fff;
    font-family: Consolas, Menlo, Monaco, monospace;
    font-weight: bold;
    font-size: 78px;
    opacity: 0.8;
    text-align: center;
    align-content: center;
}

.loader:before {
    content: "{";
    display: inline-block;
    animation: pulse 0.4s alternate infinite ease-in-out;
}

.loader:after {
    content: "}";
    display: inline-block;
    animation: pulse 0.4s 0.3s alternate infinite ease-in-out;
}

@keyframes pulse {
    to {
        transform: scale(0.8);
        opacity: 0.5;
    }
}


.signature {
    font-family: "signature";
    font-size: 1.5rem;
    color: #eec5bd;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem;
    z-index: 100;
    user-select: none;
    opacity: 0;
    transition: all 1s ease;
}


.cursor {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 100;
    mix-blend-mode: difference;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);

}

.cursor.hover {
    border-radius: 0%;
}

.hold-drag {
    position: absolute;
    left: 5%;
    top: 5%;
    width: 1.5rem;
    height: 1.5rem;
    z-index: 1;

    & svg {
        width: 100%;
        height: 100%;
    }
}

#rgbKineticSlider {
    /* transform: scale(0); */
    transform: translate(-50%, -50%);
    opacity: 0;
}

.mainSection {
    display: flex;
    align-items: center;
    /* background: #600606; */
    background: #000;
    position: relative;
    /* height: 250vh; */
    width: 100%;
    flex-direction: column;


    & .centeredBox {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #F5F5F5;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;

        & .top__box {
            position: absolute;
            left: 50%;
            padding: 0.15rem 1.5rem;
            top: 2.5%;
            font-size: 0.9rem;
            border: 1px solid #000;
            border-radius: 5rem;
            transform: translateX(-50%);
            color: #000;
            font-family: "mail";
            font-weight: bold;
            overflow: hidden;

            & .bound__circle {
                position: absolute;
                left: 2px;
                top: 50%;
                border-radius: 50%;
                transform: translateY(-50%);
                width: 5px;
                height: 5px;
                background: #000;
                transition: 0.5s ease;
            }

            & .bound__circle:nth-of-type(2) {
                left: auto;
                right: 2px;
            }
        }


        & .top__box:hover .bound__circle {
            transform: scale(5);
        }

        & .top__box:nth-of-type(1) {
            left: 2.5%;
            transform: none;
        }

        /* & .welcome__box__hover_anim {
            position: relative;
            display: inline;
        }

        & .welcome__box__hover_img {
            position: absolute;
            left: 50%;
            transform: translateX(-50%) scale(0);
            width: 200px;
            height: 175px;
            bottom: 120%;

            & img {
                width: 100%;
                height: 100%;
                border-radius: 1rem;
                object-fit: cover;
            }

        }

        & .welcome__box__hover_img_trigger {
            display: inline-flex;

            &>span {
                pointer-events: none;
            }
        } */

        & .tag__box {
            position: absolute;
            height: 2.5rem;
            left: 50%;
            top: 20%;
            transform: translateX(-50%);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;

            & div {
                color: #000;
                text-align: center;
                text-transform: uppercase;
                font-size: 2.5rem;
                padding: 0 0.5rem;
                /* color: #000; */
                font-family: "VT323", monospace;
                display: flex;
            }

            & .tag__box_head_clone {
                color: gray;
                /* transform: translate(-50%, -50%); */
            }


            & .blink {
                animation: blink 1s infinite;
            }


            @keyframes blink {
                0% {
                    opacity: 0;
                }

                50% {
                    opacity: 1;
                }

                100% {
                    opacity: 0;
                }
            }

        }

        & .tag__box.tag__bottom {
            top: auto;
            bottom: 20%;
        }

        /* & .scroll_info{

        } */

        & .scroll_info {
            animation: bounce 1s ease infinite;
            bottom: 4rem;
            color: #000;
            font-size: 1rem;
            height: 4rem;
            left: 50%;
            letter-spacing: -1px;
            line-height: 4rem;
            margin-left: -3rem;
            opacity: 0.8;
            position: absolute;
            text-align: center;
            width: 6rem;
            display: flex;
        }




        & .unlockBtn {
            border: 1px solid #B9B8B9;
            text-transform: uppercase;
            border-radius: 2rem;
            padding: 0 0.8rem;
            text-align: center;
            line-height: 1;
            margin: 0 5px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.5s ease;

            & .unlock_btn__overlay {
                position: absolute;
                left: 0;
                top: 0;
                width: 1rem;
                height: 1rem;
                border-radius: 50%;
                background: #B9B8B9;
                transform: scale(0);
                z-index: -1;
            }
        }

        & .unlockBtn:hover {
            border-color: #A6412B;
            color: #A6412B;
        }

        & .linkedin {
            border-color: transparent;
            text-transform: lowercase;
            background: #0077B5
        }

        & .textContainer {
            height: 260px;
            width: fit-content;
            max-width: 1000px;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            text-align: center;
            overflow-y: hidden;

            & h2 {
                line-height: 0.9;
                letter-spacing: -1rem;
                text-transform: uppercase;
                font-size: 20rem;
                font-family: 'font-main', sans-serif;
                /* color: #fff; */
            }

            & h2:nth-of-type(4) {
                font-size: 14rem;
                letter-spacing: -0.9rem;
            }

            & h2:nth-of-type(3) {
                letter-spacing: -0.8rem;
                font-size: 16rem;
            }

            & h2:nth-of-type(2) {
                font-size: 18rem;
            }
        }
    }



    & .moreDetails {
        background: #000;
        width: 100%;
        transform: translateY(100%);
        /* Changes applied, Uncomment */


        & .horizontalScroll {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            overflow: hidden;

            & .text {
                color: #ffffff;
                text-transform: uppercase;
                font-size: 15vw;
                text-align: center;
                width: 100%;
                font-family: "font-main", sans-serif;
                font-weight: bolder;
            }

            & .text:nth-of-type(1) {
                transform: translateX(-100%);
            }

            & .text:nth-of-type(2) {
                letter-spacing: -0.5rem;
                display: flex;
                justify-content: center;
                align-items: center;
                transform: translateX(80%);
            }

        }

        & .about {
            /* Change to none height: 100vh;  */
            width: 80%;
            margin: 10rem auto;
            font-weight: lighter;
            padding: 2rem 0;
            text-align: center;
            /* font-family: 'font-about', sans-serif; */
            font-family: "VT323", monospace;
            font-weight: 500;
            font-size: 2rem;
            color: #B9B8B9;
            line-height: 1.5;
            user-select: none;
            position: relative;

            & .about__hover_anim {
                position: relative;
                display: inline;
            }

            & .about__hover_img_trigger {
                display: inline-flex;

                &>span {
                    pointer-events: none;
                }
            }

            & .unlockBtn {
                border: 1px solid #B9B8B9;
                text-transform: uppercase;
                border-radius: 2rem;
                padding: 0 0.8rem;
                text-align: center;
                line-height: 1;
                margin: 0 5px;
                position: relative;
                overflow: hidden;
                transition: border-color 0.5s ease;

                & .unlock_btn__overlay {
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 1rem;
                    height: 1rem;
                    border-radius: 50%;
                    background: #B9B8B9;
                    transform: scale(0);
                    z-index: -1;
                }
            }

            & .unlockBtn:hover {
                border-color: #A6412B;
                color: #A6412B;
            }

            & .linkedin {
                border-color: transparent;
                text-transform: lowercase;
                background: #0077B5;
                color: #fff;
            }

            & .activeUnlockBtn {
                background: #B9B8B9;
                color: #000;
            }

            & .hiddenText {
                transition: 0.5s ease-in-out;
                color: #B9B8B9;
                mix-blend-mode: difference;
            }

            & .socialLink {
                transition: 0.3s ease-in-out;
                text-decoration: underline;
                color: #B9B8B9;
            }

            & .socialLink:hover {
                color: #A6412B;
            }

            & .hidden {
                filter: blur(0.5rem);
                opacity: 0.5;
                overflow: hidden;
                pointer-events: none;
                color: #A6412B;
                user-select: none;
            }

            & .hoverHidden {
                color: #600606;
            }

        }
    }
}

.about::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: -1;
}

.projectSection {
    height: 100vh;

    & .projects {
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        /* color: #000; */
        /* background: #600606; */
        /* background: #000; */
        color: #600606;
        position: relative;

        & video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        & .projectText {
            font-family: 'Oswald', sans-serif;
            font-weight: 800;
            width: 100%;
            height: 100%;
            font-size: 15vw;
            text-align: center;
            align-content: center;
            background-color: #000;
            color: #fff;

            text-transform: uppercase;
            mix-blend-mode: multiply;
        }


    }
}



.textStroke {
    -webkit-text-stroke: 2px #600606;
    color: transparent;
}

& .rotatingText {
    font-family: 'Press Start 2P ', sans-serif;
    border: 2px solid #600606;
    border-radius: 50%;
    min-width: 15vw;
    height: 15vw;
    font-size: 6vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    animation: rotate 5s linear infinite;
    -webkit-text-stroke: 1px #600606;
    color: transparent;
}



@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.waitlist {
    background-color: #F5F5F5;
    color: #111;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5rem;
    margin-left: 1.5rem;
}

.animatedSection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 100vh;
    width: 100%;
    background: #000;

    & .brandList {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5rem;
        margin-top: 10%;
    }
}

.animatedText {
    margin-top: 8rem;
    padding: 2rem 5rem;
    gap: 5rem;
    color: #ffffff;

    & h1 {
        text-align: center;
        line-height: 0;
        opacity: 0;
        text-transform: uppercase;
        color: #eec5bd;
        font-size: 2rem;
        font-weight: bolder;
        font-family: 'Titillium Web', sans-serif;


    }

}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.animatedGroup {
    position: absolute;
    top: 0%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25rem;

    & .animationContent {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2rem;
        margin-top: 10%;
        width: 25%;
        border-radius: 0.5rem;
        padding: 2rem 0.8rem;
        background-image: url(assets/animated.png);
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        overflow: hidden;

        & .animatedText {
            padding: 10rem 0;
            display: flex;
            align-items: center;

            h3 {
                font-size: 4rem;
                font-weight: bolder;
                font-family: 'Montserrat', sans-serif;
                color: #eec5bd;
                /* -webkit-text-stroke: 1px #eec5bd; */
                text-align: center;
                line-height: 3rem;

                & span {
                    font-family: 'Press Start 2P', cursive;
                    -webkit-text-stroke: 0px;
                    color: #eec5bd;
                    font-size: 0.8rem;
                }
            }
        }

        & .imgContainer {
            max-width: 500px;
            position: absolute;
            width: 80%;
            left: -20%;
            top: -10%;
        }

        & img {
            width: 100%;
            height: 100%;
        }
    }
}

& .contentContainer {
    color: #b4bcd0;
    width: 60%;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;

    & button {
        transform: scale(1.5);
        font-weight: 600;
    }

    & p {
        letter-spacing: 1.2px;
        line-height: 1.5rem;

        & span {
            color: #ffffff;
            background: #600606;
            border: 1px solid #720000;
            padding: 0px 3.5px;
            border-radius: 5px;
        }
    }
}


.actionSection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5rem;
    padding: 5rem 0;
    margin-top: 15%;

    & .actionTitle {
        width: 40%;
        text-align: center;

        & h1 {
            color: #E6E6E8;
            font-size: 5rem;
            font-weight: 600;
            line-height: 8rem;
        }
    }

    & .actionCards {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 2.5rem;

        & .card:nth-child(1) {
            & .cardImg {
                & .imgGradient {
                    bottom: 20%;
                }
            }
        }

        & .card:nth-child(2) {
            & .cardImg {
                & .imgGradient {
                    bottom: 13%;
                }
            }
        }

        & .card:nth-child(3) {
            & .cardImg {
                & .imgGradient {
                    bottom: 23%;
                }
            }
        }

        & .card {
            display: flex;
            flex-direction: column;
            border: 1px groove rgba(255, 255, 255, 0.1);
            background: #161b22;
            border-radius: 2rem;
            height: 520px;
            transform-style: preserve-3d;
            position: relative;
            overflow: hidden;

            & .cardImg {
                height: 75%;
                position: relative;

                & img {
                    width: 100%;
                }
            }

            & .light {
                position: absolute;
                top: 0;
                left: 0;
                width: 200px;
                height: 200px;
                border-radius: 50%;
                background: #ffff;
                filter: blur(70px);
                opacity: 0;
            }

            & .cardContent {
                display: flex;
                justify-content: center;
                flex-direction: column;
                text-align: center;
                gap: 1rem;
                padding-bottom: 2rem;
                transform: translate3d(0, 0, 50px);

                & h2 {
                    color: #DDDCDE;
                    font-size: 2.25rem;
                }

                & p {
                    color: #b4bcd0;
                    font-size: 1.15rem;
                    font-weight: 600;
                    padding: 0rem 1.5rem;
                }
            }
        }

        & .cardLg {
            width: 50%;

            & .cardContent {
                & p {
                    width: 80%;
                    margin: auto;
                }
            }
        }

        & .cardLg:last-child {
            flex-direction: column-reverse;

            & .cardContent {
                padding-bottom: 0;

            }

            & .cardImg {
                display: flex;
                align-items: end;
                height: 70%;

                & img {
                    border-radius: 2rem;
                }
            }

        }

        & .cardSm {
            width: 30%;
        }
    }
}

.imgGradient {
    height: 70px;
    background-image: linear-gradient(rgba(21, 27, 34, 0), #151b22);
    position: absolute;
    top: auto;
    bottom: 8%;
    left: 0%;
    right: 0%;
}

.integrationSection {
    background: #161B22;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    gap: 5rem;
    overflow: hidden;

    & .integrationHeading {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding-top: 10%;
        padding-bottom: 5%;

        & h1 {
            font-size: 5rem;
            color: #D2D2D4;
        }

        & p {
            width: 50%;
            text-align: center;
            font-size: 1.2rem;
            line-height: 2rem;
            color: #b4bcd0;

        }
    }

    & .appSlider::-webkit-scrollbar {
        display: none;
    }

    & .appSlider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        overflow-x: scroll;
        padding-top: 5rem;
        padding-bottom: 2rem;

        & .slides {
            & img {
                transition: all 1s ease-in-out;
                border-radius: 2rem;
            }
        }

        & :nth-child(1):hover img {
            box-shadow: 0px 0px 15px 0px rgb(35, 133, 206);
        }

        & :nth-child(2):hover img {
            box-shadow: 0px 0px 15px 0px #D39F02;
        }

        & :nth-child(3):hover img {
            box-shadow: 0px 0px 15px 0px #CBDCF9;
        }

        & :nth-child(5):hover img {
            box-shadow: 0px 0px 15px 0px #F5F3ED;
        }

        & :nth-child(6):hover img {
            box-shadow: 0px 0px 15px 0px #9BFEBA;
        }

        & :nth-child(7):hover img {
            box-shadow: 0px 0px 15px 0px #60312D;
        }
    }

    & .integrationFooter {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 5% 0;
        flex-direction: column;
        z-index: 1;
        background: #161B22;

        & h3 {
            color: #D2D2D4;
            font-size: 2rem;
        }

        & p {
            color: #b4bcd0;
            font-size: 1.2rem;
            text-align: center;
            width: 40%;
        }
    }

    & .imgContainer {
        position: absolute;
        z-index: 1;
        overflow: hidden;
        width: 30%;
        display: flex;
        height: 500px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 3.5rem;
        top: 70%;

        & img {
            width: 100%;
            height: 180%;
            object-fit: contain;
        }
    }

    & .integrationAnimated {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 0%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5% 0 0 0;
        margin-bottom: 2rem;
        flex-direction: column;
        top: 67.8%;

        & .animatedLine {
            width: 80%;
            margin: auto;
            height: 2px;
            background: #2C3138;
            position: relative;

            & .animatedLight {
                width: 70%;
                height: 150px;
                opacity: .23;
                filter: blur(100px);
                background-image: linear-gradient(to right, #eec5bd, #c6caf6 46%, #dad9e9);
                position: absolute;
                top: auto;
                bottom: 0%;
                transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
                transform-style: preserve-3d;
                will-change: opacity, filter, transform;
                left: 50%;
                transform: translateX(-50%);
            }
        }
    }

}

.snippetsSection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5rem;

    & .scrollContainer {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        padding: 5rem;
        position: relative;

        & .snippetsHeading {
            width: 50%;
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 2rem;
            padding-top: 10%;
            padding-bottom: 5%;
            text-align: left;
            position: sticky;
            top: 0;
            height: 100%;

            & h1 {
                font-size: 5rem;
                color: #D2D2D4;
            }

            & p {
                text-align: left;
                font-size: 1.1rem;
                line-height: 2rem;
                color: #b4bcd0;

            }
        }

        & .snippetsGallery::-webkit-scrollbar {
            display: none;
        }

        & .snippetsGallery {
            margin-top: 42%;
            width: 45%;
            display: flex;
            align-items: center;
            gap: 10rem;
            flex-direction: column;
            padding-top: 5rem;

            & .slides {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;

                & .title {
                    display: flex;
                    align-items: end;
                    gap: 0.5rem;

                    & h2 {
                        -webkit-text-fill-color: transparent;
                        background-image: linear-gradient(to right, #eec5bd, #f3b1a5 35%, #c6caf6 72%, #dad9e9);
                        -webkit-background-clip: text;
                        background-clip: text;
                        font-size: 5rem;
                    }

                    & p {
                        color: #D2D2D4;
                        font-size: 1.8rem;
                        font-weight: 600;
                        text-align: center;
                        width: 80%;
                    }
                }

                & .content {
                    font-size: 1.1rem;
                    color: #b4bcd0;
                    line-height: 1.8rem;
                }
            }
        }

    }

    & .snippetsFooter {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        padding: 5% 0;
        flex-direction: column;
        z-index: 1;

        & h1 {
            color: #D2D2D4;
            font-size: 5rem;
        }

        & p {
            color: #b4bcd0;
            font-size: 1.15rem;
            text-align: center;
            width: 40%;
        }
    }
}

.footerSection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5rem;
    padding: 5rem 0;
    background: #ffffff;

    & .footerHeading {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        flex-direction: column;
        z-index: 1;
        text-align: center;

        & h1 {
            font-size: 5rem;
            color: #000;
            -webkit-text-fill-color: transparent;
            background-image: linear-gradient(#000, rgba(27, 27, 28, .85));
            -webkit-background-clip: text;
            background-clip: text;
        }

        & p {
            font-size: 1.15rem;
            text-align: center;
            width: 60%;
            color: #000;
            -webkit-text-fill-color: transparent;
            background-image: linear-gradient(#000, rgba(27, 27, 28, .85));
            -webkit-background-clip: text;
            background-clip: text;
        }
    }

    & .footerGrid {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        grid-template-rows: 0.4fr 0.6fr;
        gap: 2rem;
        padding: 2rem 5rem 0 5rem;

        & .vertical:last-child {
            padding-top: 1rem;
            flex-direction: column-reverse;
            padding-bottom: 0;

            & .imgContainer {
                position: relative;
                display: flex;
                justify-content: center;
                height: 380px;

                & img {
                    width: 90%;
                    position: absolute;
                }

                & img:nth-child(2) {
                    height: 180%;
                    object-fit: contain;
                }

                & img:nth-child(1) {
                    z-index: 1;
                    height: 150%;
                    object-fit: contain;
                    top: 15%;
                    border-radius: 3.5rem;
                }
            }
        }

        & .vertical {
            grid-row-start: 1;
            grid-row-end: 3;
        }

        & .slides {
            display: flex;
            flex-direction: column;
            background: #F5F5F8;
            border-radius: 2.5rem;
            overflow: hidden;
            padding-bottom: 1rem;

            & .imgContainer {
                width: 100%;
                height: 100%;

                & img {
                    width: 100%;
                    height: 100%;
                }
            }

            & .content {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
                padding: 1rem 0;
                letter-spacing: 0.5px;

                & h3 {
                    font-size: 1.8rem;
                    color: #000;
                }

                & p {
                    width: 60%;
                    margin: auto;
                    font-size: 1rem;
                    color: #000;
                }
            }
        }

        & .horizontal {
            position: relative;
            flex-direction: row-reverse;
            align-items: center;
            padding-bottom: 0;

            & .imgContainer {
                height: 120%;

                & img {
                    height: 120%;
                }
            }

            & .content {
                width: 100%;
                gap: 0.5rem;

                & p {
                    width: 90%;
                    margin: 0 auto;
                }
            }
        }

        & .horizontal:nth-last-child(2) {
            grid-column-start: 2;
            grid-column-end: 3;
            grid-row-start: 2;
            grid-row-end: 3;

            & .imgContainer {
                position: relative;

                & .tiltedBadge {
                    position: absolute;
                    width: 175px;
                    height: 175px;
                    border-radius: 2rem;
                    top: 27%;
                    left: 36%;
                    z-index: 1;
                    background: #ffffff;
                    padding: 1rem;
                    transform-style: preserve-3d;

                    & img {
                        width: 100%;
                        height: 100%;
                        transform: translateZ(50px);
                    }
                }
            }
        }
    }

    & .footerFlex {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 0 5rem;

        & .slides {
            display: flex;
            flex-direction: column;
            padding: 2.5% 0;
            background: #F5F5F8;
            border-radius: 2.5rem;
            overflow: hidden;
            padding-bottom: 1rem;

            & .imgContainer {
                width: 100%;
                height: 100%;

                & img {
                    width: 100%;
                    height: 100%;
                }
            }

            & .content {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
                padding: 1rem 0;
                letter-spacing: 0.5px;

                & h3 {
                    font-size: 1.8rem;
                    color: #000;
                }

                & p {
                    width: 80%;
                    margin: auto;
                    font-size: 1rem;
                    color: #000;
                }
            }
        }
    }

    & .credits {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 5%;
        font-size: 1.5rem;
        color: #2C3138;
        transform-style: preserve-3d;
        transform: translateZ(50px);
        user-select: none;
    }
}





/* Distortion */

.rgbKineticSlider {
    display: block;
    position: absolute;
    overflow: hidden;
    width: 50vw;
    height: 50vh;
    top: 70%;
    left: 50%;
    z-index: -1;
}

/* .rgbKineticSlider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
    pointer-events: none;
} */

.rgbKineticSlider canvas {
    position: absolute;
    display: block;
    top: 0 !important;
    Left: 0 !important;
    transform: scale(1) !important;
}



/* Skills */
.skills {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    position: relative;
    overflow-y: hidden;
}

.skills__code {
    height: fit-content;
}

.code__runner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.code__runner button {
    display: flex;
    align-items: center;
    font-family: inherit;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.8em 1.3em 0.8em 0.9em;
    color: white;
    background: #ad5389;
    background: linear-gradient(to right, #020202, #3b3b3b, #020202);
    border: none;
    letter-spacing: 0.05em;
    border-radius: 0.75rem;
    font-family: "skills";
    overflow: hidden;
    text-transform: uppercase;
    z-index: 1;
}

.code__runner button svg {
    margin-right: 3px;
    transform: rotate(30deg);
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.code__runner button span {
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.code__runner button:hover svg {
    transform: translateX(5px) rotate(90deg);
}

.code__runner button:hover span {
    transform: translateX(7px);
}

.runner_icon {
    padding: 18vh;
    align-self: center;
}

.skills__container {
    background: #000;
    position: absolute;
    left: 0;
    z-index: 2;
    height: 100vh;
    width: 100vw;
}

.skills__header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.span1,
.span2 {
    opacity: 0;
    transform: translateY(100px);
}

.skills__header h1 {
    font-family: "skills";
    font-size: 12vw;
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 175%;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.skill__badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 2rem;
    border-radius: 3rem;
    border: 1px solid #fff;
    position: absolute;
    mix-blend-mode: difference;
    cursor: default;
    user-select: none;
}

.skill__badge div {
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skill__badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.skill__badge p {
    color: #fff;
    font-size: 1.5rem;
    font-family: "skills";
    text-transform: uppercase;
}

.contact {
    height: 100%;
    background: #000;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact__container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: end;
}

.contact__heading {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.heading {
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #000;
    font-family: "contact";
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    left: 0;
}

.heading h1 {
    font-size: 20vw;
    line-height: 1.5;
}

.contact__info {
    height: 50vh;
    width: 100vw;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-direction: column;
    color: #fff;
    font-family: "contact";
}

.contact__info h3 {
    font-size: 4vw;
}

.contact__info p {
    font-size: 2vw;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}

.contact__info span {
    font-size: 4vw;
    font-family: "mail";
    text-transform: uppercase;

}

.contact__info span a {
    text-decoration: none;
    color: #fff;
}

.about__me {
    text-align: center;
    margin: 0 auto;
    padding: 1rem;
    font-size: 3rem;
    font-family: "VT323", monospace;
    color: #B9B8B9;
}

.initialize__animate {
    font-family: "VT323", monospace;
    font-weight: bold;
    font-size: 3vh;
    line-height: 1;
    color: limegreen;
    text-shadow: 0px 0px 10px limegreen;
    position: absolute;
    left: 5vw;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.profile__circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.profile__circle::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    transition: all 0.5s ease;
}

.profile__circle[data-reveal-partial="true"]::after {
    backdrop-filter: blur(10px);
}

.profile__circle[data-reveal="true"]::after {
    backdrop-filter: blur(0px);
}



.profile__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 1000px) {
    .mainSection {
        & .centeredBox {
            & .textContainer {
                height: 144px;
            }
        }
    }

    .mainSection {
        & .centeredBox {
            & .textContainer {
                & h2 {
                    font-size: 10rem;
                    letter-spacing: 0.5px;
                }
            }
        }
    }

    .mainSection {
        & .centeredBox {
            & .textContainer {
                & h2:nth-of-type(2) {
                    font-size: 10rem;
                }
            }
        }
    }

    .mainSection {
        & .centeredBox {
            & .textContainer {
                & h2:nth-of-type(3) {
                    letter-spacing: 0;
                    font-size: 10rem;
                }
            }
        }
    }

    .mainSection {
        & .centeredBox {
            & .textContainer {
                & h2:nth-of-type(4) {
                    font-size: 10rem;
                    letter-spacing: 0rem;
                }
            }
        }
    }

    .projectCard {
        height: 35vw;
    }

}

@media (max-width: 680px) {
    .mainSection {
        & .centeredBox {
            & .tag__box {
                & div {
                    font-size: 1.5rem;
                }
            }
        }
    }

    .projectCard {
        height: 40vw;
    }
}

@media (max-width: 560px) {
    .cursor {
        display: none;
    }

    .textStroke {
        color: #600606;
    }

    .mainSection {
        & .moreDetails {
            & .about {
                width: 100%;
            }
        }

        & .centeredBox {
            & .textContainer {
                height: 100px;

                & h2 {
                    font-size: 7rem;
                    letter-spacing: 0.5px;
                }

                & h2:nth-of-type(2) {
                    font-size: 7rem;
                }

                & h2:nth-of-type(3) {
                    letter-spacing: 0;
                    font-size: 8rem;
                }

                & h2:nth-of-type(4) {
                    font-size: 5rem;
                    letter-spacing: 0rem;
                }
            }

            & .top__box:nth-of-type(1) {
                left: 50%;
                transform: translateX(-50%);
                top: 7.5%;
            }

            & .tag__box {
                height: 1.5rem;
            }
        }

        & .moreDetails {
            & .horizontalScroll {
                & .text:nth-of-type(2) {
                    letter-spacing: 0;
                }
            }
        }
    }

    .profile__circle {
        top: 12.5%;
    }

    .projectCard {
        width: 70vw;
        height: 50vw;
        top: 40%;
    }

    .cardHeader {
        & h1 {
            font-size: 15vw;
        }

        & h3 {
            font-size: 3vw;
        }
    }

    .cardBody {
        & p {
            font-size: 2vw;
            width: 80%;
        }
    }

    .cardControllers {
        & p {
            font-size: 3vw;
        }

        & .icon {
            & svg {
                width: 35px;
                height: 35px;
            }
        }
    }

    .contact__container {
        align-items: start;
        height: 50vh;
    }

    .contact__info h3 {
        font-size: 8vw;
    }

    .contact__info p {
        font-size: 5vw;
    }

    .contact__info span {
        font-size: 6vw;
    }

    .skill__badge {
        padding: 0.2rem 1rem;
    }
}

@keyframes bounce {
    50% {
        transform: translateY(-50%);
    }
}