﻿/* ===============================================
   INDUSTRY PAGES SHARED STYLES
   =============================================== */

/* Hero Section */
.industry-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.industry-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.industry-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.industry-hero .container {
  position: relative;
  z-index: 1;
}

.industry-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.industry-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.7;
}

.industry-hero .btn {
  margin-top: 1rem;
}

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

.industry-overview-img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.industry-overview-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.industry-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

.industry-section-text {
  color: #666;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Feature List */
.industry-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.industry-feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #555;
  font-size: 1.02rem;
  line-height: 1.6;
}

.industry-feature-list li i {
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* Benefits Cards Section */
.industry-benefits {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.industry-benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 28px;
  text-align: center;
  height: 100%;
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.industry-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.industry-benefit-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.industry-benefit-card:hover .industry-benefit-icon {
  transform: scale(1.1);
}

.industry-benefit-card h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
}

.industry-benefit-card p {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Use Cases / Solutions Section */
.industry-solutions {
  padding: 80px 0;
}

.industry-solution-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.industry-solution-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.industry-solution-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.industry-solution-item h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.industry-solution-item p {
  color: #777;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Stats Section */
.industry-stats {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--bs-primary, #45CF90) 0%, #2db87a 100%);
}

.industry-stat-box {
  text-align: center;
  padding: 20px;
}

.industry-stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.industry-stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.industry-cta {
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.industry-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

.industry-cta p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Image Gallery Row */
.industry-img-row {
  padding: 60px 0;
}

.industry-img-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.industry-img-card:hover {
  transform: scale(1.03);
}

.industry-img-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .industry-hero {
    min-height: 400px;
    margin-top: 70px;
  }

  .industry-hero-title {
    font-size: 2.2rem;
  }

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

  .industry-section-title {
    font-size: 1.7rem;
  }

  .industry-overview,
  .industry-benefits,
  .industry-solutions,
  .industry-cta {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .industry-hero {
    min-height: 350px;
  }

  .industry-hero-title {
    font-size: 1.8rem;
  }

  .industry-stat-number {
    font-size: 2rem;
  }

  .industry-solution-item {
    flex-direction: column;
  }

  .industry-solution-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Animation Classes */
.ind-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ind-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.ind-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ind-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.ind-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ind-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}
