* {
    font-family: "poppins";
    scroll-behavior: smooth;
}

.nav-link {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #7f27ff;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover {
    color: #7f27ff;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #7f27ff;
}

.nav-link.active::after {
    width: 100%;
}
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

.animate-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.animate-marquee-reverse {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-reverse 35s linear infinite;
}
