@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

.feature-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.gradient-text {
    background: linear-gradient(90deg, #ff00cc, #3333ff, #00ffcc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body {
    animation: bgPulse 20s ease infinite;
}

@keyframes bgPulse {
    0% { background-color: #f0f0ff; }
    25% { background-color: #fff0f0; }
    50% { background-color: #f0fff0; }
    75% { background-color: #f0f0ff; }
    100% { background-color: #fff0f0; }
}
