@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
    }
    50% {
        text-shadow: 0 0 18px rgba(0, 212, 255, 0.7);
    }
}

.service-card,
.project-card,
.exp-card {
    animation: fadeInUp 0.55s ease-out both;
}

#services-grid .col-lg-4:nth-child(1) .service-card { animation-delay: 0.05s; }
#services-grid .col-lg-4:nth-child(2) .service-card { animation-delay: 0.1s; }
#services-grid .col-lg-4:nth-child(3) .service-card { animation-delay: 0.15s; }
#services-grid .col-lg-4:nth-child(4) .service-card { animation-delay: 0.2s; }
#services-grid .col-lg-4:nth-child(5) .service-card { animation-delay: 0.25s; }
#services-grid .col-lg-4:nth-child(6) .service-card { animation-delay: 0.3s; }

.neon-text {
    animation: glowPulse 4s ease-in-out infinite;
}

.floating-dashboard {
    animation: floatCard 7s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
    .dashboard-preview::after {
        animation: none;
    }

    .live-dot {
        animation: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .neon-text {
        animation: none;
    }

    .floating-dashboard {
        animation: none;
    }
}
