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

:root {
  --red: #ed1c24;
  --red-dark: #b90f16;
  --black: #101010;
  --ink: #1c1c1c;
  --muted: #6d6d6d;
  --line: #e6e6e6;
  --light: #f5f5f3;
  --white: #ffffff;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
}

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

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

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

.section { padding: 100px 0; }

.eyebrow {
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  line-height: 1.05;
  text-transform: uppercase;
}

h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); color: var(--white); max-width: 850px; }
h1 span { color: var(--red); }
h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
h3 { font-size: 1.6rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: .25s ease;
}

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

.brand img {
  width: 155px;
  height: 70px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.main-nav { display: flex; align-items: center; gap: 24px; font-size: .84rem; font-weight: 600; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 2px;
}

.menu-toggle { display: none; border: 0; background: none; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--black); margin: 5px; }

.hero {
  min-height: 760px;
  padding-top: 86px;
  display: flex;
  align-items: center;
  position: relative;
  
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.68) 48%, rgba(0,0,0,.25) 100%);
}

.hero-content { position: relative; z-index: 1; padding: 90px 0; }
.hero-text { color: rgba(255,255,255,.86); max-width: 620px; font-size: 1.1rem; margin: 26px 0 34px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-light { background: var(--white); color: var(--black); }
.btn-light:hover { background: var(--black); color: var(--white); }

.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.intro-image { overflow: hidden; }
.intro-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover;  }
.intro-copy h2 { margin-bottom: 24px; }
.intro-copy p { color: var(--muted); margin-bottom: 16px; }

.text-link { display: inline-block; color: var(--red); font-weight: 700; margin-top: 16px; }
.text-link span { margin-left: 8px; }

.section-dark { background: var(--black); color: var(--white); }
.certification-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.certification-layout p:not(.eyebrow) { color: #bcbcbc; max-width: 560px; }
.cert-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.cert-item { border: 1px solid #333; padding: 28px; }
.cert-item strong { display: block; font-family: "Barlow Condensed"; font-size: 2.3rem; color: var(--red); }
.cert-item span { color: #aaa; font-size: .85rem; }

.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 45px; }
.section-heading h2 { max-width: 650px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { border: 1px solid var(--line); padding: 30px; min-height: 300px; display: flex; flex-direction: column; }
.product-icon { color: var(--red); font-family: "Barlow Condensed"; font-size: 2.6rem; margin-bottom: 30px; }
.product-card h3 { margin-bottom: 14px; }
.product-card p { color: var(--muted); font-size: .9rem; }
.product-card a { margin-top: auto; padding-top: 25px; color: var(--red); font-weight: 700; font-size: .85rem; }

.section-light { background: var(--light); }
.centered { text-align: center; display: block; }
.centered h2 { margin: 0 auto 15px; }
.centered > p:last-child { color: var(--muted); }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 45px; }
.industry-card { min-height: 180px; background: var(--white); padding: 25px; display: flex; flex-direction: column; justify-content: space-between; border-bottom: 3px solid var(--red); }
.industry-card span { color: var(--red); font-weight: 700; }
.industry-card h3 { font-size: 1.9rem; }

.cta { background: var(--red); color: var(--white); padding: 75px 0; }
.cta-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta .eyebrow { color: var(--white); }
.cta h2 { max-width: 700px; }
.cta p:last-child { opacity: .85; margin-top: 10px; }

.site-footer { background: #111; color: #aaa; }
.footer-grid { padding: 65px 0; display: grid; grid-template-columns: 1fr 1fr 1fr 1.2fr; gap: 30px; }
.footer-logo { width: 155px; height: 70px; object-fit: contain; mix-blend-mode: screen; margin-bottom: 15px; }
.site-footer h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 15px; }
.site-footer a { display: block; margin-bottom: 8px; }
.site-footer a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid #2b2b2b; padding: 20px 0; font-size: .8rem; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 22px 4%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; }
  .nav-cta { text-align: center; margin-top: 10px; }
  .intro-grid, .certification-layout { grid-template-columns: 1fr; gap: 45px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-content { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .hero { min-height: 680px; }
  .hero-content { padding: 70px 0; }
  .product-grid, .industry-grid, .cert-list, .footer-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading .text-link { margin-top: 20px; }
  .brand img { width: 130px; }
}

.product-card2 img{

    transition:.5s;
	

}

.product-card2:hover img{
	
	height:140px;

    filter:brightness(.8) sepia(40%) saturate(250%) hue-rotate(-20deg);

}


.product-card{

    transition:.5s;
	

}

.product-card:hover{
	
	width:300px;

    filter:brightness(.8) sepia(40%) saturate(250%) hue-rotate(-20deg);

}