/* Styling for the Impact Section */
.impact-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.impact-item {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1), transparent 40%);
    transform: scale(0);
    transition: transform 0.5s ease;
    z-index: 1;
}

.impact-item:hover::before {
    transform: scale(1);
}

.impact-item > * {
    position: relative;
    z-index: 2;
}

.impact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.impact-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.impact-item:hover .impact-icon {
    transform: scale(1.1);
}

.impact-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #343a40;
    margin-bottom: 8px;
    animation: count-up 1s ease-out forwards;
}

.impact-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

@keyframes count-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
