/* ==================== Industries Page Styles ==================== */

/* Hero Section */
.ind-hero-section {
  padding: 50px 0 40px;
  background: linear-gradient(135deg, #f8f9fb 0%, #fff 100%);
}

.ind-hero-top {
  text-align: center;
  margin-bottom: 30px;
}

.ind-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ind-hero-description {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.ind-hero-title {
  font-size: 50px;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--tp-ff-platform);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  background-image: linear-gradient(90deg,
      #ce403d 0%,
      #ce403d 40%,
      #2a2f36 50%,
      #ce403d 60%,
      #ce403d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.ind-hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #636368;
  max-width: 600px;
  font-family: p_r;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  text-align: center;
  margin: 0 auto;
}

.ind-hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 30px 0;
}

.ind-stat {
  display: flex;
  flex-direction: column;
}

.ind-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #ce403d;
}

.ind-stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */
.ind-nav {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ind-nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 15px 0;
  margin: 0;
  list-style: none;
}

.ind-nav-item a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.ind-nav-item a:hover,
.ind-nav-item a.active {
  background: #ce403d;
  color: #fff;
}

/* Industry Sections */
.ind-section {
  padding: 50px 0;
  scroll-margin-top: 100px;
}

.ind-section-alt {
  background: #f8f9fb;
}

.ind-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ind-section-content.reverse {
  direction: rtl;
}

.ind-section-content.reverse>* {
  direction: ltr;
}

.ind-section-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease;
}

.ind-section-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.ind-section-image:hover {
  box-shadow: 0 25px 50px rgba(206, 64, 61, 0.3), 0 0 0 3px rgba(206, 64, 61, 0.1);
}

.ind-section-image:hover img {
  transform: scale(1.03);
}

.ind-section-info {
  padding: 20px 0;
}

.ind-section-header {
  text-align: left;
  margin-bottom: 25px;
}

.ind-section-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ce403d 0%, #e85a57 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(206, 64, 61, 0.25);
}

.ind-section-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.ind-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.ind-section-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Cards Grid */
.ind-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.ind-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.ind-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #ce403d;
}

.ind-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.ind-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.ind-section-alt .ind-card {
  background: #fff;
}

/* CTA Section */
.ind-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ce403d 0%, #e85a57 100%);
}

.ind-cta-content {
  text-align: center;
}

.ind-cta-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.ind-cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.ind-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #fff;
  color: #ce403d;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ind-cta-btn:hover {
  background: #1a1a2e;
  color: #fff;
  transform: translateY(-3px);
}

.ind-cta-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .ind-section-content {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .ind-hero-title {
    font-size: 42px;
  }

  .ind-hero-stats {
    gap: 30px;
  }

  .ind-section-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ind-section-content.reverse {
    direction: ltr;
  }

  .ind-section-header {
    text-align: center;
  }

  .ind-section-icon {
    margin: 0 auto 15px;
  }

  .ind-section-title {
    font-size: 28px;
  }

  .ind-nav-list {
    gap: 3px;
  }

  .ind-nav-item a {
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .ind-hero-section {
    padding: 50px 0 40px;
  }

  .ind-hero-title {
    font-size: 32px;
  }

  .ind-hero-subtitle {
    font-size: 16px;
  }

  .ind-hero-stats {
    gap: 25px;
  }

  .ind-stat-number {
    font-size: 28px;
  }

  .ind-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .ind-section {
    padding: 50px 0;
  }

  .ind-section-title {
    font-size: 24px;
  }

  .ind-section-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .ind-section-icon img {
    width: 25px;
    height: 25px;
  }

  .ind-section-image {
    border-radius: 16px;
  }

  .ind-nav-list {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
  }

  .ind-nav-item {
    flex-shrink: 0;
  }

  .ind-cta-title {
    font-size: 28px;
  }

  .ind-cta-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .ind-hero-title {
    font-size: 28px;
  }

  .ind-hero-stats {
    flex-direction: column;
    gap: 15px;
  }

  .ind-card {
    padding: 18px;
  }
}