.glass-nav {
    background-color: color-mix(in oklch, var(--background), transparent 20%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@keyframes bounce-x-left {
    0%, 100% { transform: translateX(0) translateY(-50%); }
    50%       { transform: translateX(-25%) translateY(-50%); }
}

@keyframes bounce-x-right {
    0%, 100% { transform: translateX(0) translateY(-50%); }
    50%       { transform: translateX(25%) translateY(-50%); }
}

.animate-bounce-left  { animation: bounce-x-left  1s infinite; }
.animate-bounce-right { animation: bounce-x-right 1s infinite; }

.testimonialSwiper .swiper-wrapper {
    transition-timing-function: linear;
}

@keyframes pulse-red-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.8), 0 0 0 0 rgba(220, 38, 38, 0.3); }
    50%       { box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.2), 0 0 0 14px rgba(220, 38, 38, 0); }
}

.border-pulse-red {
    border: 3px solid rgb(220, 38, 38);
    animation: pulse-red-border 1.6s ease-in-out infinite;
}
