/* Custom styles for SupplyNet home page */
.hero-gradient {
    background: linear-gradient(135deg, #0088cc 0%, #34d399 100%);
}

.btn-primary {
    background-color: #0088cc;
    border-color: #0088cc;
}

.btn-primary:hover {
    background-color: #006da3;
    border-color: #006da3;
}

.text-primary {
    color: #0088cc;
}

.text-secondary {
    color: #34d399;
}

.bg-primary {
    background-color: #0088cc;
}

.bg-secondary {
    background-color: #34d399;
}

/* Animated network effect for hero background */
.network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.2) 2px, transparent 0),
        radial-gradient(circle at 75px 75px, rgba(255, 255, 255, 0.2) 2px, transparent 0);
    background-size: 100px 100px;
}

/* Testimonial card hover effect */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Custom animation for features */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}
