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

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

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Custom button styles */
.btn-primary {
    background-color: #ff6b35;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e05a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #0056b3;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* Custom card hover effect */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Gradient text */
.text-gradient {
    background: linear-gradient(90deg, #0056b3, #00a0e1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #003d82;
}