/* Impact Section Styles */

.impact-section {
    background: linear-gradient(180deg, #00597D 0%, #00A2E3 100%);
    position: relative;
}

.impact-bg-pattern {
    background-image: 
        linear-gradient(30deg, rgba(0, 205, 255, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(0, 205, 255, 0.05) 87.5%, rgba(0, 205, 255, 0.05)),
        linear-gradient(150deg, rgba(0, 205, 255, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(0, 205, 255, 0.05) 87.5%, rgba(0, 205, 255, 0.05)),
        linear-gradient(30deg, rgba(0, 205, 255, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(0, 205, 255, 0.05) 87.5%, rgba(0, 205, 255, 0.05)),
        linear-gradient(150deg, rgba(0, 205, 255, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(0, 205, 255, 0.05) 87.5%, rgba(0, 205, 255, 0.05));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

/* Impact Stats */
.impact-stat-card {
    position: relative;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

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

.impact-icon {
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.impact-number-wrapper {
    position: relative;
}

.impact-number {
    background-color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 205, 255, 0.3);
    display: inline-block;
    animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(0, 205, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 205, 255, 0.6));
    }
}

.impact-label {
    position: relative;
}

.impact-description {
    max-width: 250px;
    margin: 0 auto;
}

/* Responsive Impact */
@media (max-width: 768px) {
    .impact-stat-card {
        padding: 1.5rem 0.5rem;
    }
    
    .impact-number {
        font-size: 3.5rem !important;
    }
    
    .impact-label {
        font-size: 1.5rem !important;
    }
}

.impact-section-img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    opacity: 0.5;
    transition: transform 0.1s ease-out;
    will-change: transform;
}