.service-eyebrow {
  background-color: rgba(215, 232, 102, 0.25);
  color: var(--color-primary);
  padding: 0.25rem 1rem;
  border-radius: 50rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.service-heading {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  line-height: 1.15;
}

.service-intro-desc {
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.6;
  border-left: 3px solid var(--color-secondary);
  padding-left: 1rem;
}

.service-checklists-row {
  row-gap: 1.5rem;
}

.service-checklist-box {
  background-color: #fff;
  padding: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  height: 100%;
}

.service-checklist-title {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 0.5rem;
}

.service-overview-right {
  position: relative;
  border-radius: 0.375rem;
  height: 100%;
}

.service-main-image {
  width: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
  height: 100%;
}

.service-cert-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 1.5rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.service-cert-icon {
  background-color: rgba(215, 232, 102, 0.25);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
}

.service-cert-text h6 {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--color-primary);
}

.service-cert-text span {
  color: #6c757d;
  font-size: 0.875rem;
}

.service-capability-card {
  width: 100%;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.service-capability-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--color-primary);
  border-radius: 12px;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.service-capability-icon {
  background-color: rgba(215, 232, 102, 0.1);
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  width: 70px;
  height: 70px;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-capability-title {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.service-capability-desc {
  color: #6c757d;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* Hover Effects */
.service-capability-card:hover {
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(31, 58, 95, 0.08);
}

.service-capability-card:hover::after {
  height: 100%;
}

.service-capability-card:hover .service-capability-title,
.service-capability-card:hover .service-capability-desc {
  color: #ffffff;
}

.service-capability-card:hover .service-capability-icon {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Responsive Adjustments */




/* Scoped CSS for Section 2 (Industrial Dark Mode) */

.section-industrial-dark {
  background-color: var(--color-primary);
  /* Dark Blue */
  position: relative;
}

.process-header-row {
  align-items: center;
}

.process-header-left {
  text-align: center;
  margin-bottom: 1.5rem;
}

.process-header-right {
  text-align: center;
}

.process-description {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  font-weight: 500;
}

.process-timeline-area {
  padding-top: 3rem;
}

/* Timeline Styles */
.timeline-track {
  position: absolute;
  top: 11px;
  /* Align with dots center */
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(to right, rgba(215, 232, 102, 0.4) 0, rgba(215, 232, 102, 0.4) 10px, transparent 10px, transparent 20px);
  z-index: -1;
}

.timeline-dot-wrapper {
  justify-content: center;
  margin-bottom: 1.5rem;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
}

.timeline-dot-wrapper .timeline-dot {
  width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  border: 4px solid var(--color-secondary);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(215, 232, 102, 0.1);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.process-timeline-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-top: 50px;
  position: relative;
  z-index: 1;
}

.process-timeline-row .timeline-node {
  position: relative;
}

.timeline-node:hover .timeline-dot {
  background-color: var(--color-secondary);
  box-shadow: 0 0 0 10px rgba(215, 232, 102, 0.15);
}

.timeline-content {
  padding: 2rem 1.5rem;
  background-color: #152A47;
  border-radius: 8px;
  height: 100%;
  border-top: 3px solid transparent;
  transition: all 0.4s ease;
  text-align: center;
}

.timeline-node:hover .timeline-content {
  border-top-color: var(--color-secondary);
  /* transform: translateY(-5px); */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.process-step-number {
  font-weight: 300;
  color: rgba(215, 232, 102, 0.5);
  /* secondary with opacity */
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1;
}

.process-step-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.process-step-desc {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-split-grid {
  margin-top: 3rem;
}

.tech-col {
  margin-bottom: 1.5rem;
}

.tech-box {
  background-color: #152A47;
  padding: 1.5rem;
  border-radius: 0.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tech-bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.1;
  padding: 1.5rem;
  font-size: 10rem;
}

.tech-heading {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tech-heading-icon {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  aspect-ratio: 1;
  font-size: 24px;
}

.tech-heading-icon.materials-icon {
  background-color: #fff;
}

.tech-items-row {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  gap: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.tech-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  border-radius: 0.25rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
}

.tech-item i {
  color: var(--color-secondary);
  margin-right: 1rem;
}

.tech-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

.materials-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}

.material-card {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 1rem;
  border-radius: 0.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  backdrop-filter: blur(30px);
}

.material-card p {
  margin: 0px;
}

.material-card-icon {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
}

.material-card span {
  font-weight: 500;
  font-size: 1rem;
}

/* Materials Hover */
.material-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.app-section-header-row {
  margin-bottom: 2rem;
  align-items: flex-end;
}

.app-eyebrow {
  background-color: rgba(215, 232, 102, 0.25);
  color: var(--color-primary);
  padding: 0.25rem 1rem;
  border-radius: 50rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.app-heading {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 0;
}

/* Application Cards (Tall, image-led) */
.steelix-app-card {
  height: 350px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.steelix-app-card .app-img {
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.steelix-app-card:hover .app-img {
  transform: scale(1.08);
}

.app-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(21, 42, 71, 0.95) 0%, rgba(21, 42, 71, 0.4) 40%, rgba(21, 42, 71, 0) 100%);
  transition: all 0.4s ease;
}

.steelix-app-card:hover .app-card-overlay {
  background: linear-gradient(to top, rgba(21, 42, 71, 1) 0%, rgba(215, 232, 102, 0.2) 100%);
}

.app-title {
  font-size: 1.15rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Industry Boxes */
.industries-compact {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  margin-top: 3rem;
}

.industries-heading {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.steelix-industry-box {
  color: var(--color-primary);
  font-weight: 700;
  padding: 1rem 1.5rem;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  min-width: 200px;
  transition: all 0.3s ease;
}

.steelix-industry-box:hover {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 10px 20px rgba(31, 58, 95, 0.1);
}

.industry-icon-circle {
  background-color: #f8f9fa;
  color: var(--color-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
}

.industry-icon-circle i {
  font-size: 0.75rem;
}

.steelix-industry-box:hover .industry-icon-circle {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

/* Quality Section */
.quality-section {
  margin-top: 3rem;
}

.quality-img-wrapper {
  position: relative;
  height: 100%;
}

.quality-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.quality-stats-number {
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1.2;
}

.quality-stats-text {
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.quality-heading {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

/* Quality Accordion-style List */
.quality-step-item {
  border-bottom: 1px solid #dee2e6;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.quality-step-content {
  display: flex;
  align-items: flex-start;
}

.quality-step-number {
  color: var(--color-secondary);
  font-weight: 700;
  margin-right: 1.5rem;
  margin-top: 0.25rem;
  font-size: 1.5rem;
}

.quality-step-title {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.quality-step-desc {
  color: #6c757d;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.quality-step-item:last-child {
  border-bottom: none;
}

.quality-step-item:hover .quality-step-title {
  color: var(--color-secondary);
}

/* Desktop Adjustments */
@media (max-width: 991px) {
  .timeline-track {
    display: none;
  }

  .timeline-content {
    border-left: 3px solid var(--color-secondary);
    border-top: none;
  }

  .timeline-node:hover .timeline-content {
    border-top-color: transparent;
    border-left-color: var(--color-secondary);
    transform: translateX(5px);
  }
}

@media (min-width: 992px) {
  .process-header-left {
    margin-bottom: 0;
    text-align: left;
  }

  .process-header-right {
    text-align: left;
    border-left: 1px solid rgba(215, 232, 102, 0.25);
    padding-left: 3rem;
  }

  .timeline-content {
    text-align: left;
  }

  .tech-col {
    margin-bottom: 0;
  }

  .tech-box {
    padding: 2rem;
  }
}