/* Particles.js Container */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(90deg, #6ddee3 0%, #4ec6de 50%, #274695 100%);
  background-size: 100% 100%;
  overflow: hidden;
}


/* Glowing Particles */
#particles-js canvas {
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

/* Content Styling */
#industries-section {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 100px 0;
  overflow: hidden;
}

#industries-section .container {
  position: relative;
  z-index: 2;
}

/* Card styles with animations */
#industries-section .card {
  transition: all 0.3s ease;
  transform: translateY(0);
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#industries-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: #d0d0d0;
}

/* Card glow effect on hover */
#industries-section .card:before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #f0f0f0, rgba(240, 240, 240, 0));
  z-index: 1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

#industries-section .card:hover:before {
  opacity: 0.5;
}

/* Text and content styles */
#industries-section .header p,
#industries-section .header .text-color_secondary {
  color: #ffffff !important;
}

#industries-section .card p,
#industries-section .card h3,
#industries-section .card .text-color_secondary {
  color: #000000 !important;
  transition: color 0.3s ease;
}

/* Section header styles */
#industries-section .header {
  margin-bottom: 40px;
  text-align: left;
  max-width: 100%;
  margin-left: 0;
  margin-right: auto;
  padding-left: 20px;
}

#industries-section .header h2 {
  font-size: 2.5rem;
  margin: 0 0 15px -19px;
  color: #ffffff;
}

#industries-section .header p {
  max-width: 700px;
  margin: 0 0 0 -20px;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  color: #ffffff;
}

/* Ensure card content is properly positioned */
#industries-section .card_body {
  position: relative;
  z-index: 2;
  padding: 20px;
}


/* Sparkle effect styles */
.sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: sparkle 0.8s ease-out;
}

@keyframes sparkle {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}