
:root {
  --navy: #1f3a5f;
  --navy-deep: #14263d;
  --accent: #c96f2d;
  --accent-dark: #a5551d;
  --gold: #c8a96b;
  --dark: #111827;
  --muted: #64748b;
  --light: #f5f7fa;
  --white: #ffffff;
  --border: #e5e7eb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }
.container { width: min(1180px, 92%); margin: auto; }

.topbar {
  background: linear-gradient(90deg, #14263d 0%, #24486f 100%);
  color: var(--white);
  font-size: 14px;
  padding: 10px 0;
}
.topbar .container { display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; }
.topbar span { margin-right:22px; }

header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.navbar {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo-mark {
  width: 74px;
  height: 74px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
}
.logo-main {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.6px;
  white-space: nowrap;
}
.logo-sub {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 5px;
  color: #777;
  text-transform: uppercase;
  white-space: nowrap;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 800;
  font-size: 16px;
}
nav li { position: relative; }
nav a { display: inline-block; padding: 31px 0; }
nav a:hover { color: var(--accent); }

.dropdown {
  position: absolute;
  top: 78px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 285px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  border-top: 4px solid var(--accent);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.22s ease;
  padding: 10px 0;
  z-index: 200;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--accent);
}
.dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid #f1f5f9;
}
.dropdown a:hover {
  background: #f5f7fa;
  color: var(--accent);
  padding-left: 26px;
}
nav li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #1f3a5f 0%, #2d567f 100%);
  color: var(--white);
  padding: 15px 28px;
  border-radius: 3px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
  text-transform: capitalize;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(45,143,133,0.25);
}
.btn.light { background: var(--white); color: var(--navy-deep); }

.hero {
  min-height: 620px;
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,38,61,0.95) 0%, rgba(31,58,95,0.86) 42%, rgba(31,58,95,0.28) 100%);
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 7s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide.slide-one {
  background-image: url('hero-1.jpg');
}
.hero-slide.slide-two {
  background-image: url('hero-2.jpg');
}
.hero-slide.slide-three {
  background-image: url('hero-3.jpg');
}
.hero-content { max-width: 860px; position: relative; z-index: 2; }
.hero-copy {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}
.hero-copy.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-copy-two, .hero-copy-three {
  position: absolute;
  top: 0;
  left: 0;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.slider-dots button {
  width: 42px;
  height: 4px;
  padding: 0;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  transition: background 0.3s ease;
}
.slider-dots button.active { background: var(--accent); }

.eyebrow {
  display: inline-block;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 26px;
  font-size: 15px;
}
.hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  max-width: 900px;
  font-weight: 900;
}
.hero p { font-size: 21px; margin-bottom: 22px; color: #f1f5f9; max-width: 720px; font-weight: 700; }
.hero-actions { display:flex; gap:18px; flex-wrap:wrap; }

.stats { margin-top: -60px; position: relative; z-index: 5; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; background:var(--white); }
.stat {
  background: var(--white);
  min-height: 150px;
  padding: 30px 22px 24px;
  text-align: center;
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
  transition: 0.25s ease;
}
.stat:hover { transform: translateY(-4px); background: linear-gradient(135deg, #14263d 0%, #1f3a5f 100%); color: var(--white); }
.stat:hover p, .stat:hover h2 { color: var(--white); }
.stat h2 { color: var(--dark); font-size: 30px; line-height: 1.05; margin-bottom: 6px; transition: 0.25s ease; }
.stat p { color: var(--dark); font-size: 18px; font-weight: 500; transition: 0.25s ease; }

section { padding: 90px 0; }
.section-title { text-align:center; max-width:760px; margin:0 auto 48px; }
.section-title .eyebrow { color:var(--accent); margin-bottom:8px; }
.section-title h2 { font-size:38px; color:var(--navy-deep); margin-bottom:12px; }

.about-grid { display:grid; grid-template-columns:1.05fr 0.95fr; gap:52px; align-items:center; }
.about-text .eyebrow { color: var(--dark); font-style: italic; }
.about-text h2 { font-size:38px; color:var(--navy-deep); margin-bottom:18px; line-height:1.2; }
.about-text p { margin-bottom:16px; color:#111827; }
.about-image { border-radius:50% 50% 0 0; overflow:hidden; box-shadow:0 18px 40px rgba(3,24,43,0.16); }

.products, .faq { background:var(--light); }
.product-grid, .why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.product-card { background:var(--white); overflow:hidden; box-shadow:0 10px 28px rgba(3,24,43,0.08); transition:0.22s ease; }
.product-card:hover { transform:translateY(-7px); box-shadow:0 18px 42px rgba(3,24,43,0.16); }
.product-card img { height:220px; object-fit:cover; }
.product-content, .why-card { padding:24px; }
.product-content h3, .why-card h3 { color:var(--navy); margin-bottom:10px; font-size:21px; }
.product-content p, .why-card p { color:#111827; margin-bottom:18px; }

.why-card { border:1px solid var(--border); background:var(--white); transition:0.22s ease; }
.why-card:hover { transform:translateY(-6px); border-color:var(--accent); }
.icon {
  width:58px;
  height:58px;
  border-radius:8px;
  background:var(--navy-deep);
  color:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}
.icon svg {
  width:28px;
  height:28px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.page-hero {
  min-height: 360px;
  background: linear-gradient(rgba(20,38,61,0.72), rgba(20,38,61,0.72)), url('hero-3.jpg') center/cover;
  display:flex;
  align-items:center;
  text-align:center;
  color:white;
}
.page-hero h1 { font-size: clamp(42px, 5vw, 62px); margin-bottom:12px; }
.breadcrumb { display:inline-flex; background:var(--navy-deep); padding:10px 18px; font-weight:800; gap:10px; justify-content:center; }

.product-page-grid { display:grid; grid-template-columns:0.95fr 1.05fr; gap:46px; align-items:start; }
.product-page-img { box-shadow:0 18px 40px rgba(3,24,43,0.12); overflow:hidden; }
.product-page-img img { height:420px; object-fit:cover; }
.product-page-content h2 { font-size:42px; color:var(--navy-deep); margin-bottom:18px; }
.product-page-content .accent-line { width:110px; height:5px; background:linear-gradient(90deg, var(--accent), #dbeafe); margin-bottom:28px; border-radius:999px; }
.product-page-content p { color:#111827; margin-bottom:18px; font-size:18px; }
.product-page-content ul { margin:24px 0 30px 20px; }
.product-page-content li { margin-bottom:10px; font-size:17px; }

.product-gallery { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.product-gallery img { width:100%; height:300px; object-fit:cover; box-shadow:0 18px 40px rgba(3,24,43,0.12); }
@media (max-width:760px){ .product-gallery { grid-template-columns:1fr; } .product-gallery img { height:240px; } }

details { background:var(--white); margin-bottom:14px; padding:20px 24px; box-shadow:0 6px 20px rgba(3,24,43,0.05); }
summary { font-weight:800; color:var(--navy-deep); cursor:pointer; }
details p { margin-top:14px; color:#111827; }

.contact-grid { display:grid; grid-template-columns:0.8fr 1.2fr; gap:36px; align-items:start; }
.contact-info { background:var(--navy-deep); color:var(--white); padding:36px; }
.contact-info h3 { font-size:26px; margin-bottom:22px; }

form { background:var(--white); border:1px solid var(--border); padding:32px; box-shadow:0 12px 35px rgba(3,24,43,0.08); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
input, select, textarea { width:100%; padding:14px 15px; margin-bottom:16px; border:1px solid var(--border); border-radius:3px; font-size:15px; font-family:inherit; }
textarea { min-height:130px; resize:vertical; }

footer { background:var(--navy-deep); color:var(--white); padding:56px 0 20px; }
.footer-grid { display:grid; grid-template-columns:1.2fr 0.8fr 1fr; gap:42px; margin-bottom:34px; }
footer h3, footer h4 { margin-bottom:16px; }
footer p, footer a { color:#cbd5e1; display:block; margin-bottom:8px; }
.copyright { border-top:1px solid rgba(255,255,255,0.12); padding-top:18px; text-align:center; color:#94a3b8; font-size:14px; }

.whatsapp {
  position:fixed; bottom:24px; right:24px; width:62px; height:62px;
  background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:white; font-size:30px; text-decoration:none; box-shadow:0 10px 25px rgba(0,0,0,0.25); z-index:999;
}

@media (max-width: 1100px) {
  .navbar { height:auto; padding:14px 0; }
  nav ul { gap:16px; font-size:14px; }
  .logo-main {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.6px;
  white-space: nowrap;
}
  .logo-sub {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 5px;
  color: #777;
  text-transform: uppercase;
  white-space: nowrap;
}
}
@media (max-width: 920px) {
  nav ul, .navbar > .btn { display:none; }
  .logo-main {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.6px;
  white-space: nowrap;
}
  .hero { min-height:560px; }
  .hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  max-width: 900px;
  font-weight: 900;
}
  .stats { margin-top:0; }
  .stats-grid, .product-grid, .why-grid, .about-grid, .contact-grid, .footer-grid, .product-page-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
}


.contact-map {
  grid-column: 1 / -1;
  margin-top: 28px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(3,24,43,0.10);
  border: 1px solid var(--border);
}

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

/* Better phone/tablet responsiveness */
@media (max-width: 768px) {
  .topbar {
    font-size: 13px;
    text-align: center;
  }

  .topbar .container {
    justify-content: center;
  }

  .topbar span {
    display: block;
    margin: 4px 0;
  }

  .navbar {
    min-height: auto;
    padding: 14px 0;
  }

  .logo {
    gap: 10px;
    max-width: 100%;
  }

  .logo-mark {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  .logo-main {
    font-size: 19px !important;
    white-space: normal;
    line-height: 1.12;
  }

  .logo-sub {
    font-size: 10px !important;
    letter-spacing: 2.5px !important;
    line-height: 1.2;
  }

  .hero {
    min-height: 520px;
    padding: 70px 0;
    background-position: center;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
  }

  .hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  max-width: 900px;
  font-weight: 900;
}

  .hero p {
    font-size: 17px;
    font-weight: 600;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }

  .hero-actions {
    width: 100%;
  }

  .stats-grid {
    gap: 14px;
    background: transparent;
  }

  .stat {
    min-height: auto;
    padding: 24px 16px;
  }

  .stat h2 {
    font-size: 28px;
  }

  section {
    padding: 64px 0;
  }

  .section-title h2,
  .about-text h2,
  .product-page-content h2 {
    font-size: 30px;
  }

  .product-card img,
  .product-page-img img,
  .about-image img {
    height: 260px;
    object-fit: cover;
  }

  .contact-info,
  form {
    padding: 24px;
  }

  .contact-map iframe {
    height: 300px;
  }

  .whatsapp {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(94%, 1180px);
  }

  .hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  max-width: 900px;
  font-weight: 900;
}

  .hero p {
    font-size: 16px;
  }

  .product-grid,
  .why-grid {
    gap: 18px;
  }

  .product-content,
  .why-card {
    padding: 20px;
  }

  .form-row {
    gap: 0;
  }
}


.map-section {
  background: #f8fafc;
  padding-top: 30px;
}

.contact-map {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(3,24,43,0.12);
  border: 1px solid var(--border);
}

.contact-map iframe {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .contact-map iframe {
    height: 320px;
  }
}


.about-text p,
.product-content p,
.why-card p,
.product-page-content p,
details p,
.contact-info p,
.section-title p {
  color: #111827 !important;
  line-height: 1.9;
}

.about-text p {
  margin-bottom: 22px;
  font-size: 17px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  max-width: 900px;
  font-weight: 900;
}

.topbar {
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  max-width: 900px;
  font-weight: 900;
}

  .about-text p {
    font-size: 16px;
    line-height: 1.8;
  }
}


.hero-content {
  max-width: 900px;
}

.hero p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 760px;
  color: rgba(255,255,255,0.92);
}

.hero-actions {
  margin-top: 28px;
}

@media (max-width: 992px) {
  .hero {
    min-height: 560px;
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 54px;
    line-height: 1.14;
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px !important;
    line-height: 1.16;
    max-width: 100%;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 34px !important;
    line-height: 1.18;
  }
}



.contact-info {
  color: #ffffff !important;
}

.contact-info h3,
.contact-info strong {
  color: #ffffff !important;
}

.contact-info p {
  color: rgba(255,255,255,0.88) !important;
  line-height: 1.9;
}

.contact-info a {
  color: rgba(255,255,255,0.92) !important;
}


/* ================= FINAL CLEAN HERO + HEADER OVERRIDES ================= */

.topbar {
  background: #071d33 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  padding: 10px 0 !important;
}

.topbar .container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px !important;
}

.topbar span {
  color: #ffffff !important;
  font-weight: 700 !important;
  margin-right: 22px !important;
}

.navbar {
  min-height: 112px !important;
  padding: 12px 0 !important;
  align-items: center !important;
}

.logo-mark {
  width: 74px !important;
  height: 74px !important;
  font-size: 22px !important;
  border-radius: 8px !important;
}

.logo-main {
  font-size: 28px !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
}

.logo-sub {
  font-size: 14px !important;
  letter-spacing: 5px !important;
  margin-top: 10px !important;
}

nav ul {
  gap: 28px !important;
}

nav a {
  padding: 28px 0 !important;
}

/* clean dropdown */
.dropdown {
  top: calc(100% - 8px) !important;
  left: 0 !important;
  transform: translateY(10px) !important;
  width: 285px !important;
  border-top: 3px solid var(--accent) !important;
  border-radius: 0 0 8px 8px !important;
  z-index: 9999 !important;
}

.dropdown::before {
  display: none !important;
}

nav li:hover .dropdown {
  transform: translateY(0) !important;
}

/* Restore pipe image hero and fix spacing */
.hero {
  min-height: 660px !important;
  padding: 90px 0 125px !important;
  display: flex !important;
  align-items: center !important;
  background:
    linear-gradient(90deg, rgba(7, 29, 51, 0.96) 0%, rgba(14, 42, 72, 0.88) 44%, rgba(7, 29, 51, 0.24) 100%),
    url('saw-pipe-pic.jpeg') center right / cover no-repeat !important;
  color: #ffffff !important;
}

.hero::before {
  display: none !important;
}

.hero-content {
  max-width: 760px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hero .eyebrow {
  color: #ffffff !important;
  font-size: 14px !important;
  letter-spacing: 2.5px !important;
  font-weight: 900 !important;
  margin-bottom: 26px !important;
  padding: 0 !important;
}

.hero .eyebrow::after {
  display: none !important;
}

.hero h1 {
  font-size: clamp(44px, 4.6vw, 68px) !important;
  line-height: 1.12 !important;
  letter-spacing: -1.4px !important;
  max-width: 760px !important;
  margin: 0 0 26px 0 !important;
  font-weight: 900 !important;
  color: #ffffff !important;
}

.hero h1::after {
  display: none !important;
}

.hero p {
  max-width: 680px !important;
  font-size: 19px !important;
  line-height: 1.7 !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.94) !important;
  margin: 0 !important;
}

.hero-actions {
  margin-top: 32px !important;
  display: flex !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
}

.hero-actions .btn {
  min-width: 170px !important;
  padding: 16px 28px !important;
  text-align: center !important;
}

.hero-actions .btn:first-child {
  background: linear-gradient(135deg, #1f3a5f 0%, #2d567f 100%) !important;
  color: #ffffff !important;
}

.hero-actions .btn.light {
  background: #ffffff !important;
  color: #111827 !important;
  border: none !important;
}

/* Stats should not cover buttons */
.stats {
  margin-top: -56px !important;
  position: relative !important;
  z-index: 5 !important;
}

.stats-grid {
  max-width: 1120px !important;
  margin: auto !important;
}

.stat {
  min-height: 128px !important;
  padding: 30px 20px !important;
}

.stat h2 {
  font-size: 30px !important;
}

/* Contact card readability */
.contact-info,
.contact-info h3,
.contact-info strong {
  color: #ffffff !important;
}

.contact-info p {
  color: rgba(255,255,255,0.9) !important;
}

/* Desktop medium */
@media (max-width: 1100px) {
  .logo-main {
    font-size: 23px !important;
    white-space: normal !important;
  }

  .logo-sub {
    font-size: 12px !important;
    letter-spacing: 3px !important;
  }

  nav ul {
    gap: 18px !important;
    font-size: 14px !important;
  }
}

/* Mobile */
@media (max-width: 920px) {
  .topbar .container {
    justify-content: center !important;
    text-align: center !important;
  }

  .topbar span {
    display: block !important;
    margin: 3px 0 !important;
  }

  .navbar {
    min-height: auto !important;
    padding: 14px 0 !important;
  }

  .logo-mark {
    width: 58px !important;
    height: 58px !important;
    font-size: 18px !important;
  }

  .logo-main {
    font-size: 20px !important;
    white-space: normal !important;
  }

  .logo-sub {
    font-size: 10px !important;
    letter-spacing: 2.5px !important;
  }

  .hero {
    min-height: auto !important;
    padding: 80px 0 105px !important;
    background-position: center !important;
  }

  .hero h1 {
    font-size: 38px !important;
    line-height: 1.16 !important;
    max-width: 100% !important;
  }

  .hero p {
    font-size: 16px !important;
    max-width: 100% !important;
  }

  .hero-actions .btn {
    min-width: 150px !important;
  }

  .stats {
    margin-top: -26px !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 70px 0 90px !important;
  }

  .hero h1 {
    font-size: 32px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }
}


/* ===== FINAL HERO LAYOUT FIX: centered container, no clipping, pipe image restored ===== */

.hero {
  min-height: 660px !important;
  padding: 90px 0 135px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(7, 29, 51, 0.94) 0%, rgba(14, 42, 72, 0.82) 45%, rgba(7, 29, 51, 0.30) 100%),
    url('saw-pipe-pic.jpeg') center right / cover no-repeat !important;
}

/* IMPORTANT: this element is also .container, so keep it centered */
.hero-content.container,
.hero-content {
  width: min(1180px, 92%) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  position: relative !important;
  z-index: 2 !important;
  text-align: left !important;
}

.hero .eyebrow {
  display: block !important;
  color: #ffffff !important;
  font-size: 14px !important;
  letter-spacing: 3px !important;
  font-weight: 900 !important;
  margin: 0 0 24px 0 !important;
  padding: 0 !important;
  max-width: 760px !important;
}

.hero h1 {
  color: #ffffff !important;
  font-size: clamp(46px, 4.8vw, 72px) !important;
  line-height: 1.12 !important;
  letter-spacing: -1.5px !important;
  font-weight: 900 !important;
  max-width: 800px !important;
  margin: 0 0 28px 0 !important;
}

.hero p {
  color: rgba(255,255,255,0.94) !important;
  font-size: 19px !important;
  line-height: 1.75 !important;
  font-weight: 700 !important;
  max-width: 710px !important;
  margin: 0 !important;
}

.hero-actions {
  margin-top: 32px !important;
  display: flex !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
}

.hero-actions .btn {
  min-width: 170px !important;
  padding: 16px 28px !important;
  text-align: center !important;
}

.stats {
  margin-top: -56px !important;
  position: relative !important;
  z-index: 5 !important;
}

.stats-grid {
  width: min(1120px, 92%) !important;
  margin: auto !important;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto !important;
    padding: 78px 0 105px !important;
    background-position: center !important;
  }

  .hero h1 {
    font-size: 38px !important;
    line-height: 1.16 !important;
    max-width: 100% !important;
  }

  .hero p {
    font-size: 16px !important;
    max-width: 100% !important;
  }

  .hero-actions .btn {
    min-width: 150px !important;
  }

  .stats {
    margin-top: -22px !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 70px 0 90px !important;
  }

  .hero h1 {
    font-size: 32px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }
}


/* =========================================================
   FINAL CLEAN INTRO SECTION
   Goal: clean spacing like the reference layout + pipe image
   ========================================================= */

.hero {
  min-height: 650px !important;
  padding: 92px 0 138px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background:
    linear-gradient(90deg, rgba(9, 27, 48, 0.96) 0%, rgba(25, 50, 82, 0.86) 48%, rgba(25, 50, 82, 0.42) 100%),
    url('saw-pipe-pic.jpeg') center right / cover no-repeat !important;
}

/* keep hero block centered like the cleaner version */
.hero-content.container,
.hero-content {
  width: min(1180px, 92%) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  text-align: left !important;
  position: relative !important;
  z-index: 2 !important;
}

.hero-content > .eyebrow,
.hero-content > h1,
.hero-content > p,
.hero-content > .hero-actions {
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero .eyebrow {
  display: block !important;
  color: #ffffff !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  letter-spacing: 3px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  margin-top: 0 !important;
  margin-bottom: 28px !important;
  padding: 0 !important;
}

.hero .eyebrow::before,
.hero .eyebrow::after,
.hero h1::before,
.hero h1::after {
  display: none !important;
  content: none !important;
}

.hero h1 {
  color: #ffffff !important;
  font-size: clamp(52px, 5vw, 76px) !important;
  line-height: 1.12 !important;
  letter-spacing: -1.8px !important;
  font-weight: 900 !important;
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}

.hero p {
  color: rgba(255,255,255,0.94) !important;
  font-size: 19px !important;
  line-height: 1.75 !important;
  font-weight: 700 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.hero-actions {
  margin-top: 34px !important;
  display: flex !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
}

.hero-actions .btn {
  min-width: 185px !important;
  padding: 16px 28px !important;
  text-align: center !important;
}

.hero-actions .btn:first-child {
  background: linear-gradient(135deg, #1f3a5f 0%, #2d567f 100%) !important;
  color: #ffffff !important;
  border: none !important;
}

.hero-actions .btn.light {
  background: #ffffff !important;
  color: #111827 !important;
  border: none !important;
}

/* stats sit below hero, not over buttons */
.stats {
  margin-top: -58px !important;
  position: relative !important;
  z-index: 5 !important;
}

.stats-grid {
  width: min(1120px, 92%) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  background: #ffffff !important;
}

.stat {
  min-height: 130px !important;
  padding: 30px 20px !important;
}

/* clean header sizing */
.navbar {
  min-height: 108px !important;
  padding: 12px 0 !important;
}

.logo-mark {
  width: 74px !important;
  height: 74px !important;
  font-size: 22px !important;
}

.logo-main {
  font-size: 28px !important;
  line-height: 1.05 !important;
}

.logo-sub {
  font-size: 14px !important;
  letter-spacing: 5px !important;
}

nav ul {
  gap: 28px !important;
}

nav a {
  padding: 28px 0 !important;
}

/* mobile */
@media (max-width: 920px) {
  .hero {
    min-height: auto !important;
    padding: 78px 0 105px !important;
    background-position: center right !important;
  }

  .hero-content > .eyebrow,
  .hero-content > h1,
  .hero-content > p,
  .hero-content > .hero-actions {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero h1 {
    font-size: 40px !important;
    line-height: 1.16 !important;
    letter-spacing: -1px !important;
  }

  .hero p {
    font-size: 16px !important;
  }

  .stats {
    margin-top: -22px !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 70px 0 92px !important;
  }

  .hero h1 {
    font-size: 32px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }
}


/* Clean long hero title sizing */
.hero h1 {
  font-size: clamp(46px, 4.5vw, 68px) !important;
  line-height: 1.12 !important;
  max-width: 820px !important;
  letter-spacing: -1.5px !important;
  margin-bottom: 28px !important;
}

.hero-content > h1 {
  max-width: 820px !important;
}

@media (max-width: 920px) {
  .hero h1 {
    font-size: 38px !important;
    line-height: 1.15 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px !important;
  }
}


/* Final Our Products dropdown styling */
nav li {
  position: relative !important;
}

nav li:has(.dropdown) > a {
  color: var(--accent) !important;
  font-weight: 900 !important;
}

.dropdown {
  top: calc(100% - 2px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(10px) !important;
  width: 560px !important;
  background: #ffffff !important;
  border-top: 7px solid var(--accent) !important;
  border-radius: 0 !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.13) !important;
  padding: 0 !important;
  overflow: visible !important;
  z-index: 99999 !important;
}

.dropdown::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: -17px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 11px solid transparent !important;
  border-right: 11px solid transparent !important;
  border-bottom: 11px solid var(--accent) !important;
}

.dropdown a {
  display: block !important;
  padding: 25px 42px !important;
  color: #111827 !important;
  background: #ffffff !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  border-bottom: 1px solid #e5e7eb !important;
  white-space: nowrap !important;
  transition: all 0.18s ease !important;
}

.dropdown a:last-child {
  border-bottom: none !important;
}

.dropdown a:hover {
  background: #f8fafc !important;
  color: var(--accent) !important;
  padding-left: 50px !important;
}

nav li:hover .dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

/* Keep dropdown inside screen on smaller desktop */
@media (max-width: 1100px) {
  .dropdown {
    width: 420px !important;
  }

  .dropdown a {
    font-size: 17px !important;
    padding: 20px 30px !important;
  }
}

@media (max-width: 920px) {
  .dropdown {
    display: none !important;
  }
}


/* Compact cleaner dropdown */
.dropdown {
  width: 360px !important;
  max-width: 360px !important;
  border-top: 5px solid var(--accent) !important;
}

.dropdown a {
  padding: 16px 26px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.dropdown::before {
  top: -14px !important;
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-bottom: 9px solid var(--accent) !important;
}

.dropdown a:hover {
  padding-left: 32px !important;
}

@media (max-width: 1100px) {
  .dropdown {
    width: 320px !important;
    max-width: 320px !important;
  }

  .dropdown a {
    font-size: 15px !important;
    padding: 14px 22px !important;
  }
}

/* Manual hero carousel controls */
.hero-slide {
  animation: none !important;
  opacity: 0;
  transition: opacity 0.7s ease, transform 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-copy {
  animation: none !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-copy.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(15, 23, 42, 0.42);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.06);
}

.slider-arrow-left { left: 28px; }
.slider-arrow-right { right: 28px; }

.slider-dots button {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  animation: none !important;
  transition: background 0.2s ease, width 0.2s ease;
}

.slider-dots button.active {
  width: 54px;
  background: var(--accent);
}

@media (max-width: 768px) {
  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }
  .slider-arrow-left { left: 12px; }
  .slider-arrow-right { right: 12px; }
}
