/* Viral Marketing Section Styles */
.viral-marketing {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.viral-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.viral-text {
    flex: 1;
}

.viral-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.viral-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #6C3CE1, #8B5CF6);
}

.viral-heading {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    color: #6C3CE1;
    margin: 1.5rem 0 2rem;
    line-height: 1.3;
    font-weight: 600;
}

.viral-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.viral-image {
    flex: 1;
    position: relative;
}

.viral-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(108, 60, 225, 0.1);
    transition: transform 0.3s ease;
}

.viral-image img:hover {
    transform: translateY(-10px);
}

.viral-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.viral-stat-item {
    padding: 1.5rem;
    text-align: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.viral-stat-item:hover {
    transform: translateY(-5px);
}

.viral-stat-item i {
    font-size: 2rem;
    color: #6C3CE1;
    margin-bottom: 1rem;
}

.viral-stat-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 1rem 0;
}

.viral-stat-item .stat-label {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .viral-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .viral-content {
        flex-direction: column;
        gap: 2rem;
    }

    .viral-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .viral-text {
        text-align: center;
    }

    .viral-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}