/* Custom styles */
body {
    background-color: #0f0f0f;
    color: #ffffff;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation for the trusted by section */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

/* Dark theme styles */
.bg-dark {
    background-color: #0f0f0f;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-accent {
    --tw-bg-opacity: 1;
    background-color: #00ff00;
}

.border-accent {
    --tw-border-opacity: 1;
    border-color: #00ff00;
}

.text-light {
    color: #f0f0f0;
}

.text-muted {
    color: #a0a0a0;
}

.btn-primary {
    background-color: #00ff00;
    color: #121212;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #00ff00;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

/* Add any additional custom styles here */

@keyframes sectionActive {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.02);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.section-active {
    animation: sectionActive 0.5s ease-out forwards;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #00ff00;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #00ff00;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

/* Mobile menu animations */
#mobile-menu {
    transition: all 0.3s ease;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

#mobile-menu.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    height: auto;
}

/* Menu icon transition */
.menu-open, .menu-close {
    transition: all 0.2s ease;
    position: absolute;
}

.menu-open.hidden, .menu-close.hidden {
    opacity: 0;
    transform: scale(0.8);
}

#mobile-menu-button {
    position: relative;
    width: 24px;
    height: 24px;
}

/* Footer navigation styles */
.footer-nav-link {
    position: relative;
    display: inline-block;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #00ff00;
    transition: width 0.3s ease;
}

.footer-nav-link:hover::after {
    width: 100%;
}

.footer-nav-link:hover {
    color: #00ff00;
}