  .icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
  }

  @media (max-width: 768px) {
    .icon-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
  }

  .app-card {
    border-radius: 25px;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
    animation: pop 0.4s ease-in-out;
  }

  .app-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .app-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  }

  .app-card:hover::after {
    opacity: 1;
  }

  .app-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }

  .app-card:hover .app-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
  }

  .bg-gradient-indigo {
    background: linear-gradient(135deg, #667eea, #764ba2);
  }

  .bg-gradient-blue {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
  }

  .bg-gradient-green {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
  }

  .bg-gradient-orange {
    background: linear-gradient(135deg, #ff9966, #ff5e62);
  }

  .bg-gradient-purple {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
  }

  @keyframes pop {
    0% {
      transform: scale(0.9);
      opacity: 0.9;
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
  }