@import url(../main.css);


.glass-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glow-effect {
    box-shadow: 0 0 15px rgba(198, 75, 235, 0.5);
}

.glow-text {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-border {
    position: relative;
}

.gradient-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tech-pattern {
    background-image:
        radial-gradient(circle at 25% 25%, rgba(180, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
}

.feature-tab {
    transition: all 0.3s ease;

}

.feature-tab.active {
    background: var(--primary);
    border:2px solid white;
    color: white;
    box-shadow: 2px 2px 2px rgba(198, 75, 235, 0.5);
}

.device-mockup {
    filter: drop-shadow(0 10px 20px #7b52c761);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 240, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

.testimonial-carousel {
    scroll-snap-type: x mandatory;
}

.testimonial-slide {
    scroll-snap-align: start;
}