/* Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}

.text-brand-blue {
    color: #2E3E69;
}

.bg-brand-blue {
    background-color: #2E3E69;
}

.text-brand-orange {
    color: #F6AE3A;
}

.bg-brand-orange {
    background-color: #F6AE3A;
}

.border-brand-blue {
    border-color: #2E3E69;
}

.border-brand-orange {
    border-color: #F6AE3A;
}

/* Slider Animations */
.slide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
    position: absolute;
    inset: 0;
}

.slide .text-center {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide.active .text-center {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Chatbot Animations */
#chat-widget {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
