@keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 2rem;
      text-align: center;
    }


	.grid-wrapper {
	  width: calc(100% - 40px); /* 20px margin on left + 20px on right = 40px */
	  margin: 20px;            /* top/bottom 0, left/right 20px */
	  padding: 0 20px;
	  box-sizing: border-box;
	  background-color: #000;
	}

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1rem;
      /* max-width: 1200px; */
	  width:100%;
      margin: 0 auto;
	 margin-bottom:30px;
	 background-color: #000; /* <-- Add your desired background color */
    }

    .industry-item {
      background-color: transparent;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all 0.3s ease-in-out;
      cursor: pointer;
      border-radius: 10px;
	  color:white;
    }

    .industry-item:hover {
      background-color: #333;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transform: translateY(-4px);
    }

    .industry-item i {
      font-size: 1.8rem;
      color: white; 
      transition: transform 0.3s ease;
    }

    .industry-item:hover i {
      transform: scale(1.2) rotate(5deg);
    }

    .industry-item span {
      font-size: 1rem;
      font-weight: 500;
      color: #ffffff;
    }
	
	a.industry-link {
  color: white;
  text-decoration: none;
}
a.industry-link:hover {
  text-decoration: none; /* optional hover effect */
}

    @media (max-width: 480px) {
      h1 {
        font-size: 1.5rem;
      }

      .industry-item span {
        font-size: 0.95rem;
      }
    }