:root {
  --industrial-blue: #005eb8;
  --deep-navy: #0c2340;
  --safety-orange: #f05a28;
  --surface: #f9f9ff;
  --surface-low: #f2f3fb;
  --surface-high: #e7e8f0;
  --outline: #c2c6d4;
  --text: #191c21;
  --muted: #506070;
  --blueprint: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.font-mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.site-header {
  background: rgba(249, 249, 255, 0.96);
  border-bottom: 1px solid var(--outline);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(12, 35, 64, 0.04);
}

.site-header .container {
  min-height: 52px;
}

.navbar-brand {
  min-width: 168px;
}

.navbar-brand img {
  width: auto;
  height: 40px;
  max-width: 178px;
  object-fit: contain;
}

.navbar-brand span {
  font-weight: 800;
  color: var(--deep-navy);
  letter-spacing: 0;
}

.nav-link {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--industrial-blue);
}

.nav-link.active {
  border-bottom: 2px solid var(--industrial-blue);
}

.nav-link:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.form-check-input:focus-visible {
  outline: 3px solid rgba(0, 94, 184, 0.24);
  outline-offset: 2px;
}

.btn {
  border-radius: 0.25rem;
  font-weight: 700;
}

.btn-primary {
  background: var(--industrial-blue);
  border-color: var(--industrial-blue);
}

.btn-primary:hover {
  background: #00478d;
  border-color: #00478d;
}

.btn-outline-primary {
  color: var(--industrial-blue);
  border-color: var(--industrial-blue);
}

.btn-outline-primary:hover {
  background: var(--industrial-blue);
  border-color: var(--industrial-blue);
}

.btn-orange {
  background: var(--safety-orange);
  border-color: var(--safety-orange);
  color: #fff;
}

.btn-orange:hover {
  background: #d84d20;
  border-color: #d84d20;
  color: #fff;
}

.label-caps {
  color: var(--industrial-blue);
  display: inline-block;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.label-orange {
  color: var(--safety-orange);
}

.section-pad {
  padding: 6rem 0;
}

.section-soft {
  background: var(--surface-low);
  border-bottom: 1px solid var(--outline);
  border-top: 1px solid var(--outline);
}

.blueprint-grid {
  background-image: radial-gradient(circle, rgba(114, 119, 131, 0.34) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero {
  min-height: 720px;
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.96), rgba(12, 35, 64, 0.8) 48%, rgba(12, 35, 64, 0.56)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero p,
.page-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  max-width: 660px;
}

.page-hero {
  min-height: 440px;
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.96), rgba(12, 35, 64, 0.74)),
    url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.stat-strip {
  background: var(--deep-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.stat-value {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.05rem;
  font-weight: 800;
}

.stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.industrial-card {
  background: #fff;
  border: 1px solid var(--outline);
  border-radius: 0.5rem;
  height: 100%;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.industrial-card:hover {
  border-color: var(--industrial-blue);
  box-shadow: 4px 4px 0 rgba(0, 94, 184, 0.16);
  transform: translateY(-2px);
}

.icon-box {
  align-items: center;
  background: rgba(0, 94, 184, 0.08);
  color: var(--industrial-blue);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.service-tag {
  border: 1px solid rgba(0, 94, 184, 0.45);
  color: var(--industrial-blue);
  display: inline-block;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
}

.project-tile {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--outline);
  border-radius: 0.5rem;
  color: #fff;
  background: var(--deep-navy);
}

.project-tile img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(12, 35, 64, 0.9));
}

.project-tile .project-copy {
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  position: absolute;
  right: 0;
  z-index: 2;
}

.quote-band {
  background: var(--industrial-blue);
  color: #fff;
}

.dark-band {
  background: var(--deep-navy);
  color: #fff;
}

.dark-band p,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.mission-card {
  background: #fff;
  border-left: 4px solid var(--industrial-blue);
  color: var(--deep-navy);
}

.mission-card .label-caps {
  color: var(--industrial-blue);
}

.mission-card-text {
  color: var(--deep-navy) !important;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
}

.site-footer {
  background: #0a203a;
  color: #fff;
}

.site-footer a:hover {
  color: #fff;
}

.designed-footer {
  background:
    linear-gradient(180deg, #0a223d 0%, #071a2f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.designed-footer .container {
  max-width: 1280px;
}

.designed-footer .row {
  --bs-gutter-x: 5rem;
}

.designed-footer .home-footer-brand img {
  height: 40px;
  max-width: 180px;
  object-fit: contain;
  width: auto;
}

.designed-footer .home-footer-brand strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}

.designed-footer p,
.designed-footer a {
  font-size: 0.76rem;
  line-height: 1.7;
}

.designed-footer .label-caps {
  font-size: 0.62rem;
}

.site-footer h3,
.designed-page .site-footer h3 {
  color: var(--safety-orange);
}

.site-footer .home-footer-brand strong,
.designed-page .site-footer .home-footer-brand strong {
  color: #fff;
}

.designed-footer .btn {
  align-items: center;
  border-radius: 0;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  width: 34px;
}

.site-footer .border-top {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.26);
}

.site-footer .btn-outline-light:hover {
  background: var(--safety-orange);
  border-color: var(--safety-orange);
}

.form-control,
.form-select {
  background-color: var(--surface-low);
  border: 0;
  border-bottom: 1px solid #727783;
  border-radius: 0.25rem 0.25rem 0 0;
  padding: 0.95rem 1rem;
}

.form-control:focus,
.form-select:focus {
  background-color: #fff;
  border-bottom-color: var(--industrial-blue);
  box-shadow: 0 2px 0 var(--industrial-blue);
}

.form-label {
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-link {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.contact-link i {
  align-items: center;
  background: var(--surface-high);
  color: var(--industrial-blue);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.contact-link strong {
  overflow-wrap: anywhere;
}

.contact-section-title {
  font-weight: 600 !important;
  margin-bottom: 1rem;
}

.contact-details {
  gap: 1.35rem !important;
}

.contact-page .contact-link {
  align-items: flex-start;
}

.contact-page .contact-link .label-caps {
  color: #6f7b8b;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.42rem;
}

.contact-value {
  color: var(--deep-navy);
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-meta-value {
  color: var(--deep-navy);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.team-photo,
.industry-photo {
  border: 1px solid var(--outline);
  height: 280px;
  object-fit: cover;
  width: 100%;
}

.table-industrial th {
  color: var(--deep-navy);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-industrial td,
.table-industrial th {
  border-color: var(--outline);
  padding: 1rem;
}

@media (max-width: 991.98px) {
  .nav-link.active {
    border-bottom: 0;
  }

  .section-pad {
    padding: 4rem 0;
  }

  .hero {
    min-height: 680px;
  }
}

@media (max-width: 575.98px) {
  .hero {
    min-height: 640px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }
}

/* Home screen matched to supplied design reference */
.home-page {
  background: #f9f9ff;
}

.home-page .container {
  max-width: 1280px;
  padding-left: 72px;
  padding-right: 72px;
}

.home-header .navbar {
  min-height: 52px;
}

.home-header .navbar-brand img {
  height: 40px;
  max-width: 178px;
  width: auto;
}

.home-header .navbar-brand span {
  font-size: 0.92rem;
  font-weight: 700;
}

.home-header .nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 0.98rem;
  padding-top: 0.98rem;
}

.home-header .btn {
  border-radius: 0;
  font-size: 0.68rem;
  min-width: 128px;
  padding-bottom: 0.62rem;
  padding-top: 0.62rem;
}

.home-hero {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.86), rgba(12, 35, 64, 0.68) 48%, rgba(12, 35, 64, 0.36)),
    url("../img/Installation%20of%20Gas%20Turbine%20Fabrication%20And%20Welding%20of%20Associated%20Media%20Pipes.jpg") center/cover;
}

.home-hero::after {
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.08), rgba(12, 35, 64, 0.24)),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
}

.home-hero .hero-content {
  padding-bottom: 66px;
  padding-top: 76px;
}

.home-hero h1 {
  font-size: clamp(2.35rem, 3.85vw, 3.35rem);
  letter-spacing: -0.01em;
  line-height: 1.02;
  max-width: 650px;
}

.home-hero p {
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 470px;
}

.home-hero-actions .btn {
  border-radius: 0;
  font-size: 0.72rem;
  min-width: 132px;
  padding: 0.85rem 1.2rem;
}

.hero-help {
  align-items: center;
  background: var(--safety-orange);
  bottom: 0;
  color: #fff;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  position: absolute;
  right: 32px;
  width: 44px;
  z-index: 3;
}

.hero-help:hover {
  color: #fff;
  background: #d84d20;
}

.home-stats {
  margin-top: -1px;
}

.home-stats .container {
  padding-bottom: 0.15rem;
  padding-top: 0.15rem;
}

.home-stats .row > div {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.home-stats .row > div:last-child {
  border-right: 0;
}

.home-services,
.home-projects,
.home-industries {
  padding: 5rem 0;
}

.home-section-title {
  color: #050b13;
  font-size: clamp(1.55rem, 2.05vw, 2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0;
}

.home-services .text-secondary,
.home-industries .text-secondary {
  font-size: 0.86rem;
  line-height: 1.65;
}

.home-card {
  border-radius: 0;
  min-height: 246px;
  padding: 2rem;
}

.home-card:hover,
.home-project-card:hover {
  box-shadow: none;
  transform: none;
}

.home-card,
.home-project-card {
  border-radius: 0;
}

.home-card .icon-box {
  background: transparent;
  height: auto;
  justify-content: flex-start;
  width: auto;
}

.home-card .icon-box i {
  font-size: 1.35rem;
}

.home-card .service-tag {
  border: 0;
  color: #7a8594;
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  padding: 0 0 0.75rem;
}

.home-card h3 {
  font-size: 1.08rem;
  line-height: 1.24;
  margin-bottom: 0.9rem;
}

.home-card p {
  font-size: 0.78rem;
  line-height: 1.55;
  min-height: 62px;
}

.home-card .label-caps,
.home-project-card .label-caps {
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: none;
}

.home-projects {
  background: #e8eaf3;
}

.home-projects .home-section-title {
  position: relative;
}

.home-projects .home-section-title::after {
  background: var(--safety-orange);
  content: "";
  display: block;
  height: 2px;
  margin-top: 18px;
  width: 72px;
}

.home-project-main {
  border-radius: 0;
  min-height: 400px;
}

.home-project-main::after {
  background: linear-gradient(180deg, rgba(12, 35, 64, 0.08), rgba(12, 35, 64, 0.9));
}

.home-project-main .project-copy {
  padding: 1.7rem 2rem;
}

.home-project-main h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.home-project-main p {
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 560px;
}

.home-project-card {
  border-radius: 0;
  min-height: 176px;
  padding: 2rem;
}

.home-project-card .label-caps {
  color: #7a8594;
  display: block;
  letter-spacing: 0.14em;
  margin-bottom: 1.1rem !important;
  text-transform: uppercase;
}

.home-project-card h3 {
  font-size: 0.95rem;
}

.home-project-card p {
  font-size: 0.76rem;
  line-height: 1.55;
}

.home-industries {
  background: #fff;
}

.home-industries .home-section-title {
  max-width: 420px;
}

.home-industries .home-section-title::after {
  background: var(--safety-orange);
  content: "";
  display: block;
  height: 2px;
  margin-top: 18px;
  width: 72px;
}

.home-industries .icon-box {
  height: 32px;
  width: 32px;
}

.home-industries strong {
  font-size: 0.9rem;
}

.home-industries p.small {
  font-size: 0.78rem;
}

.home-engineer-wrap {
  margin-left: auto;
  max-width: 560px;
  padding-top: 18px;
  position: relative;
}

.home-engineer-wrap::before {
  border-left: 4px solid var(--safety-orange);
  border-top: 4px solid var(--safety-orange);
  content: "";
  height: 86px;
  left: -14px;
  position: absolute;
  top: 0;
  width: 86px;
  z-index: 2;
}

.home-engineer-photo {
  border: 0;
  height: 420px;
  object-fit: cover;
  width: 100%;
}

.home-quote-card {
  background: var(--industrial-blue);
  bottom: -36px;
  color: #fff;
  max-width: 340px;
  padding: 1.45rem 1.55rem;
  position: absolute;
  right: -32px;
  z-index: 3;
}

.home-quote-card p {
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 1rem;
}

.home-quote-card strong,
.home-quote-card span {
  display: block;
  font-size: 0.76rem;
}

.home-quote-card span {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-cta {
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.98), rgba(0, 94, 184, 0.92)),
    linear-gradient(135deg, rgba(240, 90, 40, 0.16), transparent 52%);
  padding-bottom: 4.6rem !important;
  padding-top: 4.6rem !important;
}

.home-cta-content {
  align-items: center;
  display: grid;
  gap: 2.25rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.home-cta h2 {
  color: #fff;
  font-size: clamp(1.45rem, 2.05vw, 2rem);
  font-weight: 500;
  line-height: 1.16;
  max-width: 680px;
}

.home-cta p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  max-width: 620px;
}

.home-cta-action {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 2rem;
}

.home-cta-meta {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}

.home-cta-meta > div {
  border-top: 2px solid rgba(240, 90, 40, 0.7);
  padding-top: 0.85rem;
}

.home-cta-meta .label-caps {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.45rem;
}

.home-cta-meta strong {
  color: #fff;
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.home-cta .btn {
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
}

.home-cta .btn-light {
  color: var(--industrial-blue);
}

.home-cta .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.home-cta .btn-outline-light:hover {
  background: var(--safety-orange);
  border-color: var(--safety-orange);
  color: #fff;
}

.home-cta .btn-light:hover,
.quote-band .btn-light:hover {
  background: #fff;
  border-color: #fff;
  color: #00478d;
  transform: translateY(-1px);
}

.home-footer {
  background: #0a223d;
}

@media (max-width: 991.98px) {
  .home-header .nav-link {
    padding-bottom: 0.45rem;
    padding-top: 0.45rem;
  }

  .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--outline);
    margin-left: -32px;
    margin-right: -32px;
    margin-top: 0.5rem;
    padding: 1rem 32px 1.2rem;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .site-header .navbar-collapse .btn {
    margin-top: 0.8rem;
    width: 100%;
  }

  .home-hero {
    min-height: 590px;
    background-size: cover;
  }

  .home-hero .hero-content {
    padding-bottom: 52px;
    padding-top: 62px;
  }

  .home-page .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .home-stats .row > div:nth-child(2) {
    border-right: 0;
  }

  .home-services,
  .home-projects,
  .home-industries {
    padding: 4rem 0;
  }

  .home-card {
    min-height: 230px;
  }

  .home-quote-card {
    bottom: 18px;
    right: 18px;
  }

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

  .home-cta-action {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-top: 1.75rem;
  }

  .home-footer .row,
  .designed-footer .row {
    --bs-gutter-x: 2rem;
  }
}

@media (max-width: 575.98px) {
  .home-hero .hero-content {
    padding-bottom: 40px;
    padding-top: 44px;
  }

  .home-page .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-hero h1 {
    font-size: 2.05rem;
  }

  .home-hero p {
    font-size: 0.84rem;
  }

  .home-page .row.g-5 {
    --bs-gutter-x: 2.25rem;
  }

  .home-stats .row > div {
    border-right: 0;
  }

  .home-card {
    min-height: auto;
  }

  .home-project-main {
    min-height: 330px;
  }

  .home-engineer-photo {
    height: 360px;
  }

  .home-quote-card {
    max-width: calc(100% - 36px);
    position: relative;
    right: auto;
    bottom: auto;
    margin: -70px 18px 0 auto;
  }

  .home-cta {
    padding-bottom: 3.6rem !important;
    padding-top: 3.6rem !important;
  }

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

  .home-cta .btn {
    width: 100%;
  }
}

/* Inner pages aligned to supplied design references */
.designed-page {
  background: #f9f9ff;
}

.designed-page .container {
  max-width: 1280px;
  padding-left: 72px;
  padding-right: 72px;
}

.designed-page .site-header {
  background: rgba(249, 249, 255, 0.97);
}

.designed-page .navbar {
  min-height: 52px;
  padding-bottom: 0;
  padding-top: 0;
}

.designed-page .navbar-brand img {
  height: 40px;
  max-width: 178px;
  width: auto;
}

.designed-page .navbar-brand span {
  font-size: 0.92rem;
  font-weight: 700;
}

.designed-page .nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 0.98rem;
  padding-top: 0.98rem;
}

.designed-page .site-header .btn {
  border-radius: 0;
  font-size: 0.68rem;
  min-width: 128px;
  padding: 0.62rem 1rem;
}

.designed-page .page-hero {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.94), rgba(12, 35, 64, 0.76)),
    url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1500&q=80") center/cover;
}

.designed-page .page-hero .btn {
  margin-top: 0.7rem;
}

.designed-page.about-page .page-hero {
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.9), rgba(12, 35, 64, 0.62) 48%, rgba(12, 35, 64, 0.38)),
    url("../img/about-hero-industrial-engineering.png") center/cover;
}

.designed-page.services-page .page-hero {
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.9), rgba(12, 35, 64, 0.62) 48%, rgba(12, 35, 64, 0.34)),
    url("../img/services-hero-industrial-capabilities.png") center/cover;
}

.services-page main > section:not(.page-hero) .h1 {
  color: #050b13;
  font-size: clamp(1.55rem, 2.05vw, 2rem);
  font-weight: 500 !important;
  letter-spacing: 0;
  line-height: 1.16;
}

.services-page main > section:not(.page-hero) p {
  font-size: 0.86rem;
  line-height: 1.65;
}

.services-page .blueprint-grid .text-secondary {
  max-width: 560px;
}

.services-page .blueprint-grid strong,
.services-page .industrial-card strong {
  color: #050b13;
  font-size: 0.82rem;
  font-weight: 600;
}

.services-page .blueprint-grid .small {
  font-size: 0.76rem;
  line-height: 1.55;
}

.services-page .services-feature-image {
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 360px;
  object-fit: cover;
}

.services-page .section-soft .d-flex.mb-5 {
  align-items: end;
}

.services-page .service-tag {
  border: 0;
  color: #7a8594;
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  padding: 0 0 0.75rem;
}

.services-page .industrial-card {
  border-radius: 0;
  transition: border-color 180ms ease;
}

.services-page .industrial-card:hover {
  border-color: rgba(0, 94, 184, 0.48);
  transform: none;
}

.services-page .industrial-card h3 {
  color: #050b13;
  font-size: 1.08rem;
  font-weight: 600 !important;
  line-height: 1.24;
  margin-bottom: 0.9rem;
}

.services-page .industrial-card h3.h2 {
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
}

.services-page .industrial-card p {
  font-size: 0.78rem;
  line-height: 1.55;
}

.services-page .industrial-card ul {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
  margin-bottom: 0;
  padding-left: 1rem;
}

.services-page .industrial-card .border-top {
  color: var(--muted);
  font-size: 0.78rem;
}

.services-page .services-card-image {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--outline);
  object-fit: cover;
  width: 100%;
}

.services-page .services-maintenance-image {
  min-height: 320px;
}

.services-page .industrial-card.dark-band h3,
.services-page .industrial-card.dark-band strong {
  color: #fff;
}

.services-page .industrial-card.dark-band p {
  color: rgba(255, 255, 255, 0.76);
}

.services-page .industrial-card.dark-band .service-tag {
  color: var(--safety-orange) !important;
}

.services-page main > section.dark-band.section-pad h2.h1 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600 !important;
  letter-spacing: 0;
}

.services-page .dark-band.section-pad p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.about-page main > section:not(.page-hero) .h1 {
  font-size: clamp(1.55rem, 2.05vw, 2rem);
  font-weight: 500 !important;
  letter-spacing: 0;
  line-height: 1.16;
}

.about-page main > section:not(.page-hero) p {
  font-size: 0.86rem;
  line-height: 1.65;
}

.about-page .dark-band.section-pad h2.h1 {
  color: #fff;
  max-width: 580px;
}

.about-page .dark-band.section-pad > .container > .row > div:first-child > p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 590px;
}

.about-page .about-feature-image {
  aspect-ratio: 4 / 3;
  min-height: 360px;
  object-fit: cover;
}

.about-page .mission-card {
  border-left-color: var(--industrial-blue);
  border-radius: 0;
  max-width: 620px;
}

.about-page .mission-card-text {
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 600;
  line-height: 1.5;
}

.about-page .industrial-card {
  border-radius: 0;
}

.about-page .industrial-card h3 {
  color: #050b13;
  font-size: 1.08rem;
  font-weight: 600 !important;
  line-height: 1.24;
}

.about-page .industrial-card p {
  font-size: 0.78rem;
  line-height: 1.55;
}

.about-page .industrial-card .icon-box {
  background: transparent;
  height: auto;
  justify-content: flex-start;
  width: auto;
}

.about-page .industrial-card .icon-box i {
  font-size: 1.35rem;
}

.about-page .about-section-head {
  gap: 1.25rem;
}

.about-page .project-tile {
  border-radius: 0;
}

.about-page .project-tile::after {
  background: linear-gradient(180deg, rgba(12, 35, 64, 0.08), rgba(12, 35, 64, 0.9));
}

.about-page .project-tile h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600 !important;
  line-height: 1.2;
}

.about-page .project-tile .service-tag {
  border: 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  display: block;
  letter-spacing: 0.18em;
  padding: 0 0 0.75rem;
}

.designed-page.projects-page .page-hero {
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.92), rgba(12, 35, 64, 0.66) 48%, rgba(12, 35, 64, 0.34)),
    url("../img/services-hero-industrial-capabilities.png") center/cover;
}

.designed-page.safety-page .page-hero {
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.92), rgba(12, 35, 64, 0.66) 48%, rgba(12, 35, 64, 0.36)),
    url("../img/about-hero-industrial-engineering.png") center/cover;
}

.designed-page.contact-page .page-hero {
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.94), rgba(12, 35, 64, 0.68) 48%, rgba(12, 35, 64, 0.38)),
    url("../img/home-hero-industrial-fabrication.png") center/cover;
}

.projects-page main > section:not(.page-hero) .h1,
.safety-page main > section:not(.page-hero) .h1,
.contact-page main > section:not(.page-hero) .h1 {
  color: #050b13;
  font-size: clamp(1.55rem, 2.05vw, 2rem);
  font-weight: 500 !important;
  letter-spacing: 0;
  line-height: 1.16;
}

.projects-page main > section:not(.page-hero) p,
.safety-page main > section:not(.page-hero) p,
.contact-page main > section:not(.page-hero) p {
  font-size: 0.86rem;
  line-height: 1.65;
}

.projects-page .industrial-card,
.safety-page .industrial-card,
.contact-page .industrial-card {
  border-radius: 0;
}

.projects-page .industrial-card h3,
.safety-page .industrial-card h3,
.contact-page .industrial-card h3,
.safety-page .border-start h3 {
  color: #050b13;
  font-size: 1.08rem;
  font-weight: 600 !important;
  line-height: 1.24;
}

.projects-page .industrial-card p,
.safety-page .industrial-card p,
.contact-page .industrial-card p,
.projects-page .table-industrial p {
  font-size: 0.78rem;
  line-height: 1.55;
}

.projects-page .project-tile {
  border-radius: 0;
}

.projects-page .project-tile img {
  filter: saturate(0.94) contrast(1.02);
}

.projects-page .project-tile .service-tag {
  border: 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  display: block;
  letter-spacing: 0.18em;
  padding: 0 0 0.75rem;
}

.projects-page .project-tile h2 {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 600 !important;
}

.projects-page main > section:not(.page-hero) .project-tile h2.h1 {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 600 !important;
}

.projects-page .project-tile p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  max-width: 620px;
}

.projects-page .table-industrial {
  font-size: 0.84rem;
}

.projects-page .table-industrial strong {
  color: #050b13;
  font-size: 0.88rem;
  font-weight: 600;
}

.safety-page .lead {
  font-size: 0.9rem;
  line-height: 1.65;
}

.safety-page .inner-feature-image {
  aspect-ratio: 4 / 3;
  min-height: 360px;
  object-fit: cover;
}

.safety-page .icon-box {
  flex: 0 0 auto;
}

.contact-page .contact-main .text-secondary {
  max-width: 520px;
}

.contact-page form.industrial-card {
  padding: 2rem !important;
}

.contact-page .form-label {
  color: #6f7b8b;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.contact-page .form-control,
.contact-page .form-select {
  font-size: 0.86rem;
}

.contact-page .contact-meta-value {
  color: #050b13;
  font-size: 0.9rem;
  font-weight: 500;
}

.designed-page .page-hero-content {
  padding-bottom: 74px;
  padding-top: 74px;
}

.designed-page .page-hero h1 {
  font-size: clamp(2.35rem, 3.85vw, 3.65rem);
  letter-spacing: -0.01em;
  max-width: 780px;
}

.designed-page .page-hero p {
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 590px;
}

.designed-page .section-pad {
  padding: 5.5rem 0;
}

.designed-page .section-soft {
  background: #e8eaf3;
}

.designed-page h1,
.designed-page h2,
.designed-page h3 {
  color: #050b13;
  letter-spacing: 0;
}

.designed-page .dark-band h1,
.designed-page .dark-band h2,
.designed-page .dark-band h3,
.designed-page .page-hero h1,
.designed-page .quote-band h1,
.designed-page .quote-band h2,
.designed-page .quote-band h3 {
  color: #fff;
}

.designed-page .h1,
.designed-page .display-5 {
  font-size: clamp(1.85rem, 2.7vw, 2.55rem);
  font-weight: 600 !important;
  line-height: 1.14;
}

.designed-page .lead {
  font-size: 1rem;
  line-height: 1.65;
}

.designed-page .industrial-card,
.designed-page .project-tile,
.designed-page .team-photo,
.designed-page .industry-photo {
  border-radius: 0;
}

.designed-page .industrial-card {
  box-shadow: none;
}

.designed-page .industrial-card:hover {
  box-shadow: none;
}

.designed-page .industrial-card.p-4,
.designed-page form.industrial-card {
  padding: 2rem !important;
}

.designed-page .icon-box,
.designed-page .contact-link i {
  border-radius: 0;
}

.designed-page .service-tag {
  background: transparent;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  padding: 0.32rem 0.6rem;
}

.designed-page .project-tile {
  min-height: 400px;
}

.designed-page .project-tile::after {
  background: linear-gradient(180deg, rgba(12, 35, 64, 0.04), rgba(12, 35, 64, 0.9));
}

.designed-page .project-tile .project-copy {
  padding: 2rem;
}

.designed-page .table-industrial {
  background: #fff;
  border: 1px solid var(--outline);
}

.designed-page .table-industrial thead {
  background: #f2f3fb;
}

.designed-page .table-industrial tbody tr:nth-child(even) {
  background: rgba(242, 243, 251, 0.58);
}

.designed-page .form-control,
.designed-page .form-select {
  border-radius: 0;
  font-size: 0.9rem;
}

.designed-page .form-check-input {
  border-radius: 0;
}

.designed-page .btn {
  border-radius: 0;
}

.quote-page main > .section-soft:first-child {
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.96), rgba(12, 35, 64, 0.78)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1500&q=80") center/cover;
  color: #fff;
  overflow: hidden;
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
}

.quote-page main > .section-soft:first-child::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.quote-page main > .section-soft:first-child .container {
  position: relative;
  z-index: 2;
}

.quote-page main > .section-soft:first-child h1,
.quote-page main > .section-soft:first-child h2 {
  color: #fff;
}

.quote-page main > .section-soft:first-child .text-secondary {
  color: rgba(255, 255, 255, 0.78) !important;
}

.quote-page main > .section-soft:first-child .dark-band {
  background: rgba(10, 32, 58, 0.9);
  border-color: var(--safety-orange) !important;
}

.quote-page form,
.contact-page form {
  background: #fff;
  border: 1px solid var(--outline);
  padding: 2rem;
}

.quote-page aside .industrial-card,
.contact-page .industrial-card {
  background: #fff;
}

.designed-page .project-tile h1,
.designed-page .project-tile h2,
.designed-page .project-tile h3,
.designed-page .project-tile p {
  color: #fff;
}

.table-responsive {
  position: relative;
}

.table-responsive::before {
  color: var(--muted);
  content: "";
  display: none;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .designed-page .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .designed-page .nav-link {
    padding-bottom: 0.45rem;
    padding-top: 0.45rem;
  }

  .designed-page .page-hero {
    min-height: 500px;
  }

  .designed-page .section-pad {
    padding: 4rem 0;
  }
}

@media (max-width: 575.98px) {
  .navbar-collapse {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .designed-page .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .designed-page .page-hero {
    min-height: 460px;
  }

  .designed-page .page-hero h1 {
    font-size: 2.05rem;
  }

  .designed-page .project-tile {
    min-height: 330px;
  }

  .quote-page main > .section-soft:first-child {
    min-height: 460px;
  }

  .services-page .row.g-5 {
    --bs-gutter-x: 2.25rem;
  }

  .projects-page .row.g-5,
  .about-page .row.g-5,
  .safety-page .row.g-5,
  .contact-page .row.g-5 {
    --bs-gutter-x: 2.25rem;
  }

  .about-page .about-section-head {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .about-page .about-feature-image {
    min-height: 260px;
  }

  .services-page .services-feature-image {
    min-height: 260px;
  }

  .safety-page .inner-feature-image {
    min-height: 260px;
  }

  .designed-footer {
    padding-top: 3rem !important;
  }

  .designed-footer .row {
    --bs-gutter-y: 1.8rem;
    display: grid;
    gap: 1.75rem 1.25rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin-left: 0;
    margin-right: 0;
  }

  .designed-footer .row > div {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }

  .designed-footer .row > div:first-child,
  .designed-footer .row > div:nth-child(2) {
    grid-column: 1 / -1;
  }

  .designed-footer .row.pb-5 {
    padding-bottom: 2rem !important;
  }

  .designed-footer p,
  .designed-footer a {
    font-size: 0.74rem;
  }

  .designed-footer .border-top {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
  }

  .table-responsive::before {
    content: "Swipe table to view all columns";
    display: block;
  }
}
