/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brands-marquee-inner {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.brands-marquee-container:hover .brands-marquee-inner {
    animation-play-state: paused;
}

/* FAQ Accordion */
.faq-answer {
    transition: all 0.3s ease-out;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* Hide scrollbar for testimonials */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Form inputs focus state */
input:focus, select:focus {
    box-shadow: 0 0 0 4px rgba(29, 75, 167, 0.1);
}

/* Premium gradient text */
.gradient-text {
    background: linear-gradient(to r, #1D4BA7, #265BC0, #5BCBFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
