.industry-banner-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0rem 4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.industry-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 1;
}
.industry-banner-content {
    text-align: left;
    color: var(--text-white);
    position: relative;
    z-index: 2;
}
/* Breadcrumb */
.industry-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    flex-wrap: wrap;
}
.industry-breadcrumb-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: var(--font-size-14);
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
}
.industry-breadcrumb-nav a:hover {
    color: var(--primary-color);
    opacity: 1;
}
.industry-breadcrumb-nav .industry-separator {
    color: var(--text-light);
    opacity: 0.6;
    font-size: var(--font-size-12);
}
.industry-breadcrumb-nav .industry-current {
    color: var(--text-white);
    font-size: var(--font-size-14);
    font-weight: 600;
}
/* Banner tag / title / description / buttons */
.industry-banner-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(21, 105, 253, 0.2);
    border-left: 3px solid var(--primary-color);
    color: var(--text-white);
    font-size: var(--font-size-16);
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}
.industry-banner-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-54);
    font-weight: var(--heading-xl-weight);
    line-height: 62px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.3s backwards;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

.industry-banner-title .industry-highlight {
    color: var(--primary-color);
}
.industry-banner-description {
    font-family: var(--mulish);
    font-size: var(--text-lg);
    line-height: 28px;
    color: var(--text-light);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}
.industry-banner-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.7s backwards;
}
.industry-banner-medium {
    min-height: 60vh;
}
@media (max-width: 991px) {
    .industry-banner-title {
        font-size: var(--font-size-44);
        line-height: 52px;
    }
}
@media (max-width: 768px) {
    .industry-banner-section {
        min-height: 45vh;
        padding: 5rem 0rem 3rem;
    }
    .industry-banner-title {
        font-size: var(--font-size-36);
        line-height: 44px;
    }
    .industry-banner-description {
        font-size: var(--font-size-16);
    }
    .industry-banner-buttons {
        gap: 1rem;
    }
    .industry-breadcrumb-nav {
        font-size: var(--font-size-12);
    }
}

@media (max-width: 480px) {
    .industry-banner-section {
        min-height: 40vh;
    }
    .industry-banner-title {
        font-size: var(--font-size-30);
        line-height: 38px;
    }
    .industry-banner-tag {
        font-size: var(--font-size-14);
        padding: 0.4rem 1.2rem;
    }
    .industry-breadcrumb-nav a,
    .industry-breadcrumb-nav .industry-current {
        font-size: var(--font-size-12);
    }
}

/* INDUSTRY FAQ SECTION */
.industry-faq-section {
    background: var(--text-white);
    position: relative;
}
.industry-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at top right, rgba(21, 105, 253, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.industry-faq-item {
    border: 1.5px solid var(--border-color);
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.28s ease;
    overflow: hidden;
    animation: fadeInUp 0.4s ease both;
    height: auto;
}
.industry-faq-item.is-open {
    border-color: var(--primary-color);
    box-shadow: 0 6px 28px rgba(21, 105, 253, 0.09);
}
.industry-faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    background: #fff;
    user-select: none;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    min-height: 80px;
}
.industry-faq-item.is-open .industry-faq-question {
    background: rgba(21, 105, 253, 0.03);
}
.industry-faq-question:hover {
    background: rgba(21, 105, 253, 0.04);
}
.industry-faq-badge {
    min-width: 34px;
    height: 34px;
    background: rgba(21, 105, 253, 0.10);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s;
}
.industry-faq-item.is-open .industry-faq-badge {
    background: var(--primary-color);
    color: #fff;
}
.industry-faq-q-text {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.45;
    flex: 1;
    transition: color 0.2s;
}
.industry-faq-item.is-open .industry-faq-q-text {
    color: var(--primary-color);
}
.industry-faq-icon {
    font-size: 20px;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
    line-height: 1;
}
.industry-faq-item.is-open .industry-faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}
.industry-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-faq-body-inner {
    padding: 16px 22px 22px 70px;
    border-top: 1px solid rgba(21, 105, 253, 0.1);
}
.industry-faq-answer {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.78;
}
.industry-faq-answer .industry-points {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.industry-faq-answer .industry-points li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    color: var(--text-secondary);
}
.industry-faq-answer .industry-points li::before {
    content: '';
    min-width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
    margin-top: 7px;
    flex-shrink: 0;
}
@media (max-width: 991px) {
    .industry-faq-body-inner {
        padding-left: 22px;
    }
}
@media (max-width: 767px) {
    .industry-faq-question {
        padding: 15px 16px;
        gap: 12px;
    }
    .industry-faq-body-inner {
        padding: 12px 16px 18px;
    }
    .industry-faq-q-text {
        font-size: 14px;
    }
    .industry-faq-answer {
        font-size: 14px;
    }
    .industry-faq-badge {
        min-width: 30px;
        height: 30px;
        font-size: 12px;
    }
}
@media (max-width: 575px) {
    .industry-faq-q-text {
        font-size: 13px;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* INDUSTRY */
.industry-section {
  position: relative;
  overflow: hidden;
}
.industry-bg-tint {
  background: linear-gradient(135deg, #e0e4e7ad 0%, #ffffff 100%);
}
/* OVERVIEW SECTION */
.industry-overview-text {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
}
.industry-compare-wrap {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--text-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}
.industry-compare-table {
  width: 100%;
  border-collapse: collapse;
}
.industry-compare-table thead th {
  font-family: var(--font-heading);
  font-size: var(--font-size-16);
  font-weight: 700;
  color: var(--text-white);
  padding: 18px 24px;
  text-align: left;
}
.industry-compare-table thead th:first-child {
  background: var(--secondary-color);
}
.industry-compare-table thead th:last-child {
  background: linear-gradient(135deg, var(--primary-color), #0d4fc4);
}
.industry-compare-table tbody td {
  padding: 16px 24px;
  font-size: var(--font-size-15);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}
.industry-compare-table tbody tr:last-child td {
  border-bottom: none;
}
.industry-compare-table tbody tr:nth-child(even) {
  background: rgba(21, 105, 253, 0.02);
}
.industry-compare-table tbody td:first-child {
  color: #9aa4b2;
  position: relative;
  padding-left: 42px;
}
.industry-compare-table tbody td:first-child::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #e57373;
  font-size: 12px;
}
.industry-compare-table tbody td:last-child {
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
  padding-left: 42px;
}
.industry-compare-table tbody td:last-child::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 12px;
}
@media (max-width: 768px) {
  .industry-compare-table thead th,
  .industry-compare-table tbody td {
    padding: 12px 16px;
    font-size: 13px;
  }
  .industry-compare-table tbody td:first-child,
  .industry-compare-table tbody td:last-child {
    padding-left: 32px;
  }
  .industry-compare-table tbody td:first-child::before,
  .industry-compare-table tbody td:last-child::before {
    left: 14px;
  }
}

/* CHALLENGES SECTION */
.industry-challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.industry-challenge-card {
  display: flex;
  gap: 18px;
  background: var(--text-white);
  padding: 26px 28px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.35s ease;
}
.industry-challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(21, 105, 253, 0.12);
  border-color: rgba(21, 105, 253, 0.3);
}
.industry-challenge-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(21, 105, 253, 0.1);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-16);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.industry-challenge-card:hover .industry-challenge-num {
  background: var(--primary-color);
  color: #fff;
}
.industry-challenge-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-17, 1.0625rem);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 6px;
}
.industry-challenge-text {
  font-size: var(--font-size-14);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) {
  .industry-challenges-grid {
    grid-template-columns: 1fr;
  }
  .industry-challenge-card {
    padding: 20px;
  }
}

/* TECHNOLOGY SOLUTIONS SECTION */
.industry-solutions-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.industry-solution-row {
  display: flex;
  gap: 28px;
  background: var(--text-white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 30px 34px;
  align-items: flex-start;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.industry-solution-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleY(0);
  transition: transform 0.35s ease;
  transform-origin: top;
}
.industry-solution-row:hover::before {
  transform: scaleY(1);
}
.industry-solution-row:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateX(6px);
}
.industry-solution-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(21, 105, 253, 0.1),
    rgba(11, 60, 93, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}
.industry-solution-row:hover .industry-solution-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}
.industry-solution-icon i {
  font-size: 26px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}
.industry-solution-row:hover .industry-solution-icon i {
  color: #fff;
}
.industry-solution-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-20);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.industry-solution-text {
  font-size: var(--font-size-15);
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 768px) {
  .industry-solution-row {
    flex-direction: column;
    padding: 24px 22px;
    gap: 16px;
  }
  .industry-solution-icon {
    width: 54px;
    height: 54px;
  }
}

/* FEATURES SECTION */
.industry-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-feature-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--text-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 22px;
  transition: all 0.3s ease;
}
.industry-feature-pill:hover {
  border-color: var(--primary-color);
  background: rgba(21, 105, 253, 0.04);
  transform: translateY(-3px);
}
.industry-feature-pill .industry-feature-check {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(21, 105, 253, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.3s ease;
}
.industry-feature-pill:hover .industry-feature-check {
  background: var(--primary-color);
  color: #fff;
}
.industry-feature-pill span {
  font-size: var(--font-size-15);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}
@media (max-width: 991px) {
  .industry-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .industry-features-grid {
    grid-template-columns: 1fr;
  }
}
/* BUSINESSES WE SERVE SECTION */
.industry-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: industryServe;
}
.industry-serve-card {
  counter-increment: industryServe;
  position: relative;
  background: var(--text-white);
  border-radius: 20px;
  padding: 34px 28px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  box-shadow: 0 2px 14px rgba(11, 60, 93, 0.06);
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-serve-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.industry-serve-card::after {
  content: counter(industryServe, decimal-leading-zero);
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: rgba(21, 105, 253, 0.06);
  transition:
    color 0.4s ease,
    transform 0.4s ease;
  z-index: 0;
  pointer-events: none;
}
.industry-serve-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 55px rgba(21, 105, 253, 0.16);
}
.industry-serve-card:hover::before {
  opacity: 1;
}
.industry-serve-card:hover::after {
  color: rgba(21, 105, 253, 0.1);
  transform: scale(1.08);
}
.industry-serve-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--text-white);
  border: 2px solid rgba(21, 105, 253, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(11, 60, 93, 0.06);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.industry-serve-card:hover .industry-serve-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: rotate(360deg);
  box-shadow:
    0 0 0 6px rgba(21, 105, 253, 0.12),
    0 14px 28px rgba(21, 105, 253, 0.32);
}
.industry-serve-icon i {
  font-size: 24px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}
.industry-serve-card:hover .industry-serve-icon i {
  color: #fff;
}
.industry-serve-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: var(--font-size-17, 1.0625rem);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.35;
  transition: color 0.3s ease;
}
.industry-serve-card:hover .industry-serve-title {
  color: var(--primary-color);
}
.industry-serve-text {
  position: relative;
  z-index: 1;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .industry-serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .industry-serve-grid {
    grid-template-columns: 1fr;
  }
  .industry-serve-card {
    padding: 28px 24px 26px;
  }
  .industry-serve-card::after {
    font-size: 48px;
  }
}
.industry-why-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0a2d47 100%);
  position: relative;
  overflow: hidden;
}
.industry-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}
.industry-why-section .container {
  position: relative;
  z-index: 1;
}
.industry-why-content {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}
.industry-why-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  margin-bottom: 22px;
}
.industry-why-content p:last-child {
  margin-bottom: 0;
}
