/* Who I Help section styling with modern tech aesthetic */

.who-i-help-section {
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
  background-color: var(--bs-dark-bg);
}

/* Add subtle tech background elements */
.who-i-help-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 25%, rgba(91, 152, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(56, 214, 174, 0.05) 0%, transparent 50%);
  z-index: -1;
}

/* Tech-inspired heading with gradient */
.who-i-help-section .section-title {
  background: linear-gradient(90deg, #5B98FF 0%, #38D6AE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* Modern industry card styling */
.industry-card {
  background-color: var(--bs-light-bg);
  border-radius: 12px;
  padding: 1.8rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-top: 3px solid transparent;
  background-image: linear-gradient(var(--bs-light-bg), var(--bs-light-bg)), 
                    linear-gradient(90deg, #5B98FF, #38D6AE);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Circuit background for cards */
.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image: 
    linear-gradient(to right, transparent 49%, rgba(91, 152, 255, 0.3) 50%, transparent 51%),
    linear-gradient(to bottom, transparent 49%, rgba(91, 152, 255, 0.3) 50%, transparent 51%);
  background-size: 30px 30px;
  z-index: 0;
}

/* Icon styling */
.industry-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(91, 152, 255, 0.1) 0%, rgba(56, 214, 174, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.industry-icon i {
  font-size: 28px;
  background: linear-gradient(90deg, #5B98FF 0%, #38D6AE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Heading styling */
.industry-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* List styling */
.industry-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.industry-card li {
  margin-bottom: 0.6rem;
  padding-left: 1.5rem;
  position: relative;
  opacity: 0.9;
}

.industry-card li:before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--bs-accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* CTA styling */
.who-i-help-cta-container {
  margin-top: 2.5rem;
  text-align: center;
  padding: 2rem;
  background-color: var(--bs-light-bg);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.who-i-help-cta-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image: 
    radial-gradient(circle at 20% 35%, rgba(91, 152, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 75%, rgba(56, 214, 174, 0.2) 0%, transparent 50%);
  z-index: 0;
}

.who-i-help-cta-container p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Responsive styles */
@media (max-width: 991px) {
  .who-i-help-section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 767px) {
  .who-i-help-section {
    padding: 2.5rem 1rem;
  }
  
  .industry-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .industry-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .industry-icon i {
    font-size: 24px;
  }
  
  .industry-card h4 {
    font-size: 1.2rem;
  }
}