/* Custom Styles for CONNEXUS */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

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

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
::-webkit-scrollbar-thumb {
    background: #0056b3; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #004494; 
}

/* Tabs */
.tab-btn.active {
    background-color: white;
    color: #0056b3;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* FAQ Transition */
.faq-content {
    display: none;
    transition: all 0.3s ease-in-out;
}

/* Smooth Scroll Padding for fixed header */
html {
    scroll-padding-top: 100px;
}
