/* --- Core System Variables --- */
:root {
    --primary-blue: #4A90E2;
    --deep-navy: #0B1F3B;
    --text-white: #F5F7FA;
    --slate-gray: #94A3B8;
}

/* --- Contact Modal Overlay --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 59, 0.85);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

/* --- Market Ticker (Thin Bar below Nav) --- */
.market-ticker-container {
    background: #0a1322;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 45px;
    margin-top: 85px; /* Offset for the 85px Navbar height */
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
}

.ticker-item {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 40px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: sans-serif;
}

.ticker-item .price { color: white; margin-left: 8px; }
.ticker-item .up { color: #10b981; margin-left: 5px; }
.ticker-item .down { color: #ef4444; margin-left: 5px; }

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Section Layouts --- */
.about-section {
    background-color: var(--deep-navy);
    padding: 120px 0;
    color: var(--text-white);
}

.trust-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 25px;
    border-radius: 20px;
    transition: 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary-blue);
}