:root {
    --wps-neon: #ccff00;
    --wps-dark: #fff;
    --wps-bezier: cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
    overflow-x: hidden;
}

.vc_row,
.vc_section,
.vc_column_container,
.vc_column-inner {
    overflow: visible !important;
    transform: none !important;
    position: relative;
}

.wps-wrapper {
    width: 100%;
    overflow: visible;
}

.wps-header {
    padding: 0 5%;
    margin-bottom: 40px;
}

.wps-main-title {
    display: none;
}

.wps-highlight {
    background: linear-gradient(to top, var(--wps-neon) 45%, transparent 45%);
    padding: 0 10px;
}

.wps-viewport {
    width: 100vw;
    height: 500px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
}

.wps-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.wps-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    max-width: 75vw;
    opacity: 0;
    transition: transform 0.7s var(--wps-bezier), opacity 0.7s ease;
    cursor: pointer;
}

.wps-slide.wps-ready {
    opacity: 1;
}

.wps-no-transition {
    transition: none !important;
}

.wps-image-container img {
    width: 100%;
    display: block;
}

.wps-slide.center {
    transform: translate3d(-50%, -50%, 200px);
    z-index: 100;
}

.wps-slide.left-1 {
    transform: translate3d(-115%, -50%, 0) rotateY(25deg) scale(0.8);
    z-index: 50;
    opacity: 1;
}

.wps-slide.right-1 {
    transform: translate3d(15%, -50%, 0) rotateY(-25deg) scale(0.8);
    z-index: 50;
    opacity: 1;
}

.wps-slide.left-2 {
    transform: translate3d(-160%, -50%, -200px) rotateY(40deg) scale(0.6);
    z-index: 10;
}

.wps-slide.right-2 {
    transform: translate3d(60%, -50%, -200px) rotateY(-40deg) scale(0.6);
    z-index: 10;
}

.wps-slide.hidden {
    opacity: 0;
    pointer-events: none;
}

.wps-content-area {
    margin-top: 25px;
}

.wps-project-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 0px;
    background: transparent;
    color: #1a2826;
    text-decoration: none;
    border-radius: 24px;
}

.wps-project-btn:hover {
    color: #eb93fe!important;
	text-decoration:none!important;
}

.wps-navigation {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.wps-nav-btn {
    width: 60px;
    height: 40px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .wps-viewport {
        height: 350px;
    }
    .wps-slide {
        width: 85vw;
    }
}
