.feature-section-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0.1;
  pointer-events: none; /* Ensure it doesn't block interactivity */
}

.floating-svg {
  position: absolute;
  opacity: 0.7;
  pointer-events: none; /* Make sure SVGs don't interfere with clicks */
  z-index: 0; /* Keep behind content */
}

.floating-svg.top-left {
  top: 10%;
  left: 5%;
}

.floating-svg.bottom-right {
  bottom: 10%;
  right: 5%;
}

/* Additional automation showcase styles */
.automation-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 3rem;
  color: white;
  margin-bottom: 3rem;
  z-index: 2; /* Keep above the background SVGs */
}

.automation-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.automation-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.automation-feature-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.feature-icon-container {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .automation-showcase {
    padding: 2rem;
  }
  
  .automation-features-list {
    grid-template-columns: 1fr;
  }
  
  .floating-svg.top-left {
    top: 5%;
    left: 2%;
  }
  
  .floating-svg.bottom-right {
    bottom: 5%;
    right: 2%;
  }
}
