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

:root {
  --navy: #071827;
  --navy2: #0c263a;
  --blue: #075ea8;
  --blue2: #0b7ac1;
  --red: #e21d2a;
  --gold: #f3b51b;
  --white: #fff;
  --muted: #6b7785;
  --light: #f4f7fa;
  --line: #e4e9ef;
  --shadow: 0 18px 50px rgba(7, 24, 39, .10);
  --radius: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, Arial, sans-serif;
  color: #42505e;
  background: #fff;
  line-height: 1.7
}

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

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

button,
input,
textarea,
select {
  font: inherit
}

.container {
  width: min(var(--container), 92%);
  margin: auto
}

.topbar {
  background: var(--navy);
  color: #cdd8e2;
  font-size: 13px
}

.topbar .inner {
  min-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px
}

.top-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap
}

.top-links a {
  transition: .25s
}

.top-links a:hover {
  color: #fff
}

.top-links i {
  color: var(--gold);
  margin-right: 6px
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: whitesmoke;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line)
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px
}

.brand {
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
}

/* Logo */
.brand-mark {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}

/* Logo Image */
.brand-mark img {
  width: 85px;
  height: 110px;
  transform: scale(1.15);
  object-fit: contain;
  display: block;
  transform: scale(1.15);
}

/* Company Brand Text */
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  margin-left: 2px;
}

/* GRACE */
.brand-text strong {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 1.5px;
  white-space: nowrap;

  /* Logo-matching gradient */
  background: linear-gradient(135deg,
      #0b3d91 0%,
      #1479d1 45%,
      #00a8e8 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow: 0 2px 8px rgba(11, 61, 145, 0.15);
}

/* ENGINEERINGS */
.brand-text span {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  white-space: nowrap;

  color: #0b3d91;

  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none
}

.nav-links a {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  position: relative;
  padding: 28px 0
}

.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 19px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: .25s
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 11px 18px !important;
  border-radius: 6px
}

.nav-cta:after {
  display: none
}

/* ==========================================================
   INFRASTRUCTURE DROPDOWN
========================================================== */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle span {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;

  min-width: 210px;
  padding: 10px 0;
  margin: 0;

  list-style: none;

  background: #ffffff;
  border-radius: 10px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;

  z-index: 9999;
}

/* Dropdown Links */
.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 18px;

  color: #222;
  text-decoration: none;

  font-size: 14px;
  white-space: nowrap;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    padding-left 0.25s ease;
}

.dropdown-menu li a:hover {
  background: #f3f6f9;
  color: #0077b6;
  padding-left: 23px;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate Arrow */
.dropdown:hover .dropdown-toggle span {
  transform: rotate(180deg);
}

@media (max-width: 768px) {

  .dropdown-menu {
    position: static;

    width: 100%;
    min-width: unset;

    padding: 5px 0;
    margin-top: 5px;

    background: rgba(255, 255, 255, 0.05);

    box-shadow: none;
    border-radius: 0;

    opacity: 1;
    visibility: visible;
    transform: none;

    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 10px 25px;
  }

  .dropdown-menu li a:hover {
    padding-left: 30px;
  }
}

.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 25px;
  color: var(--navy);
  cursor: pointer
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 20, 33, .97), rgba(5, 45, 75, .82), rgba(5, 45, 75, .25)),
    url('../assets/images/hero-industrial.jpg') center/cover no-repeat
}

.hero:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 85px solid rgba(226, 29, 42, .16);
  border-radius: 50%;
  right: -180px;
  top: -160px
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 90px 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(226, 29, 42, .92);
  padding: 7px 13px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase
}

.hero h1 {
  font-family: Montserrat;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  margin: 20px 0
}

.hero h1 span {
  color: #ff4a55
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  color: #dce7ef
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 21px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: .25s
}

.btn-red {
  background: var(--red);
  color: #fff
}

.btn-red:hover {
  background: #bd131d;
  transform: translateY(-2px)
}

.btn-blue {
  background: var(--blue);
  color: #fff
}

.btn-blue:hover {
  background: #044a86
}

.btn-light {
  border-color: rgba(255, 255, 255, .55);
  color: #fff
}

.btn-light:hover {
  background: #fff;
  color: var(--navy)
}

.stats {
  margin-top: -45px;
  position: relative;
  z-index: 5
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden
}

.stat {
  text-align: center;
  padding: 25px;
  border-right: 1px solid var(--line)
}

.stat:last-child {
  border: 0
}

.stat b {
  display: block;
  color: var(--blue);
  font: 900 30px Montserrat
}

.stat span {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted)
}

.section {
  padding: 95px 0
}

.section.alt {
  background: var(--light)
}

.section-head {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center
}

.label {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px
}

.title {
  font: 800 clamp(30px, 4vw, 44px)/1.15 Montserrat;
  color: var(--navy);
  margin: 8px 0 14px
}

.section-head p {
  color: var(--muted)
}

/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
  position: relative;
  padding: 120px 0 105px;
  background:
    linear-gradient(110deg,
      rgba(3, 20, 34, 0.97),
      rgba(5, 68, 112, 0.90)),
    url("../assets/images/industrial-background.jpg") center center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      transparent 40%,
      rgba(255, 255, 255, 0.035) 40%,
      transparent 70%);
  pointer-events: none;
}

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


/* Breadcrumb */

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 13px;
  line-height: 1.5;
  color: #aec4d5;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumbs a:hover {
  color: #61c4ff;
}

.breadcrumbs span:last-child {
  color: #9db5c7;
}


/* Hero badge */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: #dff2ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  color: #63c7ff;
}


/* Hero heading */

.page-hero h1 {
  max-width: 900px;
  margin: 8px 0 18px;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #ffffff;
}


/* Hero description */

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #d7e6f0;
  font-size: 17px;
  line-height: 1.8;
}


/* =========================================================
   DOCUMENT BUTTON
========================================================= */

.document-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 170px;
}

.document-btn i {
  font-size: 14px;
}


/* =========================================================
   DOCUMENT SECURITY NOTICE
========================================================= */

.document-security {
  padding: 80px 0;
  background: #f4f7fa;
}

.security-box {
  display: flex;
  align-items: flex-start;
  gap: 28px;

  max-width: 1100px;
  margin: 0 auto;

  padding: 38px 42px;

  border: 1px solid #d8e1e8;
  border-left: 5px solid #c62828;
  border-radius: 14px;

  background: #ffffff;

  box-shadow: 0 15px 40px rgba(8, 35, 55, 0.08);
}


/* Security icon */

.security-icon {
  flex: 0 0 62px;

  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: #fff0f0;
  color: #c62828;

  font-size: 25px;
}


/* Security content */

.security-content {
  flex: 1;
}

.security-label {
  margin-bottom: 8px;

  color: #b21f1f;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.security-content h2 {
  margin: 0 0 16px;

  color: #102536;

  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.25;
  font-weight: 800;
}

.security-content p {
  margin: 0 0 14px;

  color: #526575;

  font-size: 15px;
  line-height: 1.75;
}

.security-content p:last-child {
  margin-bottom: 0;
}


/* Strong warning */

.security-warning {
  margin-top: 20px !important;
  padding: 16px 18px;

  border: 1px solid #f0c7c7;
  border-radius: 9px;

  background: #fff5f5;

  color: #9f1d1d !important;
}

.security-warning strong {
  color: #9f1d1d;
}


/* Footer security message */

.security-footer-text {
  font-size: 13px !important;
  color: #6a7c89 !important;
}


/* =========================================================
   RESPONSIVE SECURITY NOTICE
========================================================= */

@media (max-width: 768px) {

  .page-hero {
    padding: 90px 0 80px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 9vw, 48px);
    letter-spacing: -0.8px;
  }

  .page-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .security-box {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }

  .security-icon {
    width: 55px;
    height: 55px;
  }

}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center
}

/* =========================================================
   CLIENTS SECTION
========================================================= */

.clients-section {
  padding: 90px 20px;
  background: #f7f9fc;
  overflow: hidden;
}

.clients-section .container {
  max-width: 1200px;
  margin: auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading span {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0b5ed7;
  margin-bottom: 10px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: 38px;
  font-weight: 800;
  color: #0b1f3a;
}

.section-heading p {
  max-width: 650px;
  margin: auto;
  color: #667085;
  line-height: 1.7;
}


/* =========================================================
   CAROUSEL
========================================================= */

.clients-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.clients-track-wrapper {
  width: 100%;
  overflow: hidden;
}

.clients-track {
  display: flex;
  transition: transform 0.5s ease;
}


/* =========================================================
   CLIENT CARD
========================================================= */

.client-card {
  flex: 0 0 25%;
  padding: 12px;
  box-sizing: border-box;
}

.client-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 25px;
  box-sizing: border-box;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.client-card h3 {
  text-align: center;
  margin: 15px 0 0;
  font-size: 17px;
  font-weight: 700;
  color: #172b4d;
}


/* =========================================================
   HOVER
========================================================= */

.client-card:hover img {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   BUTTONS
========================================================= */

.carousel-btn {
  width: 45px;
  height: 45px;
  min-width: 45px;

  border: none;
  border-radius: 50%;

  background: #0b1f3a;
  color: #ffffff;

  font-size: 22px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;

  z-index: 5;
}

.carousel-btn:hover {
  background: #0b5ed7;
  transform: scale(1.08);
}


/* =========================================================
   DOTS
========================================================= */

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: 0.3s ease;
}

.carousel-dot.active {
  width: 25px;
  border-radius: 10px;
  background: #0b5ed7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

  .client-card {
    flex: 0 0 33.333%;
  }

  .section-heading h2 {
    font-size: 32px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .clients-section {
    padding: 65px 15px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .client-card {
    flex: 0 0 100%;
  }

  .client-card img {
    height: 160px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 18px;
  }

}

.visual {
  position: relative
}

.visual img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #dfe7ee
}

.badge {
  position: absolute;
  right: -18px;
  bottom: 25px;
  background: var(--red);
  color: #fff;
  padding: 22px;
  border-radius: 10px;
  box-shadow: var(--shadow)
}

.badge b {
  display: block;
  font: 900 32px Montserrat
}

.badge span {
  font-size: 12px;
  font-weight: 800
}

.kicker {
  color: var(--red);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.7px
}

.copy h2 {
  font: 800 34px/1.2 Montserrat;
  color: var(--navy);
  margin: 8px 0 18px
}

.copy p {
  margin-bottom: 15px
}

.checks {
  display: grid;
  gap: 11px;
  margin-top: 22px;
  list-style: none
}

.checks li {
  display: flex;
  gap: 10px;
  font-weight: 700;
  color: #263746
}

.checks i {
  color: var(--red);
  margin-top: 5px
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 27px;
  transition: .3s;
  position: relative;
  overflow: hidden
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow)
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #eaf4fc;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 17px
}

.card h3 {
  font: 800 17px Montserrat;
  color: var(--navy);
  margin-bottom: 8px
}

.card p {
  font-size: 13px;
  color: var(--muted)
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.project {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 22px rgba(0, 0, 0, .04)
}

.project-img {
  height: 245px;
  background: linear-gradient(135deg, #0b4f82, #152b3c);
  overflow: hidden
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.project:hover img {
  transform: scale(1.06)
}

.project-body {
  padding: 20px
}

.project-body small {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px
}

.project-body h3 {
  font: 800 18px Montserrat;
  color: var(--navy);
  margin-top: 4px
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px
}

.list-item {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  font-weight: 700;
  color: #263746
}

.list-item i {
  color: var(--red);
  margin-right: 8px
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px
}

.machine {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  gap: 13px;
  align-items: flex-start
}

.machine .num {
  width: 35px;
  height: 35px;
  flex: none;
  border-radius: 7px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px
}

.machine b {
  display: block;
  color: var(--navy);
  font-size: 14px
}

.machine span {
  font-size: 12px;
  color: var(--muted)
}

/* =========================================================
   MACHINERY GRID
========================================================= */

.machine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 35px;
}


/* =========================================================
   MACHINERY CARD
========================================================= */

.machine {
  position: relative;

  display: flex;
  align-items: center;

  gap: 16px;
  padding: 22px;

  background: #ffffff;

  border: 1px solid #e5e9f0;
  border-radius: 16px;

  min-height: 105px;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.machine:hover {
  transform: translateY(-6px);

  border-color: #d4a017;

  box-shadow:
    0 15px 35px rgba(10, 20, 45, 0.12);
}


/* =========================================================
   MACHINERY ICON
========================================================= */

.machine-icon {
  width: 58px;
  height: 58px;

  min-width: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f5f7fa;

  border: 1px solid #e8ebf0;

  border-radius: 14px;

  color: #d4a017;

  font-size: 24px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/* =========================================================
   ICON HOVER
========================================================= */

.machine:hover .machine-icon {
  background: #d4a017;

  color: #ffffff;

  transform: scale(1.08) rotate(-4deg);

  box-shadow:
    0 8px 18px rgba(212, 160, 23, 0.25);
}


/* =========================================================
   NUMBER
========================================================= */

.machine .num {
  position: absolute;

  top: 12px;
  right: 16px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1px;

  color: #a2a9b5;

  opacity: 0.8;
}


/* =========================================================
   MACHINE CONTENT
========================================================= */

.machine>div:last-child {
  flex: 1;

  min-width: 0;
}


/* =========================================================
   MACHINE NAME
========================================================= */

.machine b {
  display: block;

  padding-right: 25px;

  margin-bottom: 6px;

  color: #18233a;

  font-size: 16px;

  font-weight: 700;

  line-height: 1.35;
}


/* =========================================================
   MACHINE QUANTITY
========================================================= */

.machine span {
  display: block;

  color: #70798a;

  font-size: 14px;

  font-weight: 500;

  line-height: 1.4;
}


/* =========================================================
   ICON DIFFERENT COLORS
   Optional
========================================================= */

.machine:nth-child(1) .machine-icon,
.machine:nth-child(3) .machine-icon,
.machine:nth-child(4) .machine-icon,
.machine:nth-child(15) .machine-icon {
  color: #c88600;
}

.machine:nth-child(2) .machine-icon {
  color: #e09b00;
}

.machine:nth-child(8) .machine-icon {
  color: #4878a8;
}

.machine:nth-child(12) .machine-icon,
.machine:nth-child(13) .machine-icon {
  color: #53677d;
}

.machine:nth-child(17) .machine-icon,
.machine:nth-child(18) .machine-icon {
  color: #34495e;
}


/* =========================================================
   KEEP WHITE ICON ON HOVER
========================================================= */

.machine:hover .machine-icon {
  color: #ffffff;
}


/* =========================================================
   SUBTLE CARD TOP LINE
========================================================= */

.machine::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 3px;

  background: #d4a017;

  transition: width 0.35s ease;
}

.machine:hover::before {
  width: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

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

    gap: 18px;
  }

  .machine {
    padding: 20px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .machine-grid {
    grid-template-columns: 1fr;

    gap: 15px;

    margin-top: 25px;
  }

  .machine {
    min-height: 90px;

    padding: 18px;

    gap: 14px;

    border-radius: 14px;
  }

  .machine-icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    font-size: 21px;

    border-radius: 12px;
  }

  .machine b {
    font-size: 14px;

    padding-right: 22px;
  }

  .machine span {
    font-size: 13px;
  }

  .machine .num {
    top: 10px;
    right: 13px;

    font-size: 10px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .machine {
    padding: 16px;

    gap: 12px;
  }

  .machine-icon {
    width: 46px;
    height: 46px;

    min-width: 46px;

    font-size: 19px;
  }

  .machine b {
    font-size: 13px;
  }

  .machine span {
    font-size: 12px;
  }

}

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

.gallery figure {
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  background: #dbe5ec;
  position: relative
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.gallery figure:hover img {
  transform: scale(1.08)
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 35px 15px 14px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .8))
}

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

.client {
  min-height: 95px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 9px;
  padding: 16px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  transition: .25s
}

.client:hover {
  border-color: var(--blue);
  transform: translateY(-3px)
}

/* =========================================================
   CONTACT GRID
========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}


/* =========================================================
   CONTACT BOX
========================================================= */

.contact-box {
  background: var(--navy);
  color: #fff;

  border-radius: 16px;

  padding: 38px;
}


/* =========================================================
   CONTACT HEADING
========================================================= */

.contact-box h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 800;

  line-height: 1.25;

  margin: 0 0 28px;
}


/* =========================================================
   CONTACT ITEM
========================================================= */

.contact-item {
  display: flex;
  align-items: flex-start;

  gap: 15px;

  margin-bottom: 23px;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.contact-item>i {
  flex: 0 0 22px;

  width: 22px;

  margin-top: 4px;

  color: var(--gold);

  font-size: 18px;

  text-align: center;
}


/* =========================================================
   CONTACT CONTENT
========================================================= */

.contact-content {
  flex: 1;
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 5px;
}


/* =========================================================
   CONTACT TITLE
========================================================= */

.contact-content strong {
  display: block;

  color: #ffffff;

  font-size: 15px;
  font-weight: 700;

  line-height: 1.4;

  margin-bottom: 2px;
}


/* =========================================================
   CONTACT TEXT
========================================================= */

.contact-content p {
  margin: 0;

  color: #b8c8d5;

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================================
   CONTACT LINKS
========================================================= */

.contact-content a {
  display: block;

  color: #b8c8d5;

  font-size: 13px;

  line-height: 1.6;

  text-decoration: none;

  word-break: break-word;

  transition: color 0.3s ease;
}


.contact-content a:hover {
  color: var(--gold);
}


/* =========================================================
   SALES CONTACT
========================================================= */

.contact-content a[href^="tel:"] {
  white-space: nowrap;
}


/* =========================================================
   FORM
========================================================= */

.form {
  padding: 5px;
}


/* =========================================================
   FORM GRID
========================================================= */

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 17px;
}


/* =========================================================
   FULL WIDTH FIELD
========================================================= */

.field.full {
  grid-column: 1 / -1;
}


/* =========================================================
   FIELD
========================================================= */

.field {
  display: flex;

  flex-direction: column;

  gap: 7px;
}


/* =========================================================
   LABEL
========================================================= */

.field label {
  font-size: 14px;

  font-weight: 700;

  color: var(--navy);
}


/* =========================================================
   INPUT / SELECT / TEXTAREA
========================================================= */

.field input,
.field select,
.field textarea {
  width: 100%;

  box-sizing: border-box;

  border: 1px solid #dfe4eb;

  border-radius: 9px;

  background: #ffffff;

  color: #18233a;

  font-family: inherit;

  font-size: 14px;

  outline: none;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.field input,
.field select {
  height: 50px;

  padding: 0 15px;
}


.field textarea {
  min-height: 150px;

  padding: 14px 15px;

  resize: vertical;
}


/* =========================================================
   INPUT FOCUS
========================================================= */

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);

  box-shadow:
    0 0 0 3px rgba(212, 160, 23, 0.12);
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa3b2;
}


/* =========================================================
   SELECT
========================================================= */

.field select {
  cursor: pointer;
}


/* =========================================================
   BUTTON
========================================================= */

.field button {
  width: 100%;

  min-height: 52px;

  border: 0;

  border-radius: 9px;

  cursor: pointer;

  font-family: inherit;

  font-size: 14px;

  font-weight: 700;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.field button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .contact-box {
    padding: 32px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  .contact-box {
    padding: 25px 20px;

    border-radius: 14px;
  }


  .contact-box h3 {
    font-size: 23px;

    margin-bottom: 24px;
  }


  .contact-item {
    gap: 12px;

    margin-bottom: 20px;
  }


  .contact-item>i {
    flex-basis: 20px;

    width: 20px;

    font-size: 16px;
  }


  .contact-content strong {
    font-size: 14px;
  }


  .contact-content p,
  .contact-content a {
    font-size: 12.5px;
  }


  /* Allow long emails to wrap */
  .contact-content a {
    overflow-wrap: anywhere;
  }


  .contact-content a[href^="tel:"] {
    white-space: normal;
  }


  .form {
    padding: 0;
  }


  .form-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  .field.full {
    grid-column: auto;
  }


  .field input,
  .field select {
    height: 48px;
  }


  .field textarea {
    min-height: 130px;
  }

}

.field.full {
  grid-column: 1/-1
}

.field label {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px;
  border-radius: 7px;
  outline: none
}

.field textarea {
  min-height: 150px;
  resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 94, 168, .08)
}

.cta {
  padding: 65px 0;
  background: var(--navy);
  color: #fff
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px
}

.cta h2 {
  font: 800 34px/1.2 Montserrat
}

.cta p {
  color: #aebdca;
  margin-top: 8px
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #04101b;
  color: #9db0bf;
  padding-top: 60px;
}


/* =========================================================
   FOOTER GRID
========================================================= */

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 35px;
  padding-bottom: 45px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-brand-logo {
  width: 80px;
  height: 100px;
  object-fit: contain;
  display: block;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.footer-brand-text strong {
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-brand-text span {
  margin-top: 4px;
  color: #cccccc;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
}


/* =========================================================
   COMPANY DESCRIPTION
========================================================= */

.footer-company p {
  max-width: 380px;
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer h4 {
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 15px;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #9db0bf;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  text-align: center;
  font-size: 12px;
  color: #718594;
}

.map-container {
  width: 100%;
  height: 450px;
  margin-top: 25px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .map-container {
    height: 350px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 300px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

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

  .footer-company {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .footer {
    padding-top: 45px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-company {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-company {
    grid-column: auto;
  }

  .footer-brand-logo {
    width: 60px;
    height: 75px;
  }

  .footer-brand-text strong {
    font-size: 19px;
  }

  .footer-brand-text span {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}

.float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1001;
  display: grid;
  gap: 9px
}

.float a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2)
}

.wa {
  background: #25d366
}

.call {
  background: var(--red)
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: .65s
}

.reveal.show {
  opacity: 1;
  transform: none
}

@media(max-width:1050px) {
  .nav-links {
    gap: 13px
  }

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

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

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

@media(max-width:820px) {
  .topbar {
    display: none
  }

  .nav {
    height: 70px
  }

  .menu {
    display: block
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 4% 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08)
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    display: block;
    padding: 12px 0
  }

  .nav-links a:after {
    bottom: 4px
  }

  .nav-cta {
    margin-top: 5px;
    text-align: center
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

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

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

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

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

  .stat:nth-child(2) {
    border-right: 0
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column
  }
}

@media(max-width:560px) {
  .section {
    padding: 70px 0
  }

  .hero {
    min-height: 600px
  }

  .hero-content {
    padding: 70px 0
  }

  .hero h1 {
    font-size: 42px
  }

  .hero p {
    font-size: 15px
  }

  .stats {
    margin-top: -25px
  }

  .stats-grid,
  .cards,
  .project-grid,
  .list-grid,
  .machine-grid,
  .gallery,
  .client-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .stat:last-child {
    border-bottom: 0
  }

  .visual img {
    height: 360px
  }

  .badge {
    right: 12px
  }

  .page-hero {
    padding: 80px 0
  }

  .cta h2 {
    font-size: 28px
  }
}

/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonials-section {
  padding: 90px 20px;
  background: #f5f7fa;
  overflow: hidden;
}

.testimonial-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}


/* =========================================================
   HEADING
========================================================= */

.testimonial-heading {
  text-align: center;
  margin-bottom: 45px;
}

.testimonial-heading span {
  color: #0b5ed7;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

.testimonial-heading h2 {
  margin: 10px 0;
  color: #0b1f3a;
  font-size: 40px;
  font-weight: 800;
}

.testimonial-heading p {
  max-width: 650px;
  margin: auto;
  color: #687386;
  line-height: 1.7;
}


/* =========================================================
   CAROUSEL
========================================================= */

.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-window {
  width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}


/* =========================================================
   CARD
========================================================= */

.testimonial-card {
  flex: 0 0 calc(33.333333% - 20px);
  margin: 10px;

  box-sizing: border-box;

  position: relative;

  min-height: 310px;

  padding: 30px;

  background: #ffffff;

  border-radius: 18px;

  border: 1px solid #e5e7eb;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   CLIENT
========================================================= */

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-logo {
  width: 60px;
  height: 60px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #f1f5f9;

  border: 1px solid #e2e8f0;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  padding: 8px;

  box-sizing: border-box;
}

.testimonial-client h3 {
  margin: 0 0 4px;

  font-size: 17px;

  color: #0b1f3a;
}

.testimonial-client p {
  margin: 0;

  font-size: 13px;

  color: #7b8794;
}


/* =========================================================
   STARS
========================================================= */

.stars {
  margin: 22px 0 15px;

  color: #f59e0b;

  font-size: 18px;

  letter-spacing: 2px;
}


/* =========================================================
   CONTENT
========================================================= */

.testimonial-content {
  position: relative;
  z-index: 2;

  margin: 0;

  color: #596579;

  font-size: 15px;

  line-height: 1.8;
}


/* =========================================================
   QUOTE
========================================================= */

.quote {
  position: absolute;

  right: 20px;
  bottom: 5px;

  font-family: Georgia, serif;

  font-size: 90px;

  line-height: 1;

  color: #eef2f6;

  z-index: 1;
}


/* =========================================================
   ARROWS
========================================================= */

.testimonial-arrow {
  width: 45px;
  height: 45px;

  min-width: 45px;

  border: none;

  border-radius: 50%;

  background: #0b1f3a;

  color: white;

  font-size: 20px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;

  z-index: 5;
}

.testimonial-arrow:hover {
  background: #0b5ed7;

  transform: scale(1.08);
}


/* =========================================================
   DOTS
========================================================= */

.testimonial-dots {
  display: flex;

  justify-content: center;

  gap: 8px;

  margin-top: 30px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;

  padding: 0;

  border: none;

  border-radius: 20px;

  background: #cbd5e1;

  cursor: pointer;

  transition: 0.3s;
}

.testimonial-dot.active {
  width: 25px;

  background: #0b5ed7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

  .testimonial-card {
    flex: 0 0 calc(50% - 20px);
  }

  .testimonial-heading h2 {
    font-size: 34px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .testimonials-section {
    padding: 65px 15px;
  }

  .testimonial-heading h2 {
    font-size: 28px;
  }

  .testimonial-heading p {
    font-size: 14px;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 20px);
  }

  .testimonial-arrow {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 17px;
  }

}