@charset "utf-8";
/* CSS Document */


@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Oxanium:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');
body {
    font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000409;
}
::-webkit-scrollbar-thumb {
    background: #ff6600;
border-radius: 4px;
}

/* Animation for hero section */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.hero-logo {
    animation: float 6s ease-in-out infinite;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ff6600;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #e65c00;
}

/* Partners section */
.partners-section {
    padding: 4rem 0;
    background: rgba(0,4,9,0.8);
}

.partners-title {
    font-family: 'Oswald', sans-serif;
    text-align: center;
    margin-bottom: 3rem;
    color: #4cc9f0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.partner-logo {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
}

.btn, button {
    font-family: 'Oxanium', sans-serif;
}
