/* Custom Styles */

/* Glassmorphism utilities */
.glass-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Swiper custom pagination */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: #8CC63F !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* Testimonial specific styles */
.testimonialSwiper {
    padding: 20px 0 40px !important;
}

.testimonial-card {
    opacity: 0.5;
    transform: scale(0.9);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-slide-active .testimonial-card {
    opacity: 1;
    transform: scale(1.05);
    z-index: 10;
    background-color: white;
    color: #0f172a;
}

.swiper-slide-active .testimonial-card h4 {
    color: #0f172a;
}

.swiper-slide-active .testimonial-card p {
    color: #334155;
    font-weight: 500;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8CC63F;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

html {
    scroll-behavior: smooth;
}

/* Linear Animations */
@keyframes laser-scan {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}
.animate-laser-scan {
    animation: laser-scan 4s linear infinite;
}

@keyframes scan {
    0% { transform: rotate(-45deg) translateY(-100%); }
    100% { transform: rotate(-45deg) translateY(100%); }
}
.animate-scan-fast {
    animation: scan 8s linear infinite;
}
.animate-scan-slow {
    animation: scan 15s linear infinite;
}

@keyframes scroll-right {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}
.animate-scroll-right {
    animation: scroll-right 4s linear infinite;
}
