/* Industries page specific styles */
.industries-parent-container {
    margin-top: 120px;
}

.industries-hero {
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 0 0 1rem 1rem;
  }
  
  .industries-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .industries-hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .industries-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
  }
  
  .industries-intro {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .industries-intro h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .industries-intro p {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
  }
  
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .industries-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
  }
  
  .industries-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #0070f3;
  }
  
  .industries-card:hover .industries-card-link {
    color: #0070f3;
  }
  
  .industries-card:hover .industries-card-link svg {
    transform: translateX(4px);
  }
  
  .industries-card-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 112, 243, 0.1);
    border-radius: 50%;
  }
  
  .industries-icon {
    color: #0070f3;
  }
  
  .industries-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .industries-card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
  }
  
  .industries-card-link {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
  }
  
  .industries-card-link svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  /* SEO Enhancements */
  .industries-benefits {
    margin-top: 4rem;
    padding: 3rem 0;
    background: #f9f9f9;
    border-radius: 1rem;
  }
  
  .industries-benefits-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
  }
  
  .industries-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .industries-benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .industries-benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0070f3;
  }
  
  .industries-benefit-item p {
    font-size: 0.95rem;
    color: #666;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .industries-hero {
      padding: 3rem 1.5rem;
    }
    
    .industries-hero-content h1 {
      font-size: 2.5rem;
    }
    
    .industries-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .industries-hero-content h1 {
      font-size: 2rem;
    }
    
    .industries-grid {
      grid-template-columns: 1fr;
    }
    
    .industries-card {
      padding: 1.5rem;
    }
    
    .industries-benefits-grid {
      grid-template-columns: 1fr;
    }
  }