 .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      max-width: 1000px;
      margin: auto;
    }

    .service-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 15px;
      transition: all 0.3s ease;
      border-radius: 12px;
      background: #f9f9f9;
      cursor: pointer;
    }

    .service-box:hover {
      background-color: #e6f0ff;
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .service-box img {
      width: 40px;
      height: 40px;
      margin-bottom: 10px;
    }

    .service-box span {
      font-size: 14px;
      font-weight: 500;
      color: #333;
    }

    .show-more a {
      text-decoration: none;
      color: #333;
      font-weight: bold;
    }
    .services-grid a{
         text-decoration: none;
      color: #333;
  
    
    }
    
 @media (max-width: 768px) {
      .service-box img {
        width: 36px;
        height: 36px;
      }

      .service-box span {
        font-size: 13px;
      }
    }

    /* 🔧 Mobile-specific layout: 2 columns, 4 rows */
    @media (max-width: 480px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .service-box {
        padding: 12px;
      }
    }