/* MyPoints Corporate Web Design System & Main Stylesheet */
:root {
    --bg-dark: #01122c;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --border-glass: rgba(1, 18, 44, 0.08);
    --border-glass-hover: rgba(0, 75, 175, 0.15);
    --primary: #01122c; /* Brand Deep Navy Dark Blue (sampled #01122c) */
    --royal-blue: #004baf; /* Brand Royal Blue (sampled #004baf) */
    --royal-blue-hover: #003d91;
    --primary-glow: rgba(0, 75, 175, 0.1);
    --accent: #d34a4a; /* Brand Crimson/Coral Accent (sampled #d34a4a) */
    --accent-glow: rgba(211, 74, 74, 0.15);
    --text-light: #1e293b; /* Dark slate body text */
    --text-muted: #64748b; /* Balanced muted slate */
    --navy-deep: #ffffff; /* Clean light background */
    --font-sans: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --bs-warning: #d34a4a;
    --bs-warning-rgb: 211, 74, 74;
    --bs-primary: #01122c;
    --bs-primary-rgb: 1, 18, 44;
    --bs-info: #004baf;
    --bs-info-rgb: 0, 75, 175;
    --bs-danger: #d34a4a;
    --bs-danger-rgb: 211, 74, 74;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--navy-deep);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Canvas & Glowing Overlays */
#interactive-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    opacity: 0.35; /* Enhanced visibility in dark mode */
}

.ambient-glow {
    position: fixed;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 64, 112, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.ambient-glow-left {
    position: fixed;
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(237, 62, 61, 0.08) 0%, transparent 75%);
    z-index: -1;
    pointer-events: none;
}

/* Animated Hero Background */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/corporate_headquarters.png');
    background-size: cover;
    background-position: center;
    transform: scale(1);
    animation: heroZoomPan 35s infinite alternate ease-in-out;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.88) 0%, rgba(5, 16, 33, 0.96) 100%);
    z-index: 1;
}

@keyframes heroZoomPan {
    0% {
        transform: scale(1.0);
        background-position: center 20%;
    }
    50% {
        transform: scale(1.15);
        background-position: center 40%;
    }
    100% {
        transform: scale(1.05);
        background-position: center 60%;
    }
}

/* Glassmorphism Classes */
.glass-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.65) 100%);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 35px !important;
    transition: var(--transition);
}

.glass-panel:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-color: var(--border-glass-hover);
    box-shadow: 0 20px 50px rgba(0, 64, 112, 0.08), 0 0 30px var(--accent-glow);
    transform: translateY(-5px);
}

/* Typography Customizations */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary);
}

/* Premium Buttons */
.btn-premium {
    position: relative;
    background: linear-gradient(135deg, #004070 0%, #0072bb 100%);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 35px;
    font-weight: 600;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 64, 112, 0.3);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ed3e3d 0%, #f46f60 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 62, 61, 0.5);
    color: #fff;
}

/* Sticky Dark Premium Header Navigation */
.navbar-corporate {
    background: #07162c !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    transition: var(--transition);
    z-index: 1030;
}

.navbar-corporate.scrolled {
    padding: 12px 0;
    background: rgba(7, 22, 44, 0.95) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.navbar-brand img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1); /* Ensures logo is white/silver on dark background */
    transition: var(--transition);
}

.nav-link-corp {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
}

.nav-link-corp:hover, .nav-link-corp.active {
    color: #ffffff !important;
}

.navbar-corporate .dropdown-toggle::after {
    display: none !important;
}

.nav-link-corp::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 16px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link-corp.active::after {
    width: calc(100% - 32px);
}

.nav-link-corp:hover::after {
    width: calc(100% - 32px);
    background-color: #ffffff;
}

/* Dropdown Menu */
.dropdown-menu-corp {
    background: #0a1b35 !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 15px !important;
    min-width: 260px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.dropdown-item-corp {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 10px 15px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-item-corp i {
    color: #ffffff !important; /* Force icons to be white/high-contrast in the dark dropdown */
    opacity: 0.9;
}

.dropdown-item-corp:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    padding-left: 20px !important;
}

.dropdown-item-corp:hover i {
    opacity: 1;
}

/* Page Section Spacing & Structure */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 40%, #005d9b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

/* Custom Timelines */
.timeline-corp {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid var(--border-glass);
}

.timeline-item-corp {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item-corp::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--navy-deep);
    box-shadow: 0 0 8px var(--accent);
}

/* Footer Section */
.footer-corp {
    background: #001220;
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 30px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Makes the logo white on dark footer background */
    transition: var(--transition);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(3px);
}

/* Scroll progress bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 1050;
    width: 0%;
    transition: width 0.1s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

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

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

/* Ecosystem Network Section */
.ecosystem-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.ecosystem-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ecosystem-svg path {
    transition: all 0.4s ease;
}

/* Active glowing connections */
.ecosystem-svg path.active-connection {
    stroke-width: 3;
    opacity: 1;
    stroke-dasharray: 8 5;
    animation: dashOffset 1.2s linear infinite;
    filter: drop-shadow(0 0 8px currentColor);
}

@keyframes dashOffset {
    to {
        stroke-dashoffset: -20;
    }
}

.ecosystem-grid {
    position: relative;
    z-index: 2;
    width: 100%;
}

.ecosystem-card {
    transition: var(--transition);
}

.ecosystem-card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Center Hub Style */
.ecosystem-center-wrapper {
    position: relative;
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-hub {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #001220 0%, #004070 100%);
    border: 3px solid var(--accent);
    border-radius: 50%;
    color: white;
    z-index: 3;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 18, 32, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ecosystem-hub-glow {
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 2;
    animation: hubPulse 4s infinite ease-in-out;
}

@keyframes hubPulse {
    0%, 100% {
        transform: scale(1.0);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

.hub-logo {
    width: 65px;
    filter: brightness(10);
    transition: var(--transition);
}

.ecosystem-center-wrapper:hover .hub-logo {
    transform: scale(1.08);
}

.hub-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 5px;
}

.hub-subtitle {
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
}

/* Competitive Edge / Why Choose Us Features */
.feature-block {
    border-left: 4px solid transparent;
    padding-left: 20px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    transition: var(--transition);
}

.feature-block:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateX(5px);
}

.border-left-warning {
    border-left-color: var(--accent) !important;
}

.border-left-info {
    border-left-color: #0072bb !important;
}

.border-left-danger {
    border-left-color: #f25a4f !important;
}

/* Interactive Network Connections Overrides */
.network-item {
    background: rgba(0, 18, 32, 0.85) !important;
}
.network-item:hover {
    background: rgba(0, 64, 112, 0.95) !important;
    border-color: var(--accent) !important;
}
.text-muted {
    color: var(--text-muted) !important;
}

/* Refreshed Premium Form Controls (Light background for contrast) */
.form-control, .form-select,
.form-control.bg-dark, .form-select.bg-dark,
.form-control.bg-black, .form-select.bg-black {
    background-color: #f8fafc !important;
    border: 1px solid rgba(7, 22, 44, 0.1) !important;
    color: #07162c !important;
    border-radius: 10px !important;
    padding: 12px 18px !important;
    transition: var(--transition) !important;
}
.form-control:focus, .form-select:focus,
.form-control.bg-dark:focus, .form-select.bg-dark:focus,
.form-control.bg-black:focus, .form-select.bg-black:focus {
    background-color: #ffffff !important;
    border-color: var(--royal-blue) !important;
    color: #07162c !important;
    box-shadow: 0 0 12px rgba(0, 86, 179, 0.18) !important;
    outline: none !important;
}
.form-control::placeholder {
    color: #94a3b8 !important;
}

/* Contrast & Legibility Overrides for Dark Background elements (e.g. sections/cards with bg-dark or bg-black) */
.bg-dark, .bg-black, [class*="bg-opacity"] {
    color: #ffffff;
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.bg-black h1, .bg-black h2, .bg-black h3, .bg-black h4, .bg-black h5, .bg-black h6 {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}
.bg-dark p, .bg-dark span, .bg-dark small, .bg-dark li,
.bg-black p, .bg-black span, .bg-black small, .bg-black li {
    color: rgba(255, 255, 255, 0.85) !important;
}
.bg-dark i, .bg-black i {
    color: #ffffff !important;
}

/* Fix Bootstrap text utility helpers inside dark background containers */
.bg-dark .text-primary, .bg-black .text-primary {
    color: #ffffff !important;
}
.bg-dark .text-info, .bg-black .text-info {
    color: #38bdf8 !important; /* Bright cyan/blue */
}
.bg-dark .text-warning, .bg-black .text-warning {
    color: #f59e0b !important; /* Bright amber/yellow */
}
.bg-dark .text-danger, .bg-black .text-danger {
    color: #f87171 !important; /* Bright light-red */
}
.bg-dark .text-success, .bg-black .text-success {
    color: #4ade80 !important; /* Bright green */
}
.bg-dark .text-muted, .bg-black .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}
.bg-dark .text-light, .bg-black .text-light {
    color: #ffffff !important;
}

/* Who We Are Showcase Image */
.who-image-box {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.who-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/blue_skyscrapers.png');
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.who-image-box:hover .who-image-bg {
    transform: scale(1.06);
}
.who-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.95) 100%);
    pointer-events: none;
}

/* Bootstrap Utility Overrides to restrict color palette strictly to brand colors */
.bg-black {
    background-color: #051021 !important;
}
.bg-dark {
    background-color: #07162c !important;
}

/* Section Background Separators using Brand Blues */
.section-bg-deep-blue {
    background-color: #f6f7fc !important;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}
.section-bg-medium-blue {
    background-color: #f9fafc !important;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}
.section-bg-bright-blue {
    background-color: #ffffff !important;
}

/* Refreshed Hero Text Overrides */
.hero-section h1 {
    color: #ffffff !important;
}
.hero-section p {
    color: rgba(255, 255, 255, 0.75) !important;
}
.hero-section .section-subtitle {
    color: var(--accent) !important;
}

/* Custom Underline with Blue & Red Segments */
.title-underline {
    display: flex;
    gap: 4px;
    height: 4px;
    width: 80px;
    margin-bottom: 25px;
}
.title-underline.mx-auto {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.title-underline .line-blue {
    width: 50px;
    height: 100%;
    background-color: var(--royal-blue);
    border-radius: 2px;
}
.title-underline .line-red {
    width: 20px;
    height: 100%;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Consultation Nav Button */
.btn-consultation {
    background-color: var(--royal-blue);
    color: #ffffff !important;
    border: none;
    border-radius: 25px;
    padding: 9px 24px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.btn-consultation:hover {
    background-color: var(--royal-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
}

/* Floating Statistics Card Row */
.stats-floating-container {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}
.stats-floating-grid {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(7, 22, 44, 0.08);
    border: 1px solid rgba(7, 22, 44, 0.05);
    padding: 35px 20px;
}
.stat-card-premium {
    text-align: center;
    padding: 15px;
    position: relative;
}
.stat-card-premium:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(7, 22, 44, 0.08);
}
@media (max-width: 991px) {
    .stat-card-premium:not(:last-child)::after {
        display: none;
    }
    .stat-card-premium {
        border-bottom: 1px solid rgba(7, 22, 44, 0.08);
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    .stat-card-premium:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}
.stat-icon-wrapper {
    width: 54px;
    height: 54px;
    background: rgba(0, 86, 179, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--royal-blue);
    font-size: 20px;
    transition: var(--transition);
}
.stat-card-premium:hover .stat-icon-wrapper {
    background: var(--royal-blue);
    color: #ffffff;
    transform: scale(1.1);
}
.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    letter-spacing: -1px;
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
}

/* Premium White Card Layouts */
.glass-panel {
    background: #ffffff !important;
    border: 1px solid rgba(7, 22, 44, 0.06) !important;
    box-shadow: 0 10px 30px rgba(7, 22, 44, 0.03) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 16px;
    transition: var(--transition) !important;
    color: var(--text-light) !important;
}
.glass-panel h1, .glass-panel h2, .glass-panel h3, .glass-panel h4, .glass-panel h5, .glass-panel h6,
.glass-panel .text-primary, .glass-panel .text-light, .glass-panel .text-dark {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary) !important;
}
.glass-panel p, .glass-panel span, .glass-panel small, .glass-panel li,
.glass-panel .text-muted,
.bg-dark .glass-panel .text-muted, .bg-black .glass-panel .text-muted,
.bg-dark .glass-panel p, .bg-black .glass-panel p {
    color: var(--text-muted) !important;
}
.glass-panel:hover {
    background: #ffffff !important;
    border-color: rgba(0, 86, 179, 0.2) !important;
    box-shadow: 0 15px 40px rgba(7, 22, 44, 0.08) !important;
    transform: translateY(-5px);
}

/* Floating Card Accent badge style */
.badge-floating-integrity {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(7, 22, 44, 0.1);
    border: 1px solid rgba(7, 22, 44, 0.06);
    padding: 15px 25px;
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}
.badge-floating-integrity:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(7, 22, 44, 0.15);
}
.badge-floating-integrity i {
    width: 40px;
    height: 40px;
    background: rgba(0, 86, 179, 0.08);
    color: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Underline segment for unit lists */
.custom-bullet-list li {
    position: relative;
    padding-left: 25px;
}
.custom-bullet-list li .bullet-dot {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Swiper custom navigations */
.swiper-button-next, .swiper-button-prev {
    color: var(--royal-blue) !important;
}

/* Interactive Network overrides */
.network-center {
    background: linear-gradient(135deg, var(--royal-blue) 0%, #07162c 100%) !important;
    border-color: var(--royal-blue) !important;
    box-shadow: 0 0 30px rgba(0, 86, 179, 0.3) !important;
}
.network-item {
    background: #ffffff !important;
    border-color: rgba(7, 22, 44, 0.08) !important;
    color: var(--text-light) !important;
    box-shadow: 0 5px 15px rgba(7, 22, 44, 0.04) !important;
}
.network-item:hover {
    background: var(--royal-blue) !important;
    border-color: var(--royal-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3) !important;
}

/* Trusted By Brands Section */
.trusted-brands-section {
    background-color: #00122c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}
.trusted-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-align: center;
}
.brand-logos-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.brand-logo-img {
    height: 34px;
    width: auto;
    max-width: 140px;
    opacity: 0.8;
    transition: var(--transition);
}
.brand-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Let's Build CTA Banner Section */
.cta-banner-section {
    background: linear-gradient(135deg, #004085 0%, #051021 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M54 48c-2 0-3 1-4 2s-2 1-4 1-3-1-4-2-2-1-4-1-3 1-4 2-2 1-4 1-3-1-4-2-2-1-4-1-3 1-4 2-2 1-4 1-3-1-4-2-2-1-4-1-3 1-4 2-2 1-4 1-3-1-4-2M6 12c-2 0-3 1-4 2s-2 1-4 1-3-1-4-2-2-1-4-1-3 1-4 2-2 1-4 1-3-1-4-2-2-1-4-1-3 1-4 2-2 1-4 1-3-1-4-2-2-1-4-1-3 1-4 2-2 1-4 1-3-1-4-2" fill="%23ffffff" fill-opacity=".02" fill-rule="evenodd"/%3E%3C/svg%3E');
    opacity: 0.5;
    pointer-events: none;
}
.cta-banner-title {
    color: #ffffff !important;
    font-size: 32px;
    font-weight: 850;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.cta-banner-text {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 16px;
    max-width: 600px;
}
.btn-cta-touch {
    background-color: #ffffff;
    color: #07162c !important;
    border: none;
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.btn-cta-touch:hover {
    background-color: var(--royal-blue);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.35);
}


/* ===================================================
   MyPoints in Numbers — Dark Navy Animated Section
   =================================================== */
.numbers-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #01122c 0%, #03173c 50%, #041d50 100%);
    padding: 90px 0;
}

/* Floating particles */
.numbers-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.numbers-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(0, 75, 175, 0.18);
    animation: particleFloat linear infinite;
}
.numbers-particles span:nth-child(1)  { width:14px; height:14px; left:7%;   top:80%; animation-duration:18s; animation-delay:0s;    }
.numbers-particles span:nth-child(2)  { width:22px; height:22px; left:18%;  top:60%; animation-duration:22s; animation-delay:-4s;   }
.numbers-particles span:nth-child(3)  { width:10px; height:10px; left:30%;  top:90%; animation-duration:16s; animation-delay:-2s;   }
.numbers-particles span:nth-child(4)  { width:18px; height:18px; left:45%;  top:70%; animation-duration:20s; animation-delay:-7s;   }
.numbers-particles span:nth-child(5)  { width:12px; height:12px; left:60%;  top:85%; animation-duration:24s; animation-delay:-1s;   }
.numbers-particles span:nth-child(6)  { width:20px; height:20px; left:72%;  top:50%; animation-duration:19s; animation-delay:-5s;   }
.numbers-particles span:nth-child(7)  { width:8px;  height:8px;  left:85%;  top:75%; animation-duration:26s; animation-delay:-3s;   }
.numbers-particles span:nth-child(8)  { width:16px; height:16px; left:92%;  top:90%; animation-duration:17s; animation-delay:-8s;   }
.numbers-particles span:nth-child(9)  { width:11px; height:11px; left:10%;  top:30%; animation-duration:21s; animation-delay:-6s;   }
.numbers-particles span:nth-child(10) { width:24px; height:24px; left:25%;  top:15%; animation-duration:15s; animation-delay:-9s;   }
.numbers-particles span:nth-child(11) { width:9px;  height:9px;  left:55%;  top:20%; animation-duration:23s; animation-delay:-2s;   }
.numbers-particles span:nth-child(12) { width:15px; height:15px; left:80%;  top:10%; animation-duration:20s; animation-delay:-11s;  }

@keyframes particleFloat {
    0%   { transform: translateY(0) scale(1);   opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-100vh) scale(0.6); opacity: 0; }
}

/* Section labels */
.numbers-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}
.numbers-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 850;
    color: #ffffff;
    letter-spacing: -0.5px;
}
.numbers-section .title-underline .line-blue {
    background: #004baf;
}
.numbers-section .title-underline .line-red {
    background: #d34a4a;
}

/* Stat cards */
.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 75, 175, 0.2);
    border-radius: 18px;
    padding: 32px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 75, 175, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.stat-card:hover {
    border-color: rgba(0, 75, 175, 0.55);
    background: rgba(0, 75, 175, 0.1);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 75, 175, 0.2);
}
.stat-card:hover::before {
    opacity: 1;
}

/* Gold variant */
.stat-card--gold {
    border-color: rgba(211, 162, 30, 0.2);
}
.stat-card--gold::before {
    background: linear-gradient(135deg, rgba(211, 162, 30, 0.1) 0%, transparent 60%);
}
.stat-card--gold:hover {
    border-color: rgba(211, 162, 30, 0.55);
    background: rgba(211, 162, 30, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(211, 162, 30, 0.2);
}

/* Icon wrap */
.stat-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 75, 175, 0.15);
    border: 1px solid rgba(0, 75, 175, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.4s ease;
}
.stat-icon-wrap i {
    font-size: 1.4rem;
    color: #5b9bff;
}
.stat-card:hover .stat-icon-wrap {
    background: rgba(0, 75, 175, 0.35);
    border-color: rgba(0, 75, 175, 0.6);
    box-shadow: 0 0 20px rgba(0, 75, 175, 0.4);
    transform: scale(1.1);
}
.stat-icon-wrap--gold {
    background: rgba(211, 162, 30, 0.12);
    border-color: rgba(211, 162, 30, 0.3);
}
.stat-icon-wrap--gold i {
    color: #f0c040;
}
.stat-card--gold:hover .stat-icon-wrap--gold {
    background: rgba(211, 162, 30, 0.3);
    border-color: rgba(211, 162, 30, 0.6);
    box-shadow: 0 0 20px rgba(211, 162, 30, 0.4);
}

/* Stat numbers — scoped to .numbers-section to avoid hero stats conflict */
.numbers-section .stat-number {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 850;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}
.numbers-section .stat-number--gold {
    color: #f0c040;
}

/* Stat label — scoped to .numbers-section to avoid hero stats conflict */
.numbers-section .stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.4;
}

/* Retention ribbon */
.numbers-ribbon {
    background: rgba(0, 75, 175, 0.12);
    border: 1px solid rgba(0, 75, 175, 0.3);
    border-radius: 14px;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}
.numbers-ribbon i {
    font-size: 1.8rem;
    color: #f0c040;
}
.numbers-ribbon-highlight {
    color: #f0c040;
    font-weight: 850;
}
