/* AI Industry Page Styles */
/* Scoped to avoid conflicts with other pages */

/* Hero Section */
.industry-hero {
  width: 80%;
  margin: auto;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  color: #fff;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.industry-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/ai-pattern.png') no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.industry-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.industry-hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Overview Section */
.industry-overview {
  padding: 80px 0;
  background: #f8f9fa;
}

.industry-overview h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

.industry-overview p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Services Section */
.industry-services {
  padding: 80px;
  background: #fff;
}

.industry-services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 3rem;
  text-align: center;
}

.industry-services .col-md-6 {
  margin-bottom: 2rem;
}

.industry-services h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.industry-services h3::before {
  content: '🤖';
  margin-right: 0.75rem;
  font-size: 1.75rem;
}

.industry-services p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  padding-left: 2.5rem;
}

/* Benefits Section */
.industry-benefits {
  padding: 80px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
}

.industry-benefits h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.industry-benefits ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.industry-benefits li {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-left: 2.5rem;
  position: relative;
}

.industry-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  color: #fff;
}

/* Use Cases Section */
.industry-use-cases {
  padding: 80px;
  background: #f8f9fa;
}

.industry-use-cases h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 3rem;
  text-align: center;
}

.industry-use-cases .col-md-4 {
  margin-bottom: 2rem;
}

.industry-use-cases .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background: #fff;
}

.industry-use-cases .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.industry-use-cases .card-body {
  padding: 2rem;
}

.industry-use-cases .card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 1rem;
}

.industry-use-cases .card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* CTA Section */
.industry-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-align: center;
}

.industry-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.industry-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.industry-cta .btn-primary {
  background: #fff;
  color: #667eea;
  border: none;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.industry-cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .industry-hero h1 {
    font-size: 2.5rem;
  }

  .industry-hero p {
    font-size: 1rem;
  }

  .industry-overview h2,
  .industry-services h2,
  .industry-benefits h2,
  .industry-use-cases h2,
  .industry-cta h2 {
    font-size: 2rem;
  }

  .industry-services h3::before {
    display: block;
    margin-bottom: 0.5rem;
    margin-right: 0;
  }

  .industry-services p {
    padding-left: 0;
  }
}
