/* =============================================================
   INDUSTRIES HERO SECTION
   ============================================================= */
/* .ind-hero {
  position: relative;
  width: 100%;
  height: 55.211rem;
  overflow: hidden;
  display: flex;
  align-items: center;
} */

.ind-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 1;
}

.ind-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(121.249deg, rgba(0, 0, 0, 0.65) 42.276%, rgba(0, 0, 0, 0.26) 99.873%);
  z-index: 2;
  pointer-events: none;
}

.ind-hero-content {
  gap: 5rem;
}

.ind-hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 90rem;
  /* ~1710px */
  margin: 0 auto;
  padding: 0 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 7.895rem;
  /* ~150px / 19 */
  gap: 8.421rem;
  /* ~160px / 19 */
}

.ind-hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.579rem;
  /* 30px / 19 */
  max-width: 50.789rem;
  /* 965px / 19 */
}

.ind-hero-title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 3.368rem;
  /* 64px / 19 */
  line-height: 4.316rem;
  /* 82px / 19 */
  color: var(--bg-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ind-hero-desc {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  /* 19px / 19 */
  line-height: 1.579rem;
  /* 30px / 19 */
  color: rgba(255, 255, 255, 0.9);
}

.ind-label-block {
  display: flex;
  flex-direction: column;
  gap: 0.263rem;
  /* 5px / 19 */
}

.ind-label-txt {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.789rem;
  /* 34px / 19 */
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.85);
}

.ind-name-txt {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1.105rem;
  /* 21px / 19 */
  line-height: 1.2;
  color: var(--bg-white);
}

/* =============================================================
   REVOLUTIONIZE SECTION (ACCORDION)
   ============================================================= */
.ind-revolutionize-section {
  /* background-color: var(--bg-light); */
  padding: 11.88rem 0;
}

.ind-revolutionize-header {
  position: relative;
  margin-bottom: 4.211rem;
  /* 80px / 19 */
}

.ind-revolutionize-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 2.263rem;
  /* 43px / 19 */
  line-height: 1.2;
  color: var(--base-dark);
}

.ind-revolutionize-underline {
  /* margin-top: 0.526rem; */
  width: 100%;
  display: flex;
  margin-bottom: 1.2rem;
}

.ind-revolutionize-underline svg {
  width: 18.5rem;
  height: auto;
  margin-left: 34.5rem;
}

/* Custom Accordion Listing */
.ind-accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ind-accordion .accordion-item {
  border-bottom: 0.053rem solid var(--border-medium);
  padding: 1.842rem 0;
  /* 35px / 19 */
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;

  cursor: pointer;
}

.ind-accordion .accordion-item:last-child {
  border-bottom: none;
}

.ind-accordion .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  user-select: none;
}

.ind-accordion .accordion-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.579rem;
  /* 30px / 19 */
  line-height: 1.2;
  color: var(--base-dark);
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.ind-accordion .accordion-item.active .accordion-title {
  font-weight: 400;
  color: var(--primary-blue);
}

/* Icon Styles */
.ind-accordion-toggle-icon {
  width: 1.263rem;
  /* 24px / 19 */
  height: 1.263rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base-dark);
  transition: color 0.3s ease;
}

.ind-accordion .accordion-item.active .ind-accordion-toggle-icon {
  color: var(--primary-blue);
}

.ind-accordion-toggle-icon svg {
  width: 100%;
  height: 100%;
}

.ind-accordion-toggle-icon .vertical-line {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  transform-origin: center;
}

.ind-accordion .accordion-item.active .ind-accordion-toggle-icon .vertical-line {
  transform: rotate(90deg) scale(0);
  opacity: 0;
}

.ind-accordion .accordion-header:hover .accordion-title {
  color: var(--primary-blue);
}

/* Expanded Content */
.ind-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

.ind-accordion-body {
  display: grid;
  grid-template-columns: 19.632rem 1fr;
  /* 373px / 19 */
  gap: 2.105rem;
  /* 40px / 19 */
  align-items: center;
  padding-top: 1.579rem;
  /* 30px / 19 */
}

.ind-accordion-img-wrap {
  width: 19.632rem;
  height: 11.737rem;
  /* 223px / 19 */
  border-radius: 0.632rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(8, 75, 129, 0.08);
  background-color: #d9d9d9;
}

.ind-accordion-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ind-accordion-img-wrap:hover img {
  transform: scale(1.05);
}

.ind-accordion-desc-wrap {
  display: flex;
  flex-direction: column;
}

.ind-accordion-desc {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  /* 19px / 19 */
  line-height: 1.895rem;
  /* 36px / 19 */
  color: var(--base-dark);
}

.ind-accordion-desc ul {
  padding-left: 1.2rem;
}

.ind-accordion-desc li {
  margin-bottom: 0.5rem;
}

/* =============================================================
   RESPONSIVE DESIGN
   ============================================================= */
@media (max-width: 1200px) {
  .ind-hero-container {
    padding: 0 3rem 6rem;
  }
}

@media (max-width: 1024px) {
  .ind-hero {
    height: 45rem;
  }

  .ind-hero-container {
    padding: 0 2rem 4rem;
    gap: 4rem;
  }

  .ind-hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
  }

  .ind-accordion-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ind-accordion-img-wrap {
    width: 100%;
    height: 15rem;
  }
}

@media (max-width: 768px) {
  .ind-hero {
    height: 38rem;
  }

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

  .ind-label-txt {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .ind-hero {
    height: 34rem;
  }

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

  .ind-hero-container {
    padding: 0 1.5rem 3rem;
  }

  .ind-accordion .accordion-title {
    font-size: 1.2rem;
  }

  .ind-serve-grid {
    grid-template-columns: 1fr;
  }

  .ind-serve-title {
    font-size: 1.6rem;
  }
}

/* =============================================================
   INDUSTRIES WE SERVE SECTION — Figma list layout
   ============================================================= */
.ind-serve-section {
  padding: 0rem 0 8rem;
}

.ind-serve-header {
  margin-bottom: 3rem;
}

.ind-serve-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 2.263rem;
  line-height: 1.2;
  color: var(--base-dark);
}

.ind-serve-underline {
  /* margin-top: 0.4rem; */
  width: 100%;
  display: flex;
  margin-bottom: 1.2rem;
  /* justify-content: space-around; */
}

.ind-serve-underline svg {
  width: 10rem;
  height: auto;
  margin-left: 38rem;
}

.ind-serve-subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.053rem;
  line-height: 1.6;
  color: var(--text-sub, #464646);
  max-width: 40rem;
}

/* List container */
.ind-serve-list {
  display: flex;
  flex-direction: column;
}

/* Horizontal divider */
.ind-serve-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-medium, #bcbcbc);
}

/* Each row: two items side by side */
.ind-serve-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 2.5rem 0;
}

/* Each item: icon + text */
.ind-serve-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-right: 3rem;
}

.ind-serve-item:last-child {
  padding-right: 0;
  padding-left: 2rem;
  border-left: 1px solid var(--border-medium, #bcbcbc);
}

/* Icon box */
.ind-serve-icon {
  width: 3.032rem;
  height: 3.032rem;
  flex-shrink: 0;
  border: 1px solid var(--border-medium, #bcbcbc);
  border-radius: 0.563rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base-dark);
}

.ind-serve-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Text block */
.ind-serve-text {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.ind-serve-item-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.842rem;
  line-height: 1.3;
  color: var(--base-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ind-serve-item-desc {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.947rem;
  line-height: 1.6;
  color: var(--text-sub, #464646);
}

.ind-testimonial-section {
  padding: 9.88rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .ind-serve-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }

  .ind-serve-item:last-child {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border-medium, #bcbcbc);
    padding-top: 2rem;
  }

  .ind-serve-item {
    padding-right: 0;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .ind-serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ind-serve-grid {
    grid-template-columns: 1fr;
  }

}

/* =============================================================
   industries.css — All Industries listing page styles
 */

.in-hero-title {
  max-width: 40rem;
}

/* ---------------------------------------------------------------
   Optional: small badge/eyebrow above the grid section title,
   not present on the Services page.
--------------------------------------------------------------- */
.in-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.421rem;
  padding: 0.263rem 0.842rem;
  border-radius: 100rem;
  background: #eef6ff;
  border: 1px solid #d8edff;
  color: #008dff;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.737rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}