*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: #f5f7fa; color: #0d1b2a; overflow-x: hidden; }

/* HEADER */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #0d1b2a; box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { width: 42px; height: 42px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }
.logo-text { line-height: 1.1; }
.logo-text .t1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.25rem; color: #ffffff; letter-spacing: 2px; text-transform: uppercase; }
.logo-text .t2 { font-size: .72rem; color: #ff9800; letter-spacing: 1.5px; text-transform: uppercase; }
nav ul { list-style: none; display: flex; gap: 6px; }
nav ul a { display: block; padding: 8px 14px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.82); text-decoration: none; border-radius: 6px; transition: .3s ease; }
nav ul a:hover, nav ul a.active { color: #ff9800; background: rgba(255,255,255,.07); }
.nav-cta { background: #f57c00 !important; color: #ffffff !important; padding: 8px 20px !important; }
.nav-cta:hover { background: #ff9800 !important; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1100; }
.hamburger span { display: block; width: 26px; height: 3px; background: #ffffff; border-radius: 3px; transition: .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* MOBILE DRAWER */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1050; opacity: 0; transition: opacity .3s ease; }
.mobile-overlay.visible { opacity: 1; }
.mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100vh; background: #0d1b2a; z-index: 1060; transition: left .3s ease; padding: 80px 24px 40px; display: flex; flex-direction: column; gap: 4px; overflow-y: auto; }
.mobile-drawer.open { left: 0; }
.mobile-drawer a { display: block; padding: 13px 16px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 1.1rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.85); text-decoration: none; border-radius: 8px; border-left: 3px solid transparent; transition: .3s ease; }
.mobile-drawer a:hover { color: #ff9800; border-left-color: #ff9800; background: rgba(255,255,255,.06); }
.mobile-drawer .drawer-cta { margin-top: 16px; background: #f57c00; color: #ffffff !important; text-align: center; border-left: none !important; }

/* HERO */
.hero { margin-top: 70px; min-height: 90vh; background: linear-gradient(135deg, #0d1b2a 0%, #1565c0 60%, #0d47a1 100%); position: relative; overflow: hidden; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(245,124,0,.18) 0%, transparent 50%), radial-gradient(circle at 10% 80%, rgba(255,255,255,.05) 0%, transparent 40%); }
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bg-shapes span { position: absolute; display: block; border: 2px solid rgba(255,255,255,.06); border-radius: 8px; animation: floatShape 12s ease-in-out infinite alternate; }
.hero-bg-shapes span:nth-child(1) { width: 120px; height: 120px; top: 10%; left: 5%; animation-delay: 0s; }
.hero-bg-shapes span:nth-child(2) { width: 70px; height: 70px; top: 60%; left: 12%; animation-delay: 2s; }
.hero-bg-shapes span:nth-child(3) { width: 200px; height: 200px; top: 5%; right: 10%; animation-delay: 1s; }
.hero-bg-shapes span:nth-child(4) { width: 50px; height: 50px; bottom: 15%; right: 20%; animation-delay: 3s; }
@keyframes floatShape { from { transform: translateY(0) rotate(0deg); } to { transform: translateY(-30px) rotate(15deg); } }
.hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,124,0,.2); border: 1px solid rgba(245,124,0,.4); color: #ff9800; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: .88rem; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; margin-bottom: 20px; }
.hero-tag::before { content: ''; display: block; width: 8px; height: 8px; border-radius: 50%; background: #ff9800; animation: blink 1.5s ease infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.3; } }
.hero-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.05; color: #ffffff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.hero-title em { font-style: normal; color: #ff9800; }
.hero-sub { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: #f57c00; color: #ffffff; padding: 14px 30px; border-radius: 10px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: .3s ease; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: #ff9800; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,124,0,.4); }
.btn-outline { background: transparent; color: #ffffff; padding: 13px 28px; border: 2px solid rgba(255,255,255,.45); border-radius: 10px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: .3s ease; }
.btn-outline:hover { border-color: #ff9800; color: #ff9800; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2rem; color: #ff9800; line-height: 1; }
.hero-stat .lbl { font-size: .82rem; color: rgba(255,255,255,.55); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* HERO VISUAL CARDS */
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 24px 18px; backdrop-filter: blur(6px); text-align: center; transition: .3s ease; }
.hero-card:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.hero-card:first-child { grid-column: 1 / -1; display: flex; align-items: center; gap: 20px; text-align: left; padding: 28px 24px; }
.hero-card-img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.hero-card-img-sm { width: 48px; height: 48px; object-fit: contain; margin-bottom: 10px; }
.hero-card h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; color: #ffffff; letter-spacing: .5px; margin-bottom: 4px; }
.hero-card p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.5; }

/* SECTION COMMONS */
section { padding: 90px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: 3px; text-transform: uppercase; color: #f57c00; margin-bottom: 12px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.1; text-transform: uppercase; color: #0d1b2a; margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: #637381; line-height: 1.7; max-width: 620px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* FEATURES STRIP */
.features-strip { background: #0d1b2a; padding: 0; }
.features-strip-inner { display: flex; overflow-x: auto; }
.feature-pill { flex: 1; min-width: 180px; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 32px 20px; border-right: 1px solid rgba(255,255,255,.08); text-align: center; transition: .3s ease; }
.feature-pill:last-child { border-right: none; }
.feature-pill:hover { background: rgba(255,255,255,.05); }
.feature-pill img { width: 40px; height: 40px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; }
.feature-pill span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .95rem; color: rgba(255,255,255,.8); letter-spacing: .5px; text-transform: uppercase; }

/* PRODUCTS */
.products { background: #ffffff; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background: #ffffff; border: 1px solid #e0e6ed; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 24px rgba(13,27,42,.12); transition: .3s ease; position: relative; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,27,42,.18); }
.product-thumb { height: 190px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-badge { position: absolute; top: 14px; right: 14px; background: #f57c00; color: #ffffff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .75rem; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; z-index: 1; }
.product-body { padding: 22px 22px 24px; }
.product-body h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.25rem; color: #0d1b2a; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px; }
.product-body p { font-size: .9rem; color: #637381; line-height: 1.6; margin-bottom: 16px; }
.product-link { display: inline-flex; align-items: center; gap: 6px; color: #1565c0; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .5px; text-transform: uppercase; text-decoration: none; transition: .3s ease; }
.product-link:hover { color: #f57c00; gap: 10px; }

/* ABOUT */
.about { background: #f5f7fa; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { background: linear-gradient(135deg, #0d1b2a, #1565c0); border-radius: 16px; height: 420px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-visual::before { content: ''; position: absolute; width: 200px; height: 200px; background: rgba(245,124,0,.15); border-radius: 50%; top: -40px; right: -40px; }
.about-visual::after { content: ''; position: absolute; width: 120px; height: 120px; background: rgba(255,255,255,.06); border-radius: 50%; bottom: 30px; left: 30px; }
.about-logo-big { position: relative; z-index: 1; text-align: center; }
.about-logo-big img { width: 90px; height: 90px; object-fit: contain; border-radius: 18px; margin: 0 auto 16px; display: block; }
.about-logo-big p { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.3rem; color: #ffffff; letter-spacing: 3px; text-transform: uppercase; }
.about-logo-big small { display: block; font-size: .8rem; color: rgba(255,255,255,.5); letter-spacing: 2px; margin-top: 4px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 1; }
.about-stat-box { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 14px; text-align: center; }
.about-stat-box .n { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.6rem; color: #ff9800; }
.about-stat-box .l { font-size: .75rem; color: rgba(255,255,255,.55); letter-spacing: 1px; text-transform: uppercase; }
.about-content .section-sub { max-width: 100%; margin-bottom: 28px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: #0d1b2a; line-height: 1.5; }
.about-list li::before { content: '✔'; color: #f57c00; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* WHY */
.why { background: #ffffff; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { border: 1px solid #e0e6ed; border-radius: 14px; padding: 32px 22px; text-align: center; transition: .3s ease; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #1565c0, #f57c00); transform: scaleX(0); transform-origin: left; transition: .3s ease; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 4px 24px rgba(13,27,42,.12); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon img { width: 56px; height: 56px; object-fit: contain; margin-bottom: 16px; }
.why-card h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.05rem; color: #0d1b2a; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.why-card p { font-size: .88rem; color: #637381; line-height: 1.6; }

/* INDUSTRIES */
.industries { background: #0d1b2a; }
.industries .section-title { color: #ffffff; }
.industries .section-sub { color: rgba(255,255,255,.55); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 28px 20px; text-align: center; transition: .3s ease; cursor: default; }
.industry-card:hover { background: rgba(245,124,0,.15); border-color: rgba(245,124,0,.4); transform: translateY(-4px); }
.industry-card img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: 0.85; }
.industry-card:hover img { filter: none; opacity: 1; }
.industry-card span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; color: rgba(255,255,255,.85); letter-spacing: .5px; text-transform: uppercase; }

/* CONTACT */
.contact { background: #f5f7fa; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem; color: #0d1b2a; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-icon-box { width: 46px; height: 46px; border-radius: 10px; background: #0d1b2a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-box img { width: 24px; height: 24px; object-fit: contain; filter: brightness(0) invert(1); }
.contact-item-text .label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; color: #f57c00; margin-bottom: 2px; }
.contact-item-text a, .contact-item-text p { font-size: .95rem; color: #0d1b2a; text-decoration: none; line-height: 1.5; }
.contact-item-text a:hover { color: #1565c0; }
.contact-form { background: #ffffff; border-radius: 14px; padding: 36px; box-shadow: 0 4px 24px rgba(13,27,42,.12); border: 1px solid #e0e6ed; }
.contact-form h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem; color: #0d1b2a; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: .82rem; letter-spacing: 1px; text-transform: uppercase; color: #637381; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; border: 1.5px solid #e0e6ed; border-radius: 8px; padding: 11px 14px; font-family: 'Barlow', sans-serif; font-size: .95rem; color: #0d1b2a; background: #ffffff; outline: none; transition: .3s ease; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #1565c0; box-shadow: 0 0 0 3px rgba(21,101,192,.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; background: #0d1b2a; color: #ffffff; border: none; border-radius: 10px; padding: 14px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: .3s ease; }
.form-submit:hover { background: #f57c00; }

/* FOOTER */
footer { background: #060d16; color: rgba(255,255,255,.65); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 60px 0 40px; }
.footer-logo-img { width: 50px; height: 50px; object-fit: contain; border-radius: 10px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: .3s ease; }
.footer-social:hover { background: #f57c00; }
.footer-social img { width: 18px; height: 18px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; color: #ffffff; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .9rem; color: rgba(255,255,255,.5); text-decoration: none; transition: .3s ease; }
.footer-col ul a:hover { color: #ff9800; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: .85rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: #ff9800; text-decoration: none; }




/* About Page  */


.page-hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #1565c0 60%, #0d47a1 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(245,124,0,.15) 0%, transparent 50%),
    radial-gradient(circle at 10% 70%, rgba(255,255,255,.04) 0%, transparent 40%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.page-breadcrumb a { color: #ff9800; text-decoration: none; }
.page-breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: #ff9800; }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* STATS BAR */
.stats-bar {
  background: #f57c00;
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: #ffffff;
  line-height: 1;
}
.stat-item .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
}

/* WHO WE ARE */
.who-we-are { background: #ffffff; padding: 90px 0; }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.who-img-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  background: linear-gradient(135deg, #0d1b2a, #1565c0);
}
/* Main facility image */
.who-img-box img.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Floating badge card */
.who-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}
.who-badge img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}
.who-badge-text .t1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #0d1b2a;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.who-badge-text .t2 {
  font-size: .78rem;
  color: #637381;
}

.who-content .section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f57c00;
  margin-bottom: 12px;
}
.who-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  color: #0d1b2a;
  line-height: 1.1;
  margin-bottom: 20px;
}
.who-content p {
  font-size: .97rem;
  color: #637381;
  line-height: 1.75;
  margin-bottom: 16px;
}
.who-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: #0d1b2a;
  line-height: 1.5;
}
.who-list li::before {
  content: '✔';
  color: #f57c00;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* MISSION VISION VALUES */
.mvv { background: #f5f7fa; padding: 90px 0; }
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.mvv-card {
  background: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: .3s ease;
}
.mvv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1565c0, #f57c00);
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s ease;
}
.mvv-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(13,27,42,.12); }
.mvv-card:hover::after { transform: scaleX(1); }
.mvv-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: #f5f7fa;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mvv-icon img { width: 34px; height: 34px; object-fit: contain; }
.mvv-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0d1b2a;
  margin-bottom: 12px;
}
.mvv-card p {
  font-size: .92rem;
  color: #637381;
  line-height: 1.7;
}

/* FACILITY SECTION */
.facility { background: #0d1b2a; padding: 90px 0; }
.facility .section-title { color: #ffffff; }
.facility .section-sub { color: rgba(255,255,255,.55); }
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 50px;
}
.facility-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #1565c0;
}
.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.facility-img:hover img { transform: scale(1.06); }
.facility-img .fac-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  padding: 28px 14px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}
.facility-img:first-child {
  grid-column: span 2;
  height: 340px;
}

/* TEAM / VALUES STRIP */
.values-strip { background: #ffffff; padding: 90px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: 14px;
  background: #f5f7fa;
  transition: .3s ease;
}
.value-card:hover { background: #0d1b2a; }
.value-card:hover h4, .value-card:hover p { color: #ffffff; }
.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(13,27,42,.1);
  transition: .3s ease;
}
.value-card:hover .value-icon { background: #f57c00; }
.value-icon img { width: 32px; height: 32px; object-fit: contain; }
.value-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #0d1b2a;
  margin-bottom: 10px;
  transition: .3s ease;
}
.value-card p {
  font-size: .88rem;
  color: #637381;
  line-height: 1.6;
  transition: .3s ease;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #f57c00, #ff9800);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #ffffff;
  color: #f57c00;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s ease;
}
.btn-white:hover { background: #0d1b2a; color: #ffffff; }
.btn-dark {
  background: rgba(0,0,0,.2);
  color: #ffffff;
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s ease;
}
.btn-dark:hover { background: rgba(0,0,0,.35); border-color: #ffffff; }

/* SECTION COMMON */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f57c00;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: #0d1b2a;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: #637381;
  line-height: 1.7;
  max-width: 620px;
}



/* Product Page */



.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f57c00;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: #0d1b2a;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: #637381;
  line-height: 1.7;
  max-width: 620px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #1565c0 60%, #0d47a1 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(245,124,0,.16) 0%, transparent 50%),
    radial-gradient(circle at 15% 70%, rgba(255,255,255,.04) 0%, transparent 40%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.page-breadcrumb a { color: #ff9800; text-decoration: none; }
.page-breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: #ff9800; }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* FILTER TABS */
.filter-bar {
  background: #ffffff;
  border-bottom: 1px solid #e0e6ed;
  position: sticky;
  top: 0;
  z-index: 100;
}
.filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0;
  padding: 16px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #637381;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: .25s ease;
  white-space: nowrap;
}
.filter-btn:hover { color: #0d1b2a; }
.filter-btn.active { color: #f57c00; border-bottom-color: #f57c00; }

/* PRODUCTS SECTION */
.products-section { background: #f5f7fa; padding: 70px 0 90px; }

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

/* PRODUCT CARD */
.product-card {
  background: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,27,42,.08);
  transition: .3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,27,42,.15); }

.product-thumb {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: #e3f2fd;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-thumb img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: #f57c00;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
}
.product-badge.eco { background: #2e7d32; }
.product-badge.popular { background: #1565c0; }

.product-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #0d1b2a;
  margin-bottom: 8px;
}
.product-body p {
  font-size: .9rem;
  color: #637381;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

/* Product specs list */
.product-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  padding: 16px;
  background: #f5f7fa;
  border-radius: 10px;
}
.product-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: #0d1b2a;
}
.product-specs li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f57c00;
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.product-enquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0d1b2a;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s ease;
}
.product-enquire:hover { background: #f57c00; }
.product-more {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #1565c0;
  text-decoration: none;
  transition: .3s ease;
}
.product-more:hover { color: #f57c00; }

/* FEATURED / WIDE CARD */
.product-card.featured {
  grid-column: span 3;
  flex-direction: row;
}
.product-card.featured .product-thumb {
  width: 420px;
  height: auto;
  flex-shrink: 0;
}
.product-card.featured .product-body {
  padding: 36px 36px;
}
.product-card.featured h3 { font-size: 1.7rem; }

/* CUSTOM ORDER STRIP */
.custom-strip {
  background: #0d1b2a;
  padding: 60px 0;
}
.custom-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.custom-strip h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 8px;
}
.custom-strip p {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  max-width: 500px;
  line-height: 1.6;
}
.btn-orange {
  flex-shrink: 0;
  background: #f57c00;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s ease;
  white-space: nowrap;
}
.btn-orange:hover { background: #ff9800; transform: translateY(-2px); }

/* INDUSTRIES SERVED */
.industries-row {
  background: #ffffff;
  padding: 70px 0;
}
.industries-row h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  color: #0d1b2a;
  margin-bottom: 36px;
  text-align: center;
}
.ind-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.ind-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1.5px solid #e0e6ed;
  border-radius: 999px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #0d1b2a;
  transition: .3s ease;
  cursor: default;
}
.ind-pill img { width: 22px; height: 22px; object-fit: contain; }
.ind-pill:hover { background: #0d1b2a; color: #ffffff; border-color: #0d1b2a; }
.ind-pill:hover img { filter: brightness(0) invert(1); }

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, #f57c00, #ff9800);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #ffffff;
  color: #f57c00;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s ease;
}
.btn-white:hover { background: #0d1b2a; color: #ffffff; }
.btn-dark {
  background: rgba(0,0,0,.2);
  color: #ffffff;
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s ease;
}
.btn-dark:hover { background: rgba(0,0,0,.35); border-color: #ffffff; }




/* Industries Page */




.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f57c00;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: #0d1b2a;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: #637381;
  line-height: 1.7;
  max-width: 620px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #1565c0 60%, #0d47a1 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(245,124,0,.16) 0%, transparent 50%),
    radial-gradient(circle at 15% 70%, rgba(255,255,255,.04) 0%, transparent 40%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.page-breadcrumb a { color: #ff9800; text-decoration: none; }
.page-breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: #ff9800; }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* STATS BAR */
.stats-bar { background: #f57c00; }
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1;
}
.stat-item .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
}

/* INTRO SECTION */
.intro-section { background: #ffffff; padding: 80px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  color: #0d1b2a;
  line-height: 1.1;
  margin-bottom: 20px;
}
.intro-content p {
  font-size: .97rem;
  color: #637381;
  line-height: 1.75;
  margin-bottom: 14px;
}
.intro-img {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  background: linear-gradient(135deg, #0d1b2a, #1565c0);
  position: relative;
}
.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* number overlay */
.intro-img-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: #f57c00;
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
}
.intro-img-badge .n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #ffffff;
  line-height: 1;
}
.intro-img-badge .l {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

/* INDUSTRIES GRID */
.industries-section { background: #f5f7fa; padding: 90px 0; }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ind-card {
  background: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 4px 20px rgba(13,27,42,.07);
  transition: .3s ease;
}
.ind-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(13,27,42,.14); }

/* color accent strip on left */
.ind-card-accent {
  width: 6px;
  flex-shrink: 0;
  background: #1565c0;
}
.ind-card:nth-child(2) .ind-card-accent { background: #f57c00; }
.ind-card:nth-child(3) .ind-card-accent { background: #2e7d32; }
.ind-card:nth-child(4) .ind-card-accent { background: #6a1b9a; }
.ind-card:nth-child(5) .ind-card-accent { background: #c62828; }
.ind-card:nth-child(6) .ind-card-accent { background: #00838f; }
.ind-card:nth-child(7) .ind-card-accent { background: #1565c0; }
.ind-card:nth-child(8) .ind-card-accent { background: #e65100; }

.ind-card-img {
  width: 160px;
  flex-shrink: 0;
  overflow: hidden;
  background: #e3f2fd;
}
.ind-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ind-card:hover .ind-card-img img { transform: scale(1.06); }

.ind-card-body {
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ind-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.ind-icon-box {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: #f5f7fa;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ind-icon-box img { width: 24px; height: 24px; object-fit: contain; }
.ind-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #0d1b2a;
}
.ind-card-body p {
  font-size: .88rem;
  color: #637381;
  line-height: 1.65;
  margin-bottom: 14px;
}
.ind-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ind-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #1565c0;
  background: #e3f2fd;
  padding: 4px 10px;
  border-radius: 5px;
}

/* PACKAGING SOLUTIONS TABLE */
.solutions-section { background: #0d1b2a; padding: 90px 0; }
.solutions-section .section-title { color: #ffffff; }
.solutions-section .section-sub { color: rgba(255,255,255,.55); }

.solutions-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  border-radius: 14px;
  overflow: hidden;
}
.solutions-table thead tr {
  background: #f57c00;
}
.solutions-table thead th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 16px 20px;
  text-align: left;
}
.solutions-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: .2s ease;
}
.solutions-table tbody tr:last-child { border-bottom: none; }
.solutions-table tbody tr:hover { background: rgba(255,255,255,.05); }
.solutions-table tbody td {
  padding: 16px 20px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  vertical-align: middle;
}
.solutions-table tbody td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.solutions-table .check {
  color: #ff9800;
  font-size: 1.1rem;
}
.solutions-table .dash { color: rgba(255,255,255,.2); }

/* TABLE SCROLL WRAPPER on mobile */
.table-wrap { overflow-x: auto; border-radius: 14px; }

/* PROCESS / HOW IT WORKS */
.process-section { background: #ffffff; padding: 90px 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
/* connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #1565c0, #f57c00);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #0d1b2a;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid #1565c0;
  transition: .3s ease;
  position: relative;
}
.process-step:hover .step-circle { background: #f57c00; border-color: #f57c00; }
.step-circle img { width: 32px; height: 32px; object-fit: contain; filter: brightness(0) invert(1); }
.step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #f57c00;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: .8rem;
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
}
.process-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #0d1b2a;
  margin-bottom: 8px;
}
.process-step p {
  font-size: .85rem;
  color: #637381;
  line-height: 1.6;
}

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, #f57c00, #ff9800);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #ffffff;
  color: #f57c00;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s ease;
}
.btn-white:hover { background: #0d1b2a; color: #ffffff; }
.btn-dark {
  background: rgba(0,0,0,.2);
  color: #ffffff;
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s ease;
}
.btn-dark:hover { background: rgba(0,0,0,.35); border-color: #ffffff; }





/* Contact Page */



.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #1565c0 60%, #0d47a1 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(245,124,0,.16) 0%, transparent 50%),
    radial-gradient(circle at 15% 70%, rgba(255,255,255,.04) 0%, transparent 40%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.page-breadcrumb a { color: #ff9800; text-decoration: none; }
.page-breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: #ff9800; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.7; }

/* QUICK CONTACT STRIP */
.quick-strip { background: #f57c00; }
.quick-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.quick-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.2);
  text-decoration: none;
  transition: .3s ease;
}
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: rgba(0,0,0,.1); }
.quick-item-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.quick-item-icon img { width: 24px; height: 24px; object-fit: contain; filter: brightness(0) invert(1); }
.quick-item-text .ql {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 2px;
}
.quick-item-text .qv {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
  letter-spacing: .5px;
}

/* MAIN CONTACT SECTION */
.contact-main { background: #f5f7fa; padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

/* LEFT – info cards */
.contact-info-col { display: flex; flex-direction: column; gap: 20px; }

.info-card {
  background: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 2px 12px rgba(13,27,42,.06);
  transition: .3s ease;
}
.info-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(13,27,42,.1); }
.info-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: #0d1b2a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-card-icon img { width: 26px; height: 26px; object-fit: contain; filter: brightness(0) invert(1); }
.info-card-body .ic-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f57c00;
  margin-bottom: 4px;
}
.info-card-body .ic-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #0d1b2a;
  margin-bottom: 4px;
  letter-spacing: .5px;
}
.info-card-body .ic-val {
  font-size: .92rem;
  color: #637381;
  line-height: 1.6;
}
.info-card-body a {
  color: #637381;
  text-decoration: none;
  transition: .2s ease;
}
.info-card-body a:hover { color: #1565c0; }

/* Business hours table */
.hours-table { width: 100%; margin-top: 6px; }
.hours-table tr td {
  font-size: .88rem;
  color: #637381;
  padding: 3px 0;
}
.hours-table tr td:first-child { color: #0d1b2a; font-weight: 600; width: 50%; }
.hours-open { color: #2e7d32 !important; font-weight: 700 !important; }
.hours-closed { color: #c62828 !important; }

/* RIGHT – enquiry form */
.enquiry-form-box {
  background: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: 16px;
  padding: 42px 40px;
  box-shadow: 0 4px 24px rgba(13,27,42,.08);
}
.form-head {
  margin-bottom: 32px;
}
.form-head .section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f57c00;
  margin-bottom: 8px;
}
.form-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0d1b2a;
  margin-bottom: 8px;
}
.form-head p { font-size: .92rem; color: #637381; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #637381;
  margin-bottom: 7px;
}
.form-group label .req { color: #f57c00; margin-left: 2px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1.5px solid #e0e6ed;
  border-radius: 9px;
  padding: 12px 15px;
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  color: #0d1b2a;
  background: #ffffff;
  outline: none;
  transition: .25s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #1565c0;
  box-shadow: 0 0 0 3px rgba(21,101,192,.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* radio group */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.radio-opt {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: .9rem;
  color: #0d1b2a;
  padding: 8px 14px;
  border: 1.5px solid #e0e6ed;
  border-radius: 8px;
  transition: .2s ease;
}
.radio-opt:hover { border-color: #1565c0; }
.radio-opt input[type="radio"] { accent-color: #f57c00; cursor: pointer; }
.radio-opt.checked { border-color: #f57c00; background: #fff8f0; }

.form-submit {
  width: 100%;
  background: #0d1b2a;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: .3s ease;
  margin-top: 6px;
}
.form-submit:hover { background: #f57c00; letter-spacing: 3px; }

.form-note {
  text-align: center;
  font-size: .82rem;
  color: #637381;
  margin-top: 14px;
}

/* SUCCESS MSG */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success img {
  width: 64px; height: 64px;
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #0d1b2a;
  margin-bottom: 8px;
}
.form-success p { font-size: .95rem; color: #637381; }

/* MAP SECTION */
.map-section { background: #ffffff; padding: 0; }
.map-header {
  padding: 60px 0 40px;
  text-align: center;
}
.map-header .section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f57c00;
  margin-bottom: 12px;
}
.map-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  color: #0d1b2a;
}
.map-wrap {
  width: 100%;
  height: 420px;
  background: #e3f2fd;
  position: relative;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* FAQs */
.faq-section { background: #f5f7fa; padding: 90px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  padding: 24px 24px;
  cursor: pointer;
  transition: .3s ease;
}
.faq-item:hover { box-shadow: 0 6px 20px rgba(13,27,42,.08); }
.faq-item.open { border-color: #f57c00; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-q span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0d1b2a;
  letter-spacing: .3px;
}
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f5f7fa;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #637381;
  font-weight: 700;
  transition: .3s ease;
  line-height: 1;
}
.faq-item.open .faq-toggle { background: #f57c00; color: #ffffff; transform: rotate(45deg); }
.faq-a {
  display: none;
  font-size: .9rem;
  color: #637381;
  line-height: 1.7;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e0e6ed;
}
.faq-item.open .faq-a { display: block; }

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, #f57c00, #ff9800);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #ffffff;
  color: #f57c00;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s ease;
}
.btn-white:hover { background: #0d1b2a; color: #ffffff; }
.btn-dark {
  background: rgba(0,0,0,.2);
  color: #ffffff;
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s ease;
}
.btn-dark:hover { background: rgba(0,0,0,.35); }



/* ============================================
   RESPONSIVE CSS ONLY
   Breakpoints: 768px | 480px | 320px
   ============================================ */


/* ============================================
   768px — TABLET
   ============================================ */
   @media (max-width: 768px) {

    /* HEADER / NAV */
    nav ul { display: none; }
    .hamburger { display: flex; }
    .mobile-overlay { display: block; }
  
    /* HERO */
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 60px 24px;
      text-align: center;
    }
    .hero-sub { margin: 0 auto 36px; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { grid-template-columns: 1fr 1fr; }
    .hero-card:first-child {
      grid-column: 1 / -1;
      flex-direction: column;
      text-align: center;
    }
  
    /* FEATURES STRIP */
    .feature-pill { min-width: 140px; padding: 24px 14px; }
  
    /* PRODUCTS */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .product-card.featured {
      grid-column: span 2;
      flex-direction: column;
    }
    .product-card.featured .product-thumb { width: 100%; height: 220px; }
    .product-card.featured .product-body { padding: 24px; }
    .product-card.featured h3 { font-size: 1.4rem; }
  
    /* ABOUT */
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { height: 320px; }
  
    /* WHY */
    .why-grid { grid-template-columns: repeat(2, 1fr); }
  
    /* INDUSTRIES (home) */
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
  
    /* CONTACT (home) */
    .contact-wrapper { grid-template-columns: 1fr; gap: 36px; }
    .form-row { grid-template-columns: 1fr; }
  
    /* FOOTER */
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 0 32px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  
    /* ABOUT PAGE */
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,.2); }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-bottom: none; }
  
    .who-grid { grid-template-columns: 1fr; gap: 40px; }
    .who-img-box { height: 300px; }
  
    .mvv-grid { grid-template-columns: 1fr; gap: 20px; }
  
    .facility-grid { grid-template-columns: repeat(2, 1fr); }
    .facility-img:first-child { grid-column: span 2; height: 260px; }
    .facility-img { height: 180px; }
  
    .values-grid { grid-template-columns: repeat(2, 1fr); }
  
    /* PRODUCT PAGE */
    .filter-btn { padding: 14px 16px; font-size: .88rem; }
  
    /* INDUSTRIES PAGE */
    .intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .intro-img { height: 280px; }
  
    .ind-grid { grid-template-columns: 1fr; }
    .ind-card-img { width: 130px; }
  
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .process-steps::before { display: none; }
  
    /* CONTACT PAGE */
    .quick-strip-inner { grid-template-columns: 1fr; }
    .quick-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
    .quick-item:last-child { border-bottom: none; }
  
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .enquiry-form-box { padding: 28px 24px; }
  
    .faq-grid { grid-template-columns: 1fr; }
  
    /* SOLUTIONS TABLE */
    .solutions-table thead th,
    .solutions-table tbody td { padding: 12px 14px; font-size: .85rem; }
  }
  
  
  /* ============================================
     480px — MOBILE
     ============================================ */
  @media (max-width: 480px) {
  
    /* HEADER */
    .nav-inner { padding: 0 16px; height: 60px; }
    .logo-text .t1 { font-size: 1.1rem; }
    .logo-img { width: 36px; height: 36px; }
  
    /* HERO */
    .hero { margin-top: 60px; }
    .hero-inner { padding: 50px 16px; gap: 32px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .hero-stats { gap: 20px; }
    .hero-stat .num { font-size: 1.6rem; }
    .hero-visual { grid-template-columns: 1fr; }
    .hero-card:first-child { flex-direction: column; text-align: center; }
  
    /* FEATURES STRIP */
    .features-strip-inner { flex-wrap: wrap; }
    .feature-pill {
      flex: 0 0 50%;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,.08);
      padding: 20px 14px;
    }
    .feature-pill:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  
    /* PRODUCTS */
    .products-grid { grid-template-columns: 1fr; }
    .product-card.featured { grid-column: span 1; }
    .product-thumb { height: 180px; }
    .product-footer { flex-direction: column; align-items: stretch; }
    .product-enquire { justify-content: center; }
    .product-more { text-align: center; }
  
    /* ABOUT */
    .about-visual { height: 260px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
  
    /* WHY */
    .why-grid { grid-template-columns: 1fr; }
  
    /* INDUSTRIES (home) */
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
  
    /* CONTACT (home) */
    .contact-form { padding: 24px 20px; }
  
    /* FOOTER */
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand p { font-size: .85rem; }
  
    /* ABOUT PAGE */
    .stats-bar-inner { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
    .stat-item:last-child { border-bottom: none; }
  
    .page-hero { padding: 60px 0 50px; }
    .page-hero h1 { font-size: 2.2rem; }
  
    .who-img-box { height: 240px; }
    .who-badge { padding: 12px 14px; }
    .who-badge img { width: 32px; height: 32px; }
  
    .mvv-card { padding: 26px 20px; }
  
    .facility-grid { grid-template-columns: 1fr; }
    .facility-img:first-child { grid-column: span 1; height: 220px; }
    .facility-img { height: 180px; }
  
    .values-grid { grid-template-columns: 1fr; }
  
    /* CTA BANNER */
    .cta-btns { flex-direction: column; align-items: center; }
    .btn-white, .btn-dark { width: 100%; text-align: center; }
  
    /* PRODUCT PAGE */
    .filter-btn { padding: 12px 12px; font-size: .82rem; }
    .product-card.featured .product-thumb { height: 180px; }
    .custom-strip-inner { flex-direction: column; text-align: center; }
    .btn-orange { width: 100%; text-align: center; }
  
    /* INDUSTRIES PAGE */
    .ind-card { flex-direction: column; }
    .ind-card-accent { width: 100%; height: 5px; }
    .ind-card-img { width: 100%; height: 160px; }
    .ind-card-body { padding: 18px 18px; }
  
    .process-steps { grid-template-columns: 1fr; gap: 32px; }
  
    /* CONTACT PAGE */
    .enquiry-form-box { padding: 24px 18px; }
    .form-row { grid-template-columns: 1fr; }
    .map-wrap { height: 300px; }
    .radio-group { flex-direction: column; }
    .radio-opt { justify-content: flex-start; }
  
    /* SOLUTIONS TABLE */
    .solutions-table thead th,
    .solutions-table tbody td { padding: 10px 10px; font-size: .8rem; }
    .solutions-table tbody td:first-child { font-size: .88rem; }
  }
  
  
  /* ============================================
     320px — SMALL MOBILE
     ============================================ */
  @media (max-width: 320px) {
  
    /* HEADER */
    .logo-text .t1 { font-size: .95rem; letter-spacing: 1px; }
    .logo-text .t2 { font-size: .62rem; }
    .logo-img { width: 30px; height: 30px; }
    .mobile-drawer { width: 260px; }
  
    /* HERO */
    .hero-inner { padding: 40px 14px; }
    .hero-tag { font-size: .75rem; padding: 5px 12px; }
    .hero-stat .num { font-size: 1.4rem; }
    .hero-stats { gap: 14px; }
  
    /* FEATURES STRIP */
    .feature-pill { flex: 0 0 100%; border-right: none; }
    .feature-pill:nth-child(odd) { border-right: none; }
  
    /* PRODUCTS */
    .product-body { padding: 16px 16px 20px; }
    .product-body h3 { font-size: 1.1rem; }
    .product-specs { padding: 12px; }
    .product-specs li { font-size: .8rem; }
  
    /* ABOUT */
    .about-visual { height: 220px; }
    .about-stat-box .n { font-size: 1.3rem; }
    .about-stats { grid-template-columns: 1fr 1fr; }
  
    /* WHY */
    .why-card { padding: 24px 16px; }
  
    /* INDUSTRIES (home) */
    .industries-grid { grid-template-columns: 1fr; }
  
    /* CONTACT (home) */
    .contact-form { padding: 20px 14px; }
  
    /* FOOTER */
    .footer-main { padding: 36px 0 24px; }
    .footer-col h5 { font-size: .88rem; }
  
    /* PAGE HERO */
    .page-hero { padding: 50px 0 40px; }
    .page-hero h1 { font-size: 1.9rem; letter-spacing: 1px; }
    .page-hero p { font-size: .92rem; }
    .page-breadcrumb { font-size: .72rem; }
  
    /* ABOUT PAGE */
    .who-img-box { height: 200px; }
    .who-badge { bottom: 14px; left: 14px; padding: 10px 12px; gap: 8px; }
    .who-badge img { width: 28px; height: 28px; }
    .who-badge-text .t1 { font-size: .88rem; }
  
    .mvv-card { padding: 22px 16px; }
    .mvv-icon { width: 50px; height: 50px; }
    .mvv-icon img { width: 28px; height: 28px; }
  
    .facility-img:first-child { height: 180px; }
    .facility-img { height: 160px; }
  
    /* PRODUCT PAGE */
    .filter-btn { padding: 10px 10px; font-size: .78rem; letter-spacing: 0; }
  
    /* INDUSTRIES PAGE */
    .ind-card-body { padding: 14px 14px; }
    .ind-card-body h3 { font-size: 1rem; }
    .ind-card-body p { font-size: .82rem; }
    .ind-icon-box { width: 36px; height: 36px; }
    .ind-icon-box img { width: 20px; height: 20px; }
  
    .step-circle { width: 58px; height: 58px; }
    .step-circle img { width: 26px; height: 26px; }
    .process-step h4 { font-size: .9rem; }
    .process-step p { font-size: .8rem; }
  
    /* CONTACT PAGE */
    .enquiry-form-box { padding: 20px 14px; }
    .form-head h2 { font-size: 1.4rem; }
    .quick-item { padding: 20px 14px; }
    .quick-item-icon { width: 40px; height: 40px; }
    .quick-item-text .qv { font-size: .95rem; }
  
    .info-card { padding: 20px 16px; }
    .info-card-icon { width: 44px; height: 44px; }
  
    .faq-q span { font-size: .95rem; }
    .faq-a { font-size: .85rem; }
  
    /* SOLUTIONS TABLE */
    .solutions-table thead th { padding: 8px 8px; font-size: .75rem; }
    .solutions-table tbody td { padding: 8px 8px; font-size: .75rem; }
    .solutions-table tbody td:first-child { font-size: .8rem; }
  
    /* CTA BANNER */
    .cta-banner { padding: 50px 0; }
    .cta-banner h2 { font-size: 1.6rem; }
    .cta-banner p { font-size: .88rem; }
  }