/* Core Constraints */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.high-contrast { background: #000 !important; color: #fff !important; }

.glass-nav { 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.content-wrapper { width: 100%; overflow-x: hidden; }

/* Slideshow Transitions */
.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active { opacity: 1; z-index: 10; }

.slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Ensures text is readable */
    z-index: 1;
}

.filter-btn {
    background: #f1f5f9;
    color: #475569;
}
.filter-btn.active {
    background: #0d9488;
    color: white;
}
.filter-btn:hover:not(.active) {
    background: #e2e8f0;
}

    .timeline-dot {
        position: absolute;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        left: -14px;
        top: 0;
    }
    @media (min-width: 768px) {
        .timeline-dot {
            left: 50%;
            transform: translateX(-50%);
        }
    }
    .founder-item {
        background: white;
        padding: 1rem;
        border-radius: 12px;
        font-size: 0.9rem;
        color: #475569;
        border-left: 4px solid #0d9488;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .doc-card {
        background: white;
        padding: 1.5rem;
        border-radius: 1.5rem;
        border-left: 4px solid #0d9488;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
    }
    .doc-category {
        font-size: 0.85rem;
        font-weight: 800;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .doc-link {
        display: flex;
        items-center: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: #0f172a;
        transition: color 0.2s;
    }
    .doc-link:hover {
        color: #0d9488;
    }
    .fin-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        background: #f8fafc;
        border-radius: 0.75rem;
        font-size: 0.875rem;
        font-weight: 700;
        color: #334155;
        transition: all 0.2s;
    }
    .fin-link:hover {
        background: #0d9488;
        color: white;
        transform: translateX(5px);
    }

    .contact-input {
        width: 100%;
        padding: 1rem;
        background: #f8fafc;
        border: 2px solid #f1f5f9;
        border-radius: 1rem;
        outline: none;
        font-size: 0.95rem;
        transition: all 0.2s;
    }
    .contact-input:focus {
        border-color: #0d9488;
        background: white;
        box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
    }

