html {
    scroll-behavior: smooth;
}
body {
    font-family: system-ui, -apple-system, sans-serif;
}
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
.shadow-med {
    box-shadow: 0 4px 20px rgba(22,93,255,0.1);
}
.banner-gradient {
    background: linear-gradient(135deg,#165DFF 0%,#36CFC9 100%);
}
.text-primary {
    color:#165DFF;
}
.bg-primary {
    background-color:#165DFF;
}
.bg-light {
    background-color:#F0F7FF;
}
.text-secondary {
    color:#36CFC9;
}
.bg-dark {
    background-color:#1D2129;
}
.hover-up{
    transition: transform 0.25s ease;
}
.hover-up:hover{
    transform: translateY(-4px);
}