@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..96,100..1000&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --brand-cyan: #00AEEE;
    --brand-cyan-dark: #0092c8;
    --brand-navy: #0b1320;
    --brand-slate: #060a12;
}

/* Universal Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
}



/* Global Font: Google Sans Flex */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    font-family: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #0f172a;
    background-color: #ffffff;
}

/* Hero Section (Strict Full Viewport) */
.hero-viewport-section {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1023px) {
    .hero-viewport-section {
        min-height: 100vh;
        height: auto;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }
}

/* Standard Flow Content Sections */
.flow-section {
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: hidden;
}

/* Media Elements Universal Constraint */
img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    max-width: 100%;
    height: auto;
}

/* White Filter for Social Media Icons */
.icon-white {
    filter: brightness(0) invert(1);
}

/* =========================================================================
   INFINITE MARQUEE SLIDER & PARTNER STYLES
   ========================================================================= */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

/* Partner Logo Card (Full Color, No Grayscale) */
.partner-logo-box {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo-box:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.partner-logo-box img {
    filter: none !important;
    transition: transform 0.3s ease;
}

.partner-logo-box:hover img {
    transform: scale(1.05);
}

/* Executive Card Elevation */
.executive-card {
    background: #ffffff;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(226, 232, 240, 0.8);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.executive-card:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 174, 238, 0.12), 0 0 0 1px rgba(0, 174, 238, 0.3);
    transform: translateY(-2px);
}

/* =========================================================================
   GLOBAL TYPOGRAPHY OVERRIDE - NORMAL FONT WEIGHT FOR TITLES & HEADINGS
   ========================================================================= */
h1, h2, h3, h4, h5, h6,
.section-title,
.font-black,
.font-extrabold,
.font-bold {
    font-weight: 400 !important;
}