/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.05), rgba(249, 115, 22, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
}

.stat-item .counter {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(47, 120, 196);
    /* Custom Blue */
    margin-bottom: 10px;
}

.stat-item .counter::after {
    content: '+';
    font-size: 2rem;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}