   @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }
        
        .delay-1000 {
            animation-delay: 1s;
        }

         .category-btn {
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s;
            border: 2px solid #e5e7eb;
            background: white;
            color: #0F3D3E;
        }

        .category-btn:hover {
            border-color: #35D0BA;
            background: #35D0BA;
            color: white;
            transform: translateY(-2px);
        }

        .category-btn.active {
            background: #C6E425;
            color: #0F3D3E;
            border-color: #C6E425;
        }

        .blog-card {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .blog-card.hide {
            display: none;
        }

        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .line-clamp-3 {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }


        .gallery-item {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gallery-item.hide {
            display: none;
        }
        
        
        
        
        
        
        
        
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .impact-section-title {
    animation: fadeInUp 0.8s ease-out;
  }

  .impact-section-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
  }

  .story-card {
    animation: fadeInUp 0.7s ease-out backwards;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .story-card:nth-child(1) { animation-delay: 0.1s; }
  .story-card:nth-child(2) { animation-delay: 0.3s; }
  .story-card:nth-child(3) { animation-delay: 0.5s; }

  .story-card:hover {
    transform: translateY(-15px);
  }

  .story-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .story-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .story-card:hover .story-image {
    transform: scale(1.12) rotate(1deg);
  }

  .story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .story-card:hover .story-overlay {
    opacity: 1;
  }

  .story-content {
    background: white;
    border-radius: 1.5rem;
    margin: -50px 1.5rem 0;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    transition: all 0.4s ease;
  }

  .story-card:hover .story-content {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
  }

  .quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: #0ea5e9;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 15px;
  }

  .story-text {
    position: relative;
    z-index: 1;
  }

  .story-author {
    position: relative;
    padding-left: 1rem;
  }

  .story-author::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #0ea5e9, #10b981);
    border-radius: 2px;
  }

  

  .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }

  .cta-button:hover::before {
    width: 300px;
    height: 300px;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
  }

  .decorative-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #0ea5e9, #10b981);
    margin: 0 auto 2rem;
    border-radius: 2px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
  }