/* ── GOVERNMENT — Deep Navy + Teal ── */
.industry-govt {
  --card-bg-from: #071e30;
  --card-bg-to: #0a2e3a;
  --border-from: #0891b2;
  --border-to: #06b6d4;
  --accent-primary: #67e8f9;
  --accent-secondary: #0891b2;
  --text-primary: #ffffff;
  --text-secondary: #7ab8d0;
  --text-muted: #3a6a7a;
  --bar-fill: #0891b2;
  --bar-fill-alt: #06b6d4;
  --badge-bg: rgba(8, 145, 178, 0.25);
  --progress-stroke: #67e8f9;
}

/* ── FINANCIAL & TRADING — Dark Indigo + Electric Blue ── */
.industry-finance {
  --card-bg-from: #0d0a28;
  --card-bg-to: #0a1a38;
  --border-from: #4f46e5;
  --border-to: #1d6fb8;
  --accent-primary: #818cf8;
  --accent-secondary: #60a5fa;
  --text-primary: #ffffff;
  --text-secondary: #7888d8;
  --text-muted: #3a4a78;
  --bar-fill: #4f46e5;
  --bar-fill-alt: #818cf8;
  --badge-bg: rgba(79, 70, 229, 0.25);
  --progress-stroke: #818cf8;
}

/* ── RETAIL & COMMERCE — Deep Green + Emerald ── */
.industry-retail {
  --card-bg-from: #052010;
  --card-bg-to: #071e18;
  --border-from: #0d7a4a;
  --border-to: #10b981;
  --accent-primary: #6ee7b7;
  --accent-secondary: #10b981;
  --text-primary: #ffffff;
  --text-secondary: #7ac8a0;
  --text-muted: #3a6a4a;
  --bar-fill: #0d7a4a;
  --bar-fill-alt: #10b981;
  --badge-bg: rgba(13, 122, 74, 0.25);
  --progress-stroke: #6ee7b7;
}

/* ── LOGISTICS & SUPPLY CHAIN — Slate Blue + Amber accent ── */
.industry-logistics {
  --card-bg-from: #0e1e38;
  --card-bg-to: #0a1a30;
  --border-from: #1d6fb8;
  --border-to: #0891b2;
  --accent-primary: #fbbf24;
  --accent-secondary: #60a5fa;
  --text-primary: #ffffff;
  --text-secondary: #7ab0d8;
  --text-muted: #3a5a7a;
  --bar-fill: #1d6fb8;
  --bar-fill-alt: #fbbf24;
  --badge-bg: rgba(29, 111, 184, 0.25);
  --progress-stroke: #fbbf24;
}

/* ── PROFESSIONAL SERVICES — Dark Purple + Violet ── */
.industry-professional {
  --card-bg-from: #18106a;
  --card-bg-to: #120e40;
  --border-from: #7c3aed;
  --border-to: #a78bfa;
  --accent-primary: #c4b5fd;
  --accent-secondary: #a78bfa;
  --text-primary: #ffffff;
  --text-secondary: #9888d8;
  --text-muted: #5a4a8a;
  --bar-fill: #7c3aed;
  --bar-fill-alt: #a78bfa;
  --badge-bg: rgba(124, 58, 237, 0.25);
  --progress-stroke: #c4b5fd;
}

.page-hero {
  padding: 140px 6vw 80px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  display: flex;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 47px,
    var(--blue-mid) 47px,
    var(--blue-mid) 48px
  );
  opacity: 0.22;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-top: 3rem;
}

.hero-img {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  z-index: 5;
}

.hero-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

.page-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.page-hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
}

.industry-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 4.5rem;
}

.ind-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  background: var(--white);
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.ind-pill:hover,
.ind-pill.active {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}

.ind-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.page-hero-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.overview-stats {
  background: var(--blue);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 2.25rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.industry-section {
  padding: 6rem 6vw;
  border-bottom: 1px solid var(--border);
}

.industry-section:nth-child(odd) {
  background: var(--off-white);
}

.industry-section:nth-child(even) {
  background: var(--white);
}

.industry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.industry-layout.reverse {
  direction: rtl;
}

.industry-layout.reverse > * {
  direction: ltr;
}

.ind-icon-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ind-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ind-icon svg {
  width: 26px;
  height: 26px;
}

.ind-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.industry-section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 0.75rem;
}

.intro-text {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.col-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.industry-section:nth-child(odd) .col-block {
  background: var(--white);
}

.col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.col-title.blue {
  color: var(--blue);
}

.col-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.col-block li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.855rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.55;
}

.col-block li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 6px;
  flex-shrink: 0;
}

.deliverables {
  margin-top: 1.25rem;
}

.del-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
}

.ind-visual {
  position: sticky;
  top: 100px;
}

.vis-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(10, 79, 191, 0.07);
}

.vis-header {
  background: linear-gradient(
    to bottom,
    var(--card-bg-from),
    var(--card-bg-to)
  );
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vis-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.vis-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vis-body {
  padding: 1.5rem;
  background: var(--card-bg-to);
}

.mrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

.mrow:last-child {
  border-bottom: none;
}

.mlabel {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.mval {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.mval.blue {
  color: var(--blue);
}

.mval.green {
  color: #1b7a3e;
}

.mval.warn {
  color: #b45309;
}

.mbar-wrap {
  height: 4px;
  background: var(--blue-mid);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
  width: 160px;
}

.mbar {
  height: 100%;
  background: var(--bar-fill);
  border-radius: 2px;
}

.mchart {
  margin-top: 1rem;
}

.mchart-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}

.b {
  flex: 1;
  background: var(--bar-fill);
  border-radius: 2px 2px 0 0;
}

.b.a1 {
  background: var(--bar-fill-alt);
}

.b.a2 {
  background: var(--accent-primary);
}

.spill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.spill.active {
  background: #e6f4ec;
  color: #1b7a3e;
}

.spill.active::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1b7a3e;
}

.spill.info {
  background: var(--blue-light);
  color: var(--blue);
}

.spill.info::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.tag-pills {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sectors-overview {
  padding: 5rem 6vw;
  background: var(--blue-deeper);
}

.sectors-overview .section-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.sectors-overview .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.35);
}

.sectors-overview h2 {
  color: var(--white);
}

.sectors-overview .section-lead {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.sec-card {
  background: var(--blue-deeper);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: background 0.25s;
  text-decoration: none;
  display: block;
}

.sec-card:hover {
  background: var(--blue-dark);
}

.sec-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.sec-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.sec-icon svg {
  width: 22px;
  height: 22px;
}

.sec-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.3;
}

.cta-section {
  background: var(--white);
  padding: 7rem 6vw;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  border-top: 1px solid var(--border);
}

.cta-left h2 {
  margin-bottom: 0.75rem;
}

.cta-left p {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.75;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--blue);
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--blue);
  transition: background 0.2s;
}

.btn-outline:hover {
  background: var(--blue-light);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1770px) {
  .hero-img img {
    width: 837.6px;
  }
}

@media (max-width: 1100px) {
  .hero-img {
    display: none;
  }

  .industry-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .industry-layout.reverse {
    direction: ltr;
  }

  .ind-visual {
    position: static;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-right {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .overview-stats {
    grid-template-columns: repeat(1, 1fr);
  }

  .stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-right {
    flex-direction: column;
  }
  
  
  /*added 20260414*/
  .nav-toggle {
    display: flex;
  }

  .nav-drawer {
    display: block;
  }
  /*hide secondary nav*/
  .industry-nav {
    display: none;
    margin: 0;
    padding: 0;
  }
    
  .page-hero-inner {
    margin-top: 0rem;
   }
   /*end added 20260414*/
   
   
}
