@theme {
    --color-primaryBlue: #004681;
    --color-brandDark: #0f172a;
    --color-primaryLightBlue: #5c8edf;

    --animate-marquee: marquee 10s linear infinite;
    --animate-marquee2: marquee2 10s linear infinite;
}

body {
    font-family: "Lato", sans-serif;
}

@font-face {
    font-family: "Lato";
    src: url("/fonts/Lato/Lato-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Lato";
    src: url("/fonts/Lato/Lato-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: "Lato";
    src: url("/fonts/Lato/Lato-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Lato";
    src: url("/fonts/Lato/Lato-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "Lato";
    src: url("/fonts/Lato/Lato-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Lato";
    src: url("/fonts/Lato/Lato-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Lato";
    src: url("/fonts/Lato/Lato-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Lato";
    src: url("/fonts/Lato/Lato-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "Lato";
    src: url("/fonts/Lato/Lato-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}

/* ////// */
/* Custom */
/* ////// */
.hero-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

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

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

.header-transparent {
    background: rgba(30, 64, 175, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-scrolled {
    background: var(--color-primaryBlue);
    backdrop-filter: blur(10px);
}

.overlap-cards {
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.gradient-bg {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.hero-bg {
    background-size: cover;
    background-position: center;
}

.partners-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero-bg {
        background-position: 40% center;
    }
}

/* Client marquee animations */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes marquee2 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}
.animate-marquee {
    animation: marquee 10s linear infinite;
}

.animate-marquee2 {
    animation: marquee2 10s linear infinite;
}
