/* home.css */
.hero-section {
    background: linear-gradient(rgba(75, 0, 130, 0.85), rgba(56, 44, 99, 0.9)), url('assets/images/eshopscout-hero-img.png') center/cover no-repeat;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
}

.stats-bar {
    background: #2c3e50;
}

.stats-bar h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

#categories h3, .feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: #2575fc;
    margin-bottom: 1rem;
}