.impact-section {
    padding: 75px 0;
}

.impact-section h3 {
    color: #96BC33;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.impact-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.impact-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.impact-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.impact-section ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.impact-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: #96BC33;
    border-radius: 50%;
    opacity: 0.2;
}

.impact-section ul li::after {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.85rem;
    width: 0.3rem;
    height: 0.3rem;
    background: #96BC33;
    border-radius: 50%;
}

.impact-section .img-fluid {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.impact-section .img-fluid:hover {
    transform: translateY(-5px);
}

.impact-section .content-box {
    padding: 2rem;
    background: rgba(150, 188, 51, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(150, 188, 51, 0.1);
}

@media (max-width: 768px) {
    .impact-section .content-box {
        margin-top: 2rem;
    }
}

/* Metric Grid Styles */
.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 1rem 0 1rem;
    contain: layout style paint;
}

.metric-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(150, 188, 51, 0.1);
    transition: all 0.3s ease;
    contain: layout style paint;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(150, 188, 51, 0.03));
    z-index: 1;
}

.metric-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(150, 188, 51, 0.05) 0px,
        rgba(150, 188, 51, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    top: 0;
    left: 0;
    z-index: 1;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(150, 188, 51, 0.15);
}

.metric-content {
    position: relative;
    z-index: 2;
}

.metric-icon {
    color: #96BC33;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(150, 188, 51, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(150, 188, 51, 0.1);
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.metric-unit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.metric-label {
    font-size: 1.25rem;
    color: #96BC33;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.metric-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Metric Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.metric-icon i {
    animation: pulse 2s infinite;
}

.metric-value .count-text {
    transition: text-shadow 0.3s ease;
}

.metric-value .count-text.animating {
    text-shadow: 0 0 10px rgba(150, 188, 51, 0.5);
}

/* Card Animation */
.metric-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger card animations */
.metric-card:nth-child(1) { animation-delay: 0.1s; }
.metric-card:nth-child(2) { animation-delay: 0.2s; }
.metric-card:nth-child(3) { animation-delay: 0.3s; }



/* Normal Screen 18 Inch - 19 Inch ( (Resolution 1366x768 ) 1349px and up) */
@media (min-width: 1349px) {

    .metric-grid {
        padding: 2rem 0 0 0;
    }
}