/* Statistics Section */
.stat-card {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 10px;
    padding: 30px 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.stat-card i {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    padding: 15px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 20px;
    color: #333;
}

.stat-card p {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}
