html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { font-family: 'Inter', sans-serif; }
.bg-biin-dark { background-color: #534394; }
.text-biin-orange { color: #534394; }
.bg-biin-orange { background-color: #534394; }
.bg-biin-gradient {
    background: linear-gradient(135deg, #534394 0%, #3e3270 100%);
}
.text-biin-lime { color: #A4BC4D; }
.bg-biin-lime { background-color: #A4BC4D; }
.card-shadow {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}
.animate-scroll {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 40s linear infinite;
}
.animate-scroll:hover {
    animation-play-state: paused;
}
.logo-slide {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}
