 
    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h2 {
      font-size: 36px;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .section-title p {
      color: #7f8c8d;
      font-size: 18px;
    }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .industry-card {
      background: white;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .industry-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    }

    .industry-card i {
      font-size: 36px;
      color: #2980b9;
      margin-bottom: 15px;
    }

    .industry-card h3 {
      color: #087ecb;
			letter-spacing: 0.2px;
      font-size: 22px;
      margin-bottom: 10px;
    }

    .industry-card p {
      font-size: 15px;
      color: #0f0f0f;
    }

  