body { font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, sans-serif; }
.gradient-primary {
    background: linear-gradient(135deg, #004a8f 0%, #0a76c2 100%);
}
.gradient-hero {
    background: linear-gradient(135deg, #002f5f 0%, #004a8f 55%, #0a76c2 100%);
}
.text-gradient {
    background: linear-gradient(135deg, #004a8f 0%, #0a76c2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.nav-link {
    position: relative;
    transition: all 0.2s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: linear-gradient(135deg, #004a8f 0%, #0a76c2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link.active {
    color: #0a76c2;
}
@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}
.notification-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #004a8f 0%, #0a76c2 100%);
    border-radius: 50%;
    animation: pulse-ring 1.5s ease-out infinite;
}
.logo-glow {
    box-shadow: 0 0 20px rgba(0, 74, 143, 0.5), 0 0 40px rgba(10, 118, 194, 0.3);
}
.logo-glow:hover {
    box-shadow: 0 0 25px rgba(0, 74, 143, 0.6), 0 0 50px rgba(10, 118, 194, 0.4);
}
.nav-dropdown {
    transform-origin: top right;
}
.cta-glow {
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4), 0 2px 8px rgba(165, 13, 38, 0.3);
    transition: all 0.3s ease;
}
.cta-glow:hover {
    box-shadow: 0 6px 25px rgba(200, 16, 46, 0.5), 0 4px 12px rgba(165, 13, 38, 0.4);
    transform: translateY(-1px);
}
