@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@500;600;700;800&display=swap');

:root {
  --navy: #292b67;
  --navy-2: #373b7c;
  --cyan: #12b5df;
  --cyan-dark: #0799c2;
  --ink: #20233a;
  --muted: #6d7184;
  --line: #e4e6ec;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --dark: #1e214d;
  --radius: 20px;
  --shadow: 0 20px 50px rgba(30, 33, 77, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228,230,236,.8);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  letter-spacing: .04em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px 12px 12px 4px;
  background: linear-gradient(145deg, var(--cyan), var(--navy));
  color: white;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 22px;
}
.brand strong {
  display: block;
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--cyan-dark);
  font-size: 9px;
  letter-spacing: .32em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:not(.nav-cta) {
  color: #55596c;
  transition: color .2s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--cyan-dark); }
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: var(--navy);
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, rgba(18,181,223,.15), transparent 26%),
    linear-gradient(135deg, #fff 0%, #f7f9fc 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .20em;
  text-transform: uppercase;
}
.hero h1, h2, h3, h4 {
  font-family: Montserrat, Inter, sans-serif;
}
.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
}
.hero h1 span { color: var(--cyan-dark); }
.hero-text {
  max-width: 620px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 17px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(41,43,103,.22);
}
.button-outline {
  color: var(--navy);
  border: 1px solid #cfd2df;
  background: white;
}

.hero-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}
.visual-card {
  position: absolute;
  overflow: hidden;
  background: #252525;
  box-shadow: var(--shadow);
}
.visual-card-large {
  width: min(520px, 90%);
  height: 370px;
  right: 0;
  top: 75px;
  border-radius: 38px 8px 38px 8px;
  background:
    linear-gradient(135deg, rgba(41,43,103,.2), rgba(18,181,223,.05)),
    repeating-linear-gradient(145deg, #323232 0 10px, #2a2a2a 10px 20px);
  clip-path: polygon(16% 0, 100% 0, 100% 82%, 80% 100%, 0 100%, 0 18%);
}
.visual-card-large::before,
.visual-card-large::after {
  content: "";
  position: absolute;
  background: #c88a32;
  opacity: .8;
  transform: rotate(-12deg);
}
.visual-card-large::before {
  width: 230px; height: 80px;
  left: 90px; bottom: 115px;
  border-radius: 35px;
}
.visual-card-large::after {
  width: 160px; height: 55px;
  right: 50px; bottom: 75px;
  border-radius: 20px;
}
.visual-card-large span {
  position: absolute;
  left: 34px;
  bottom: 28px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}
.visual-card-small {
  width: 170px;
  height: 170px;
  left: 0;
  bottom: 40px;
  border-radius: 28px 6px 28px 6px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--cyan);
  color: white;
}
.visual-card-small span {
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 800;
}
.visual-card-small strong {
  font: 800 52px/1 Montserrat, sans-serif;
}
.visual-accent {
  position: absolute;
  width: 130px;
  height: 130px;
  right: -30px;
  bottom: -10px;
  border-radius: 50%;
  border: 30px solid var(--navy);
  opacity: .15;
}

.section { padding: 110px 0; }
.section-light { background: var(--soft); }
.section-dark {
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(18,181,223,.14), transparent 28%),
    var(--dark);
}
.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}
h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.split p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 20px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 55px;
}
.section-heading h2 { margin-bottom: 18px; }
.section-heading > p:last-child { color: var(--muted); }

.section-heading.light h2,
.section-heading.light .eyebrow { color: white; }
.section-heading.light .eyebrow { color: var(--cyan); }
.section-heading.light > p:last-child { color: rgba(255,255,255,.7); }

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.commitment-card {
  min-height: 300px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
}
.commitment-card .number {
  display: inline-block;
  color: var(--cyan);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .15em;
}
.commitment-card h3 {
  margin: 60px 0 15px;
  font-size: 25px;
}
.commitment-card p { color: rgba(255,255,255,.72); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  padding: 28px;
  min-height: 275px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 25px rgba(30,33,77,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card.featured {
  background: var(--navy);
  color: white;
  grid-column: span 2;
}
.service-card.featured h3 { color: white; }
.service-card.featured p { color: rgba(255,255,255,.75); }
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 12px;
  background: rgba(18,181,223,.12);
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 800;
}
.featured .service-icon {
  background: var(--cyan);
  color: white;
}
.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.client-chip {
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: #44485d;
  font-weight: 600;
}
.client-chip::before {
  content: "✓";
  margin-right: 12px;
  color: var(--cyan-dark);
  font-weight: 900;
}

.cta {
  background: linear-gradient(120deg, #f5f7fa, #e9f9fd);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 55px;
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
}
.cta-inner h2 { max-width: 700px; }
.cta-inner p:not(.eyebrow) { max-width: 700px; color: var(--muted); }

.site-footer {
  padding: 65px 0 25px;
  color: rgba(255,255,255,.72);
  background: #171a3c;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr 1fr;
  gap: 70px;
  padding-bottom: 55px;
}
.footer-brand strong { color: white; }
.footer-grid h4 { color: white; margin: 0 0 15px; }
.footer-grid p { font-size: 14px; }
.footer-grid > div:nth-child(2) a {
  display: block;
  margin: 7px 0;
  font-size: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
}

@media (max-width: 950px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 80px 0; }
  .hero-visual { min-height: 470px; }
  .commitment-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav { min-height: 70px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .nav-cta { text-align: center; margin-top: 5px; }
  .hero h1 { font-size: 50px; }
  .hero-visual { min-height: 390px; }
  .visual-card-large { height: 290px; }
  .visual-card-small { width: 130px; height: 130px; bottom: 15px; }
  .visual-card-small strong { font-size: 40px; }
  .section { padding: 80px 0; }
  .service-grid, .client-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .cta-inner { padding: 35px 25px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mining-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;

  /* Gives it the same geometric feel as the rest of the design */
  border-radius: 40px 8px 40px 8px;

  /* Slightly angled/architectural crop */
  clip-path: polygon(
    12% 0,
    100% 0,
    100% 82%,
    82% 100%,
    0 100%,
    0 18%
  );

  box-shadow: 0 25px 60px rgba(30, 33, 77, 0.20);
}

.hero-image-label {
  position: absolute;
  left: -20px;
  bottom: 15px;

  width: 175px;
  height: 175px;

  padding: 22px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: #12b5df;
  color: white;

  border-radius: 28px 6px 28px 6px;

  box-shadow: 0 15px 35px rgba(7, 153, 194, 0.3);
}

.hero-image-label span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.hero-image-label strong {
  font-family: Montserrat, sans-serif;
  font-size: 52px;
  line-height: 1;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* Large warehouse image */
.warehouse-feature {
    grid-column: span 2;
    grid-row: span 2;

    min-height: 620px;

    overflow: hidden;

    border-radius: 35px 8px 35px 8px;

    box-shadow: 0 25px 60px rgba(30,33,77,.15);
}


.warehouse-feature img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .6s ease;
}


.warehouse-feature:hover img {
    transform: scale(1.05);
}

.inquiry {
    background:#f5f7fa;
}


.inquiry-form {

    background:white;
    padding:45px;

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(30,33,77,.10);
}


.form-grid {

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:25px;

}


.form-group {

    display:flex;

    flex-direction:column;

    gap:8px;

}


.form-group label {

    font-size:13px;

    font-weight:700;

    color:#292b67;

}


.form-group input,
.form-group textarea {


    padding:15px;

    border-radius:12px;

    border:1px solid #ddd;

    font-family:inherit;

    font-size:14px;

}


.form-group textarea {

    resize:vertical;

    margin-bottom:25px;

}



@media(max-width:700px){

    .form-grid{

        grid-template-columns:1fr;

    }


    .inquiry-form{

        padding:25px;

    }

}

.form-group select,
.form-group input[type="file"] {

padding:15px;

border-radius:12px;

border:1px solid #ddd;

font-family:inherit;

background:white;

}


.form-group small {

color:#777;

font-size:12px;

margin-top:5px;

}

.company-logo {

    height: 65px;
    width: auto;

    display: block;

    object-fit: contain;

}

.nav {

    min-height: 90px;

}