﻿
html, body {
    width: 100%;
    height: 100%;
}

header {
    background-color: red;
}

body, html {
    margin: 0;
    padding: 0;
}

#superContainer {
    height: 100%;
    position: relative;
}

.section {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.custom-full1 {
    background: grey;
}

.slide {
    float: left;
}

.slide, .slidesContainer {
    height: 100%;
    display: block;
}

.slides {
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.section.table,
.slide.table {
    display: table;
    width: 100%;
}

.tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.slidesContainer {
    float: left;
    position: relative;
}

.controlArrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    width: 0px;
    height: 0px;
    border-style: solid;
    margin-top: -38px;
}

    .controlArrow.prev {
        left: 15px;
        width: 0px;
        border-width: 38.5px 34px 38.5px 0;
        border-color: transparent #fff transparent transparent;
    }

    .controlArrow.next {
        right: 15px;
        border-width: 38.5px 0 38.5px 34px;
        border-color: transparent transparent transparent #fff;
    }

.scrollable {
    overflow: scroll;
}

.easing {
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
}

#fullPage-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
}

    #fullPage-nav.right {
        right: 17px;
    }

    #fullPage-nav.left {
        left: 17px;
    }

.fullPage-slidesNav {
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}

    .fullPage-slidesNav.bottom {
        bottom: 17px;
    }

    .fullPage-slidesNav.top {
        top: 17px;
    }

    #fullPage-nav ul,
    .fullPage-slidesNav ul {
        margin: 0;
        padding: 0;
    }

    #fullPage-nav li,
    .fullPage-slidesNav li {
        display: block;
        width: 14px;
        height: 13px;
        margin: 7px;
        position: relative;
    }

    .fullPage-slidesNav li {
        display: inline-block;
    }

        #fullPage-nav li a,
        .fullPage-slidesNav li a {
            display: block;
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            cursor: pointer;
            text-decoration: none;
        }

    #fullPage-nav li .active span,
    .fullPage-slidesNav .active span {
        background: rgba(0,255,140,1);
    }

    #fullPage-nav span,
    .fullPage-slidesNav span {
        top: 2px;
        left: 2px;
        width: 8px;
        height: 8px;
        border: 1px solid rgba(0,255,140,1);
        background: rgba(0, 0, 0, 0);
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        position: absolute;
        z-index: 1;
    }

.fullPage-tooltip {
    position: absolute;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    top: -2px;
}

    .fullPage-tooltip.right {
        right: 20px;
    }

    .fullPage-tooltip.left {
        left: 20px;
    }

canvas.matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section {
    background: transparent;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
}

.item img {
    width: 100%;
    max-width: 1000px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .item img.hovered {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(0,255,140,1);
    }

.itemmimg.hovered {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0,255,140,1);
}

body {
    background: #000;
}

.glitch {
    position: relative;
    font-size: 2.5em;
    color: #fff;
    animation: glitch-cycle 6s infinite;
}

    .glitch::before,
    .glitch::after {
        content: attr(data-text);
        position: absolute;
        left: 0;
        width: 100%;
        overflow: hidden;
        color: #fff;
        clip: rect(0, 900px, 0, 0);
    }

    .glitch::before {
        animation: glitch-before 6s infinite;
    }

    .glitch::after {
        animation: glitch-after 6s infinite;
    }

@keyframes glitch-cycle {
    0%, 85%, 100% {
        opacity: 1;
    }

    86%, 87%, 88%, 89%, 90%, 91%, 92%, 93%, 94% {
        opacity: 0.9;
    }
}

@keyframes glitch-before {
    0%, 85%, 100% {
        clip: rect(0, 0, 0, 0);
    }

    86% {
        clip: rect(10px, 9999px, 50px, 0);
        transform: translate(-2px, -2px);
    }

    88% {
        clip: rect(85px, 9999px, 140px, 0);
        transform: translate(2px, 1px);
    }

    90% {
        clip: rect(40px, 9999px, 80px, 0);
        transform: translate(-1px, 2px);
    }

    92% {
        clip: rect(20px, 9999px, 60px, 0);
        transform: translate(1px, -1px);
    }

    94% {
        clip: rect(0, 0, 0, 0);
        transform: none;
    }
}

@keyframes glitch-after {
    0%, 85%, 100% {
        clip: rect(0, 0, 0, 0);
    }

    86% {
        clip: rect(60px, 9999px, 120px, 0);
        transform: translate(1px, 1px);
    }

    88% {
        clip: rect(30px, 9999px, 90px, 0);
        transform: translate(-1px, -2px);
    }

    90% {
        clip: rect(70px, 9999px, 130px, 0);
        transform: translate(2px, 0);
    }

    92% {
        clip: rect(10px, 9999px, 50px, 0);
        transform: translate(-2px, 1px);
    }

    94% {
        clip: rect(0, 0, 0, 0);
        transform: none;
    }
}

.section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    text-align: center;
}

.content {
    max-width: 100%;
}

.item img, .itemm img {
    max-height: 79vh;
    width: auto;
    max-width: 79vw;
    margin-bottom: 10px;
}


.glitchhh {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #fff;
    margin-top: 30px;
    max-width: 65vw;
    margin-left: auto;
    margin-right: auto;
}

/* From Uiverse.io by PriyanshuGupta28 */
.ai-matrix-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ai-matrix-loader {
    width: 120px;
    height: 160px;
    margin: 20px auto 10px;
    position: relative;
    perspective: 800px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.digit {
    color: #00ff88;
    font-family: monospace;
    font-size: 18px;
    text-align: center;
    text-shadow: 0 0 5px #00ff88;
    animation: matrix-fall 2s infinite, matrix-flicker 0.5s infinite;
    opacity: 0;
}

    .digit:nth-child(1) {
        animation-delay: 0.1s;
    }

    .digit:nth-child(2) {
        animation-delay: 0.3s;
    }

    .digit:nth-child(3) {
        animation-delay: 0.5s;
    }

    .digit:nth-child(4) {
        animation-delay: 0.7s;
    }

    .digit:nth-child(5) {
        animation-delay: 0.9s;
    }

    .digit:nth-child(6) {
        animation-delay: 1.1s;
    }

    .digit:nth-child(7) {
        animation-delay: 1.3s;
    }

    .digit:nth-child(8) {
        animation-delay: 1.5s;
    }

.glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: matrix-pulse 2s infinite;
}

.ai-matrix-loader-txt {
    color: #00ff88;
    font-family: monospace;
    font-size: 16px;
    text-shadow: 0 0 5px #00ff88;
    margin-top: 10px;
    text-align: center;
}

@keyframes matrix-fall {
    0% {
        transform: translateY(-50px) rotateX(90deg);
        opacity: 0;
    }

    20%, 80% {
        transform: translateY(0) rotateX(0deg);
        opacity: 0.8;
    }

    100% {
        transform: translateY(50px) rotateX(-90deg);
        opacity: 0;
    }
}

@keyframes matrix-flicker {
    0%, 19%, 21%, 100% {
        opacity: 0.8;
    }

    20% {
        opacity: 0.2;
    }
}

@keyframes matrix-pulse {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

#loader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

body.loaded #loader {
    display: none;
}

.sliderImg img {
    display: block;
    max-width: 100%;
}

.sliderImg main {
    display: grid;
    place-items: center;
    min-height: 100vh;
}

.sliderImg .container {
    display: grid;
    place-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    --position: 50%;
    max-height: 79vh;
    max-width: 85vw;
}

.sliderImg .slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.sliderImg .image-before {
    position: absolute;
    inset: 0;
    width: var(--position);
}

.sliderImg .slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
}

    .sliderImg .slider:focus-visible ~ .slider-button {
        outline: 5px solid black;
        outline-offset: 3px;
    }

.sliderImg .slider-line {
    position: absolute;
    inset: 0;
    width: .2rem;
    height: 100%;
    background-color: #fff;
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
}

.sliderImg .slider-button {
    position: absolute;
    background-color: #fff;
    color: black;
    padding: .5rem;
    border-radius: 100vw;
    display: grid;
    place-items: center;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 1px 1px 1px hsl(0, 50%, 2%, .5);
}

.sliderImg {
    max-height: 79vh;
    max-width: 85vw;
    margin-left: auto;
    margin-right: auto;
}

.image-container {
    position: relative;
}

.social {
    position: fixed;
    right: 30px;
    top: 20px;
    z-index: 100;
}

.socialimg {
    width: 50px;
    padding-left: 7px;
}

.social1 .socialimg {
    width: 64px;
    padding-left: 0px;
}

.image-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .image-popup-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .image-popup-overlay img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 12px;
        box-shadow: 0 0 40px rgba(0,255,140,0.5);
        cursor: grab;
        touch-action: none;
    }

        .image-popup-overlay img.zoomed {
            transform: scale(1.8);
            cursor: zoom-out;
        }

.image-popup-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    color: #00ff88;
    cursor: pointer;
    text-shadow: 0 0 10px #00ff88;
    transition: transform 0.2s;
}

    .image-popup-close:hover {
        transform: scale(1.2);
    }

.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0,255,136,0.15);
    border: 1px solid #00ff88;
    color: #00ff88;
    font-family: monospace;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10000; 
    backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(0,255,136,0.4);
    opacity: 1;
    pointer-events: auto; 
    transition: all 0.3s ease;
}

    .back-to-top:hover {
        background: rgba(0,255,136,0.25);
        transform: scale(1.05);
    }




.video-wrapper-desktop {
    display: block;
}

.video-wrapper-mobile {
    display: none;
}

@media only screen and (max-width: 989px) {
    .video-wrapper-desktop {
        display: none;
    }

    .video-wrapper-mobile {
        display: block;
    }
}




.sec1.active ~ .back-to-top,
.sec1.active ~ #backToTop {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: scale(0.8);
}