/* custom.css */

* {
    font-family: 'Inter', sans-serif;
}
html {
    scroll-behavior: smooth;
}
.gradient-bg {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}
.logo-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.service-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}
.service-card: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);
}
.nav-link {
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #fbbf24;
}
.certification-badge {
    background: linear-gradient(45deg, #10b981, #34d399);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin: 4px;
    display: inline-block;
}