.industries-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.industries-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(144, 197, 45, 0.1);
  color: #90c52d;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 16px 0;
}

.section-header p {
  font-size: 18px;
  color: #666;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  justify-items: center;
}

.industry-card-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(144, 197, 45, 0.3);
  border-radius: 50%;
  animation: rotate 8s linear infinite;
}

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #90c52d;
  border-radius: 50%;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(144, 197, 45, 0.8), 0 0 40px rgba(144, 197, 45, 0.4);
  animation: glow 2s ease-in-out infinite;
}

.industry-card {
  position: relative;
  width: 240px;
  height: 240px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 35px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

/* .industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
} */

.industry-icon {
  font-size: 3rem;
  margin-top: -10px;
  display: block;
}

.industry-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0px 0 10px;
  line-height: 1.2;
}

.industry-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1;
  margin: 0;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(144, 197, 45, 0.8), 0 0 40px rgba(144, 197, 45, 0.4);
  }

  50% {
    box-shadow: 0 0 30px rgba(144, 197, 45, 1), 0 0 60px rgba(144, 197, 45, 0.6);
  }
}

@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}

@media (max-width: 640px) {
  .industries-section {
    padding: 60px 20px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .industry-card-wrapper {
    width: 260px;
    height: 260px;
  }

  .industry-card {
    width: 220px;
    height: 220px;
    padding: 30px 20px;
  }

  .industry-icon {
    font-size: 3rem;
  }

  .industry-card h3 {
    font-size: 1.1rem;
  }

  .industry-card p {
    font-size: 0.8rem;
  }
}