:root {
  --navy: #0B1F3A;
  --navy-mid: #112847;
  --navy-light: #1a3a5c;
  --orange: #F47B20;
  --orange-light: #FF9240;
  --orange-dim: rgba(244,123,32,0.12);
  --white: #ffffff;
  --off-white: #F4F6F9;
  --gray: #8a97a8;
  --gray-light: #e2e8f0;
  --text-dark: #0B1F3A;
  --text-body: #3d5166;
}

/* Responsive nav */
.site-nav{background:var(--white);box-shadow:0 1px 0 rgba(10,20,30,0.04);position:sticky;top:0;z-index:60}
.site-nav .nav-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:14px 24px;gap:18px}
.logo{display:flex;align-items:center;gap:10px;text-decoration:none;color:var(--navy)}
.logo-img{width:180px;height:48px;object-fit:contain;border-radius:6px}

@media (max-width:880px){
  .logo-img{width:140px;height:auto}
}

@media (max-width:520px){
  .logo-img{width:110px;height:auto}
}
.logo-icon{width:48px;height:48px;display:flex;align-items:center;justify-content:center}
.logo-text-main{font-family:'Barlow Condensed',sans-serif;font-weight:700}
.logo-text-sub{font-size:12px;color:var(--gray)}
.nav-links{display:flex;gap:18px;align-items:center;list-style:none;margin:0;padding:0}
.nav-links a{color:var(--navy);text-decoration:none;padding:8px 10px;border-radius:6px}
.nav-cta{background:var(--orange);color:var(--white);padding:8px 12px}
.nav-toggle{display:none;background:none;border:0;padding:8px;border-radius:8px;cursor:pointer}
.nav-toggle .hamburger{display:block;width:26px;height:2px;background:var(--navy);position:relative;transition:background 300ms ease}
.nav-toggle .hamburger:before,.nav-toggle .hamburger:after{content:"";position:absolute;left:0;width:26px;height:2px;background:var(--navy);transition:transform 320ms cubic-bezier(.2,.9,.2,1), top 320ms cubic-bezier(.2,.9,.2,1), opacity 200ms}
.nav-toggle .hamburger:before{top:-8px}
.nav-toggle .hamburger:after{top:8px}
.nav-toggle.open .hamburger{background:transparent}
.nav-toggle.open .hamburger:before{transform:translateY(8px) rotate(45deg)}
.nav-toggle.open .hamburger:after{transform:translateY(-8px) rotate(-45deg)}

.mobile-nav{display:none}

@media (max-width:880px){
  .nav-links{display:none}
  .nav-toggle{display:block}
  .mobile-nav{display:block;position:absolute;left:0;right:0;top:64px;background:var(--white);box-shadow:0 8px 24px rgba(2,6,23,0.08);max-height:0;overflow:hidden;opacity:0;transition:max-height 380ms ease, opacity 300ms ease;padding:0}
  .mobile-nav.open{max-height:420px;opacity:1;padding:12px}
  .mobile-nav ul{list-style:none;margin:0;padding:0}
  .mobile-nav li{padding:10px 12px;border-bottom:1px solid rgba(10,20,30,0.04);opacity:0;transform:translateY(8px);transition:opacity 300ms ease, transform 300ms ease}
  .mobile-nav.open li{opacity:1;transform:none}
  .mobile-nav.open li:nth-child(1){transition-delay:0s}
  .mobile-nav.open li:nth-child(2){transition-delay:0.04s}
  .mobile-nav.open li:nth-child(3){transition-delay:0.08s}
  .mobile-nav.open li:nth-child(4){transition-delay:0.12s}
  .mobile-nav.open li:nth-child(5){transition-delay:0.16s}
  .mobile-nav a{display:block;color:var(--navy);text-decoration:none}
}

/* HERO BG GRID carousel placeholder */
.hero{position:relative;overflow:hidden}
.hero-bg-grid{position:absolute;inset:0;z-index:0;display:block}
.hero-bg-grid img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity 900ms ease-in-out}
.hero-bg-grid img.active{opacity:1}
.hero-inner{position:relative;z-index:5;margin: 0 auto;max-width:1200px}

/* Small visual adjustments to ensure nav sits above hero */
header, .site-nav{position:relative}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  border-bottom: 2px solid var(--orange);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Allow content to wrap so the topbar tag doesn't overflow */
.topbar-inner { flex-wrap: wrap; }
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #b0bec5;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.topbar-link:hover { color: var(--orange); }
.topbar-link svg { flex-shrink: 0; }
.topbar-tag {
  font-size: 12px;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Prevent the tag from escaping the layout */
.topbar-tag { flex: 0 1 280px; text-align: right; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 520px) {
  .topbar-tag { flex: 1 1 100%; text-align: center; white-space: normal; margin-top: 8px; }
}

/* ── NAVBAR ── */
nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(11,31,58,0.10);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-text-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover {
  background: var(--off-white);
  color: var(--navy);
}
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,123,32,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,123,32,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-bg-glow {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,123,32,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
}
.hero-inner:not(.row){
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
  margin-top: 2rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}
.hero-headline span { color: var(--orange); }
.hero-desc {
  font-size: 16px;
  color: #8eaac5;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.35s;
}
.hero-inner:not(.row) {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 2;
  width: 100%;
}
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: 2px solid var(--orange);
}
.btn-primary:hover { background: var(--orange-light); border-color: var(--orange-light); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 26px;
  margin-bottom: 35px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.65s;
}
.stat { }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* hero right panel */
.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  opacity: 0;
  animation: fadeRight 0.7s ease forwards 0.4s;
}
.hero-panel-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.quick-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quick-cat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.quick-cat:hover {
  background: rgba(244,123,32,0.10);
  border-color: rgba(244,123,32,0.3);
  transform: translateY(-2px);
}
.quick-cat-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.quick-cat-name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}
.dispatch-badge {
  margin-top: 16px;
  background: rgba(244,123,32,0.12);
  border: 1px solid rgba(244,123,32,0.25);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dispatch-icon { font-size: 20px; }
.dispatch-text { font-size: 13px; color: var(--orange-light); font-weight: 500; }
.dispatch-sub { font-size: 11px; color: var(--gray); margin-top: 2px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
  padding: 18px 0;
}
.trust-inner {
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1200px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
}
.trust-icon { color: var(--orange); font-size: 18px; }
.trust-div { width: 1px; height: 20px; background: var(--gray-light); }

/* ── SECTIONS COMMON ── */
.section { padding: 80px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 580px;
}

/* ── PRODUCTS ── */
.products-section { background: var(--white); }
.products-header { margin-bottom: 48px; }
.products-grid:not(.row) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  padding: 24px 20px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.product-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(244,123,32,0.12);
  transform: translateY(-4px);
}
.product-card:hover::before { transform: scaleX(1); }
.product-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 6px;
}
.product-arrow {
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s;
}
.product-card:hover .product-arrow { opacity: 1; }

/* ── WHY US ── */
.why-section { background: var(--navy); position: relative; overflow: hidden; }
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,123,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,123,32,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.why-inner { position: relative; z-index: 1; }
.why-grid:not(.row) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-left .section-title { color: var(--white); }
.why-left .section-desc { color: #8eaac5; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.25s;
}
.why-card:hover {
  background: rgba(244,123,32,0.08);
  border-color: rgba(244,123,32,0.3);
}
.why-card-icon { font-size: 30px; margin-bottom: 14px; }
.why-card-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.why-card-desc { font-size: 13px; color: #7a9ab8; line-height: 1.6; }

/* ── INDUSTRIES ── */
.industries-section { background: var(--off-white); }
.industries-grid:not(.row) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.industry-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  border: 1.5px solid var(--gray-light);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.industry-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(244,123,32,0.10);
  transform: translateY(-3px);
}
.industry-icon { font-size: 40px; margin-bottom: 16px; }
.industry-name { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.industry-desc { font-size: 13px; color: var(--text-body); line-height: 1.6; }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--white); }
.about-grid:not(.row) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(244,123,32,0.12);
}
.about-name-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 20px;
}
.about-founder-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.about-founder-role { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.about-contact-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #8eaac5;
}
.about-contact-icon { color: var(--orange); font-size: 16px; }
.about-right .section-desc { margin-bottom: 24px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}
.about-feature:last-child { border-bottom: none; }
.about-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 6px;
  flex-shrink: 0;
}
.about-feature-text { font-size: 14px; color: var(--text-body); line-height: 1.6; }
.about-feature-text strong { color: var(--navy); font-weight: 600; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--orange);
  padding: 60px 0;
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text-sub { font-size: 15px; color: rgba(255,255,255,0.8); }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-btn-white {
  background: var(--white);
  color: var(--orange);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.cta-btn-white:hover { background: var(--navy); color: var(--white); }
.cta-btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.cta-btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
footer {
  background: #060e1c;
  padding: 60px 0 0;
}
.footer-inner:not(.row) {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* Footer tweaks: ensure spacing and wrap on small screens */
.footer-inner { gap: 18px; margin: 0 auto; max-width: 1200px; }
.footer-col-title { font-weight: 700; margin-bottom: 8px; }
.footer-bottom .footer-copy { font-size: 13px; color: var(--gray); }
.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.footer-brand-tag {
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-desc { font-size: 13px; color: #4a6278; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: #4a6278;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.fc-icon { color: var(--orange); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.fc-text { font-size: 13px; color: #4a6278; line-height: 1.5; }
.fc-text a { color: #4a6278; text-decoration: none; }
.fc-text a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 12px; color: #2d4156; }
.footer-copy span { color: #3d5166; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  z-index: 999;
  transition: all 0.2s;
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.6); }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Responsive tweaks */
@media (max-width: 880px) {
  .hero-inner:not(.row) { grid-template-columns: 1fr; padding: 60px 20px; }
  .hero { min-height: 560px; }
  .hero-panel { order: 2; }
  .nav-inner { height: 64px; }
  .industries-grid:not(.row) { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .nav-links { display: none; }
  .hero { min-height: 520px; }
  .industries-grid:not(.row) { grid-template-columns: 1fr; }
  .products-grid:not(.row) { grid-template-columns: 1fr; }
}

/* Ensure visible gaps when using Bootstrap .row gutters — add fallback gap for modern browsers */
.products-grid.row > .product-card,
.industries-grid.row > .industry-card {
  /* keep Bootstrap column padding in case gutters are missing */
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Ensure desktop nav-links are hidden on small screens even if other rules appear later */
@media (max-width: 880px) {
  nav .nav-inner .nav-links { display: none !important; }
}

.h-100p{
    height: 100%;
}

.about-right{
    padding-left: 2rem;
}