body {
    font-family: "Outfit", sans-serif;
}

.brand {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.brand img {
    height: 48px;
    width: 48px;
    transition: all 0.3s ease;
}

.brand h2 {
    margin-left: -4px;
    margin-bottom: 1px;
}

.navbar-toggler {
    border: none;
}

.navbar.scrolled {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
    transition: all 0.3s ease;
    background-color: #f1f0ee94;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

@keyframes moveDown {
    0%,
    30% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(300%);
    }
}

.animated-down-border {
    animation: moveDown 8s infinite;
    background-image: linear-gradient(#fff 5%, #ccc2ff 15%, #6248ff 30%, #d450b9 41%, #ff4848 50%, #d450b9 60%, #6248ff 70%, #ccc2ff 85%, #fff 95%);
    height: 7.5rem;
    padding: 3px;
    position: absolute;
    inset: -7.5rem 0% auto;
}

.marquee-video-item {
    width: 215px;
    height: 360px;
    object-fit: cover;
    padding: 3px;
}

.marquee-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 10;
    position: relative;
}

.text-color-gradient {
    background-image: linear-gradient(100deg, #ff7448, #ff4848 44%, #6248ff 92%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.mobile-nav {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-nav.open {
    transform: translateX(0);
}
.testimonial-card {
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.faq-item {
    border-bottom: 1px solid #e5e7eb;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.stat-card {
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}