body {
    font-family: 'Inter', sans-serif;
}
.hero-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Slider Animations */
.slide-bg {
    opacity: 0;
    transition: all 1s ease-in-out;
}

.slide-bg.active {
    opacity: 1;
}

.slide-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-in-out;
}

.slide-content.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-title {
    animation: slideInLeft 0.8s ease-out;
}

.slide-description {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.slide-btn {
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}