/* Tech Animations and Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.tech-glow {
    position: relative;
}

.tech-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #3b82f6);
    filter: blur(10px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-glow:hover::after {
    opacity: 0.5;
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px border rgba(255, 255, 255, 0.1);
}

.dark .glass-card {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(255, 255, 255, 0.05);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Swiper Bullets */
.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #3b82f6 !important;
    opacity: 1;
    width: 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Tech Gradient Background */
.bg-tech-dark {
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
}
