@import url("main.css");
@import url("testmonial.css");
@import url("imigongo.css");

/* Ensure no partner section styles remain */
.partner-section {
  display: none !important;
}

.partner-section,
.partner-content,
.partner-title,
.partner-description,
.partner-buttons,
.partner-btn {
  display: none !important;
  background: none !important;
}
.hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 93, 54, 0.3),
    rgba(8, 74, 46, 0.4)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 1rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  font-weight: 500;
}

.breadcrumb a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.breadcrumb-current {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  animation: fadeInUp 1.5s ease-out;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.about-content {
  background: var(--gray-light);
  padding: 100px 0;
  position: relative;
}

.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f0f8f4 0%, #e8f5ee 50%, #f0f8f4 100%);
  opacity: 0.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.section-label::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 30px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
}

.section-description {
  font-size: 1.3rem;
  color: var(--gray-medium);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

/* Floating elements for visual interest */
.floating-shape {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.floating-shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-shape-2 {
  top: 60%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: var(--border-radius);
  animation: float 8s ease-in-out infinite reverse;
}

.floating-shape-3 {
  bottom: 20%;
  left: 15%;
  width: 60px;
  height: 60px;
  background: var(--primary);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: float 7s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .section-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.25rem;
  }
  .section-description {
    font-size: 0.75rem;
  }
  .about-content {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 40vh;
  }
  .hero-title {
    font-size: 1.4rem;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .section-description {
    font-size: 0.8rem;
  }
  .about-content {
    padding: 60px 0;
  }
  .breadcrumb {
    font-size: 0.85rem;
  }
  .section-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 35vh;
  }
  .hero-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }
  .section-title {
    font-size: 1.1rem;
  }
  .section-description {
    font-size: 0.75rem;
  }
  .container {
    padding: 0 15px;
  }
  .breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  .about-content {
    padding: 50px 0;
  }
  .section-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 35vh;
  }
  .hero-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .section-description {
    font-size: 0.8rem;
  }
  .container {
    padding: 0 15px;
  }
  .breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  .about-content {
    padding: 50px 0;
  }
  .floating-shape {
    display: none;
  }
  .section-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 375px) {
  .hero-section {
    height: 30vh;
  }
  .hero-title {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 1rem;
  }
  .section-description {
    font-size: 0.7rem;
  }
  .breadcrumb {
    font-size: 0.75rem;
  }
  .section-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 320px) {
  .hero-section {
    height: 28vh;
  }
  .hero-title {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 0.95rem;
  }
  .section-description {
    font-size: 0.65rem;
  }
  .breadcrumb {
    font-size: 0.7rem;
  }
  .section-label {
    font-size: 0.65rem;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Accessibility improvements */
.breadcrumb a:focus,
.breadcrumb a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 4px;
}
.impact-section {
  padding: 60px 0;
  background: var(--gray-light);
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: left;
  position: relative;
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  animation: slideInUp 0.8s ease-out forwards;
}

.stat-card:nth-child(1) {
  animation-delay: 0.1s;
}
.stat-card:nth-child(2) {
  animation-delay: 0.2s;
}
.stat-card:nth-child(3) {
  animation-delay: 0.3s;
}
.stat-card:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.stat-icon i {
  font-size: 24px;
  color: #4da6d9;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #4da6d9;
  margin-bottom: 8px;
  line-height: 1.2;
}

.stat-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4da6d9;
  margin-bottom: 12px;
}

.stat-description {
  font-size: 0.8rem;
  color: var(--gray-medium);
  line-height: 1.5;
}

.hero-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateX(50px);
  opacity: 0;
  animation: slideInRight 0.8s ease-out 0.2s forwards;
}

.hero-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    rgba(10, 93, 54, 0.8) 70%,
    rgba(10, 93, 54, 0.6) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  color: var(--white);
}

.hero-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 0.85rem;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.6;
}

.efficiency-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 300px;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon i {
  font-size: 18px;
  color: var(--white);
}

.badge-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.badge-content .badge-title {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 4px;
  opacity: 0.9;
}

.badge-content .badge-description {
  font-size: 0.7rem;
  opacity: 0.8;
  line-height: 1.4;
}

@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-card {
    order: -1;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
  }

  .hero-image {
    height: 350px;
  }

  .hero-overlay {
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .impact-section {
    padding: 40px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card {
    padding: 24px 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .hero-image {
    height: 300px;
  }

  .hero-overlay {
    padding: 24px;
  }

  .hero-title {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .efficiency-badge {
    padding: 16px;
    max-width: 100%;
  }

  .badge-content h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 1.6rem;
  }

  .stat-title {
    font-size: 0.85rem;
  }

  .stat-description {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 1.1rem;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    margin-bottom: 24px;
  }
}

/* Hover Effects */
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  transition: all var(--transition);
}

.hero-card:hover {
  transform: scale(1.02);
  transition: all var(--transition);
}

/* Additional Animation on Scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.8s ease-out forwards;
}

.programs-section {
  padding: 80px 0;
  background: var(--gray-light);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.3;
}

.section-description {
  font-size: 0.85rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.tabs-container {
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--white);
  padding: 8px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
}

.tab-button {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-medium);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-button.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.tab-button:hover:not(.active) {
  background: var(--primary-light);
  color: var(--primary);
}

.content-container {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.program-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.program-content.active {
  display: grid;
  animation: fadeIn 0.5s ease-out forwards;
}

.program-image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateX(-30px);
  opacity: 0;
  animation: slideInLeft 0.8s ease-out 0.6s forwards;
}

.program-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.program-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    rgba(10, 93, 54, 0.9) 100%
  );
  color: var(--white);
  padding: 32px;
}

.overlay-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.overlay-icon i {
  font-size: 20px;
  color: var(--white);
}

.overlay-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.overlay-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.overlay-stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-details {
  transform: translateX(30px);
  opacity: 0;
  animation: slideInRight 0.8s ease-out 0.6s forwards;
}

.program-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.program-description {
  font-size: 0.85rem;
  color: var(--gray-medium);
  margin-bottom: 32px;
  line-height: 1.6;
}

.achievements-section {
  margin-bottom: 40px;
}

.achievements-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.achievements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--gray-medium);
}

.achievement-bullet {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.achievement-number {
  font-weight: 700;
  color: var(--black);
}

.program-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
  align-items: center;
}

.impact-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  transition: all var(--transition);
  cursor: pointer;
}

.impact-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.autoplay-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray-medium);
  margin-left: 20px;
}

.toggle-switch {
  width: 36px;
  height: 20px;
  background: var(--gray-medium);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}

.toggle-switch.active {
  background: var(--primary);
}

.toggle-handle {
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all var(--transition);
}

.toggle-switch.active .toggle-handle {
  transform: translateX(16px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .programs-section {
    padding: 60px 0;
  }

  .program-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .program-image-container,
  .program-details {
    transform: none;
    opacity: 1;
    animation: none;
  }

  .program-image {
    height: 350px;
  }

  .overlay-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .overlay-stat {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .tabs-nav {
    flex-direction: column;
    gap: 4px;
  }

  .tab-button {
    padding: 14px 20px;
    font-size: 0.8rem;
  }

  .program-content {
    gap: 30px;
  }

  .program-image {
    height: 280px;
  }

  .program-overlay {
    padding: 24px;
  }

  .overlay-title {
    font-size: 1.2rem;
  }

  .overlay-stats {
    flex-direction: column;
  }

  .program-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* CSS Scroll Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 1s ease-out;
}

.animate-left {
  animation: fadeInLeft 1s ease-out;
}

.animate-right {
  animation: fadeInRight 1s ease-out;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.3s;
}
.delay-3 {
  animation-delay: 0.5s;
}
.delay-4 {
  animation-delay: 0.7s;
}
.delay-5 {
  animation-delay: 0.9s;
}
.delay-6 {
  animation-delay: 1.1s;
}

/* Impact Section */
.impact-section {
  padding: 80px 0;
  background: var(--gray-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.impact-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--white);
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.impact-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.impact-card:hover .impact-image {
  transform: scale(1.05);
}

.impact-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 30px 20px 20px;
  color: var(--white);
}

.impact-tag {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.impact-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.view-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.view-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.view-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 auto;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.view-gallery-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-center {
  text-align: center;
  margin-top: 40px;
}



/* Responsive Design */
@media (max-width: 768px) {
  .impact-section {
    padding: 60px 0;
  }

  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .section-subtitle {
    font-size: 0.8rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.1rem;
  }

  .impact-image {
    height: 200px;
  }

  .impact-overlay {
    padding: 20px 15px 15px;
  }

  .impact-title {
    font-size: 0.85rem;
  }
}

.impact-section .section-header {
    margin-bottom: 60px;
}

.impact-section .section-title {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    position: relative;
    padding-bottom: 20px;
}

.impact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0a5d36;
    border-radius: 2px;
}

.impact-gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.impact-gallery-item {
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.impact-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.impact-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.impact-gallery-item:hover img {
    transform: scale(1.05);
}