
body {
    font-family: 'Metropolis', sans-serif;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f2f9ff+100 */
    background: linear-gradient(to bottom,  #ffffff 0%,#f2f9ff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    min-height: 100vh;
    color: #0d1b2a;
}

:root {
    --Gradient-Footer: linear-gradient(180deg, rgba(191, 223, 255, 0) 0%, var(--Tertiary-Darker, #BFDFFF) 100%);
}




h1 {
    color: #404E6B;
    font-family: 'Metropolis', sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
}

h2 {
    color: #404E6B;
    font-family: 'Metropolis', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
}

h3 {
    color: #404E6B;
    font-family: 'Metropolis', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
}

h4 {
    color: #404E6B;
    font-family: 'Metropolis', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
}

h5 {
    color: #404E6B;
    font-family: 'Metropolis', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}

h6 {
    color: #404E6B;
    font-family: 'Metropolis', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}

.btn-sapius {
    border-radius: 100px;
    background: #006CD9;
    box-shadow: 0 7px 29px 0 rgba(0, 127, 255, 0.10);
}

/* Preloader container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* or match your site bg */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Loader animation */
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #007BFF; /* Bootstrap primary or any color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
