@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Rubik:wght@300;400;500;600;700&display=swap');

:root {
    --color-brand: #1A1F71;
    /* primary brand color */
    --color-brand-light: #3341c2;
    --color-brand-dark: #0f1245;
    --color-accent: #0ea5e9;
    --color-orange: #F0722A;
    --color-surface: #f8fafc;
}

/* Page typography */
body {
    font-family: 'Rubik', sans-serif;
    color: #0f172a;
    /* slate-900 fallback */
}

/* Headings use Outfit for strong display */
h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: 'Outfit', sans-serif;
}

/* Navbar font helper */
.font-navbar {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
}

/* Brand utilities */
.bg-brand {
    background-color: var(--color-brand);
}

.bg-brand-light {
    background-color: var(--color-accent);
}

.text-brand {
    color: var(--color-brand);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Glass and visual helpers */
.glass-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.glass-dark {
    background: rgba(26, 31, 113, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-glow:hover {
    box-shadow: 0 20px 40px -15px rgba(26, 31, 113, 0.15);
}

/* Accessibility & UX helpers */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.text-glow {
    text-shadow: 0 0 20px rgba(26, 31, 113, 0.25);
}

/* Form inputs used across contact/trust pages */
.glass-input {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 1);
    backdrop-filter: blur(4px);
}

.glass-input:focus {
    background: #fff;
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(26, 31, 113, 0.08);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--color-brand) !important;
    color: #fff !important;
    border-radius: 0.75rem;
    padding: 1rem;
    font-weight: 700;
    border: none !important;
    width: 100% !important;
    text-align: center;
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 8px 20px rgba(26, 31, 113, 0.12);
}

.btn-primary:hover {
    background: var(--color-orange);
}

/* Small utility tweaks for trust page */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
}

.hero-cta {
    box-shadow: 0 12px 30px rgba(26, 31, 113, 0.12);
}

/* Keep CSS minimal since layout heavily relies on Tailwind classes */