.gradient-bg {
    background: linear-gradient(90deg, #1466b0 0%, #1274bb 50%, #263995 100%);
}

.hero-pattern {
    background-image:
        radial-gradient(circle at 25% 25%, rgba(20, 102, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(18, 116, 187, 0.1) 0%, transparent 50%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nav-glass {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', system-ui, sans-serif;

    /* text-transform: uppercase; */
    /* letter-spacing: 3px; */
    font-weight: 600;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
}


@media only screen and (max-width: 600px) {
    .fixed img {
        /* width: 260px; */
        height: 50px;
    }
}