.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: -3rem auto 3rem;
	padding: 0 1.5rem;
	position: relative;
	z-index: 2;
}

.stat-card {
	background: var(--bg-primary-rotated);
	padding: 2rem;
	text-align: center;
	border-radius: 1.5rem;
	box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	transition: transform 0.3s;
}

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

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: var(--accent-primary-rotated);
}

.section {
	max-width: 1200px;
	margin: 5rem auto;
	padding: 0 1.5rem;
}

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

.impact-card {
	background: white;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
	transition: all 0.3s;
	border: 2px solid var(--accent-primary);
}

.impact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.impact-icon {
	font-size: 3rem;
	padding: 2rem 2rem 0;
}

.impact-card h3 {
	padding: 0 2rem;
	margin: 1rem 0;
}

.impact-card p {
	padding: 0 2rem 2rem;
	color: #5a6e6f;
	line-height: 1.6;
}

.progress-container {
	background: #e0e8e5;
	border-radius: 30px;
	height: 30px;
	margin: 1rem 0;
	overflow: hidden;
}

.progress-bar {
	background: linear-gradient(90deg, #2c7a5e, #4a9e82);
	height: 100%;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 10px;
	color: white;
	font-weight: bold;
	font-size: 0.8rem;
}

.testimonial {
	background: #eef2f0;
	border-radius: 2rem;
	padding: 2rem;
	text-align: center;
	font-style: italic;
}

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

.section-above-carousel {
	background: var(--bg-primary-rotated); 
	padding: 1.5rem; 
	border: 2px solid var(--accent-primary-rotated);
	border-radius: 12px;
}

.h-above-carousel {
	color: var(--accent-primary-rotated);
	text-align: center;
}

.above-carousel-text {
	color: var(--text-primary1);
	text-align: justify;
}

.progress-wrapper {
    display: flex;
    gap: 20px;
}

#impactContainer p {
	color: var(--text-primary);
	text-align: justify;
}

.progress-wrapper > div {
    flex: 1;
}

.testimonial-slider {
    position: relative;
    width:100%;
    margin: 2rem auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1.5rem;
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-author {
    font-weight: bold;
    color: #1e4a3b;
}

/* Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1e4a3b;
    color: #fff;
    border: none;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    border-radius: 50%;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .progress-wrapper {
        flex-direction: column;
    }
}