.why-section {
       
    padding: 80px 5%;
    text-align: center;
    overflow: inherit;
  }
  
  .why-section .section-subtitle {
    font-size: 1rem;
    color: #12a124;;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .why-section .section-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .icon {
    font-size: 2.4rem;
    color: #00c9a7; /* fallback base color */
    transition: transform 0.4s ease, filter 0.4s ease, color 0.4s ease;
    }

    /* Gradient-like glowing shadow + smooth scaling */
    .feature-card:hover .icon {
    color: #00e0ff;
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(0, 233, 255, 0.4))
            drop-shadow(0 0 12px rgba(0, 255, 200, 0.5))
            drop-shadow(0 0 20px rgba(0, 255, 200, 0.2));
    }

    /* Glowing + smooth scale effect on hover */
    .feature-card:hover .icon {
    animation: pulseGlow 1.2s ease-in-out forwards;
    filter: drop-shadow(0 0 8px rgba(0, 233, 255, 0.5)) drop-shadow(0 0 15px rgba(0, 255, 200, 0.3));
    transform: scale(1.2);
    }

    @keyframes pulseGlow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(0, 255, 200, 0.2));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 20px rgba(0, 255, 200, 0.6));
    }
    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 10px rgba(0, 255, 200, 0.3));
    }
    }

  .highlighted-glow {
    background: linear-gradient(90deg, #3b82f6, #2dd4bf, #a855f7, #3b82f6);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: gradientShine 8s ease infinite;
    position: relative;
    font-weight: 700;
  }

  @keyframes gradientShine {
    0% {
        background-position: 0% 50%;
        text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    }
    50% {
        background-position: 100% 50%;
        text-shadow: 0 0 15px rgba(45, 212, 191, 0.4);
    }
    100% {
        background-position: 0% 50%;
        text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
    }
  }

  .why-section .highlighted {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .why-section .section-desc {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1.05rem;
  }
  
  .features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    width: 300px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  }
  
  .feature-card .icon {
    font-size: 2rem;
    color: #ff5e57;
    margin-bottom: 15px;
  }
  
  .feature-card h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .feature-card p {
    color: #666;
    font-size: 0.95rem;
  }
  
  /* Animations */
  .animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
  }
  
  .delay-1 { animation-delay: 0.3s; }
  .delay-2 { animation-delay: 0.6s; }

  .logo-ticker {
    padding: 50px 20px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 40px auto;
    }
    
    .ticker-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    }
    
    .logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    }
    
    .logo-track {
    display: flex;
    animation: scrollInfinite 40s linear infinite;
    width: max-content;
    }
    
    .logo-track img {
    height: 70px;
    margin: 0 35px;
    border-radius: 16px;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.85;
    background: white;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }
    
    .logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
    }
    
    @keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
    }
    
    /* Responsive Tweaks */
    @media (max-width: 768px) {
    .logo-track img {
        height: 50px;
        margin: 0 20px;
    }
    
    .logo-ticker {
        border-radius: 12px;
        padding: 30px 15px;
    }
    }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {
    .features-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .feature-card {
      width: 90%;
    }
  
    .why-section .section-title {
      font-size: 1.8rem;
    }
  }