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

:root {
  --navy: #000080;
  --navy-dark: #00004d;
  --navy-light: #2a3d8f;
  --navy-pale: #e6e9f5;
  --white: #FFFFFF;
  --text: #1C1C1C;
  --text-mid: #444444;
  --text-light: #777777;
  --border: #d6dcf0;
  --bg-section: #F5F7FC;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--navy); }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  padding: 7px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar-left, .topbar-right { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,128,0.10);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 98px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-box {
  width: 44px; height: 44px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 18px;
  color: #fff;
  border-radius: 6px;
  flex-shrink: 0;
}
.logo-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px; color: var(--navy); line-height: 1.1; }
.logo-sub { font-size: 9px; font-weight: 600; color: var(--text-light); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 6px; align-items: center; list-style: none; }
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); background: var(--navy-pale); }
.nav-links .nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 9px 20px;
}
.nav-links .nav-cta:hover { background: var(--navy-dark) !important; }

/* ── DROPDOWN MENUS ── */
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 5px;
}
.nav-item > a::after {
  content: '';
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 2px;
  transition: transform 0.2s;
}
.dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  min-width: 230px;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,128,0.16);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1000;
  list-style: none;
}
.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-item:hover > a::after { transform: rotate(225deg) translateY(1px); }
.dropdown-menu li { position: relative; }
.dropdown-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--text-mid);
  border-radius: 6px;
  white-space: nowrap;
}
.dropdown-menu a::after { display: none; content: none; border: none; }
.dropdown-menu a:hover { background: var(--navy-pale); color: var(--navy); }

/* Nested submenu (Flanges -> sub-types) */
.has-submenu > a::after {
  display: inline-block;
  content: '';
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-left: 8px;
  flex-shrink: 0;
}
.submenu {
  position: absolute;
  top: -8px; left: 100%;
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,128,0.16);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.2s ease;
  list-style: none;
  max-height: 360px;
  overflow-y: auto;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1; visibility: visible; transform: translateX(0);
}
.submenu a { font-size: 12.5px; padding: 8px 12px; }

/* ── MOBILE DROPDOWN/ACCORDION ── */
.mobile-menu .has-mobile-sub > .m-sub-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
}
.mobile-menu .m-sub-toggle::after {
  content: '';
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.mobile-menu .has-mobile-sub.open > .m-sub-toggle::after { transform: rotate(225deg); }

.mobile-submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 12px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}
.has-mobile-sub.open > .mobile-submenu {
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-submenu a {
  display: block;
  font-size: 13.5px;
  padding: 10px 16px;
  border-bottom: 1px solid #f5f5f5;
  white-space: normal;
}
.mobile-submenu .has-mobile-sub2 > .m-sub-toggle2 {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
}
.m-sub-toggle2::after {
  content: '';
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.has-mobile-sub2.open > .m-sub-toggle2::after { transform: rotate(225deg); }
.mobile-subsubmenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 14px;
  display: flex;
  flex-direction: column;
}
.has-mobile-sub2.open > .mobile-subsubmenu { max-height: 700px; }
.mobile-subsubmenu a {
  display: block;
  font-size: 13px;
  color: #999;
  padding: 8px 16px;
  border-bottom: none;
  white-space: normal;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  display: none;
  position: sticky;
  top: 100px; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 998;
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu a:hover { color: var(--navy); background: var(--navy-pale); }
.mobile-menu .m-cta { background: var(--navy); color: #fff !important; border: none; margin-top: 8px; text-align: center; }

/* --- INLINE CENTERED PLUS BUTTON --- */
.inline-plus-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin: 30px auto; /* The "auto" here perfectly centers it horizontally */

  background-color: #ffffff; /* White background */
  color: var(--navy); /* Navy plus icon */
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;

  box-shadow: 0 4px 12px rgba(0,0,128,0.08);
  transition: all 0.25s ease;
}

.inline-plus-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,128,0.15);
  border-color: var(--navy);
}

.inline-plus-btn svg {
  width: 20px;
  height: 20px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, var(--navy-pale) 100%);
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  right: -80px; top: -80px;
  width: 560px; height: 560px;
  background: var(--navy);
  opacity: 0.06;
  border-radius: 50%;
}
.hero-bg-shape2 {
  position: absolute;
  right: 60px; bottom: -120px;
  width: 320px; height: 320px;
  background: var(--navy);
  opacity: 0.08;
  border-radius: 50%;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.20;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy);
  color: #FFFFFF;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.hero-badge::before { content: '●'; font-size: 8px; color: #fff; }
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-title span { color: var(--navy); display: block; }
.hero-desc { color: var(--text-mid); font-size: 14px; line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-navy {
  background: var(--navy); color: #fff;
  padding: 13px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; display: inline-block;
  transition: all 0.25s; border: 2px solid var(--navy);
  white-space: nowrap;
}
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,128,0.3); }
.btn-outline {
  background: #fff; color: var(--navy);
  padding: 13px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; display: inline-block;
  transition: all 0.25s; border: 2px solid var(--navy);
  white-space: nowrap;
}
.btn-outline:hover { background: var(--navy-pale); transform: translateY(-2px); }

.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,128,0.08);
  text-align: center;
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-light); font-weight: 600; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px; }

.section { padding: 80px 24px; overflow-x: hidden; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.bg-white { background: #fff; }
.bg-pale { background: var(--bg-section); }
.bg-navy { background: var(--navy); color: #fff; }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 12px;
}
.tag::before { content: ''; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }
.bg-navy .tag { color: #fff; }
.bg-navy .tag::before { background: #fff; }

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800; line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
h2 .hl { color: var(--navy); }
.bg-navy h2 { color: #fff; }
.bg-navy h2 .hl { color: #cfd6f7; }
.section-desc { color: var(--text-mid); max-width: 600px; margin-bottom: 40px; font-size: 15px; }
.bg-navy .section-desc { color: #dfe3f7; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── PRODUCTS SECTION ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(0,0,128,0.06);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,128,0.18);
  border-color: var(--navy);
}
.product-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-pale);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-body p {
  color: var(--text-mid);
  font-size: 13.5px;
  margin-bottom: 18px;
  flex: 1;
}
.product-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--navy);
}
.product-link::after { content: '→'; transition: transform 0.25s; }
.product-card:hover .product-link::after { transform: translateX(4px); }

/* ── ABOUT ── */
.about-grid { display: grid; gap: 48px; align-items: start; }
.about-text p { color: var(--text-mid); margin-bottom: 16px; }
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.mv-card {
  background: var(--navy-pale, #f0f1fa);
  border: 1px solid var(--border, #e0e0ec);
  border-radius: 12px;
  padding: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mv-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.mv-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.mv-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy, #1a1a8c);
  margin-bottom: 8px;
}

.mv-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ── APPLICATIONS / INDUSTRIES ── */
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.app-item {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  transition: all 0.25s;
}
.app-item:hover { border-color: var(--navy); background: var(--navy-pale); }
.app-num { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; color: var(--navy); opacity: 0.4; min-width: 36px; }
.app-text { font-size: 13px; color: var(--text-mid); font-weight: 500; }

/* ── CITIES / COUNTRIES ── */
.city-grid, .country-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.city-chip, .country-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all 0.2s;
}
.city-chip:hover, .country-chip:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.bg-navy .city-chip, .bg-navy .country-chip {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.bg-navy .city-chip:hover, .bg-navy .country-chip:hover {
  background: #fff;
  color: var(--navy);
}

/* ── PACKAGING & DELIVERY ── */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pkg-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
}
.pkg-card:hover { border-color: var(--navy); box-shadow: 0 6px 20px rgba(0,0,128,0.12); }
.pkg-icon { font-size: 32px; margin-bottom: 12px; }
.pkg-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.pkg-val { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── CTA / NEED CUSTOM SOLUTION ── */
.cta-box {
  background: var(--navy);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}
.cta-box h2 { color: #fff; }
.cta-box p { color: #dfe3f7; max-width: 640px; margin: 0 auto 28px; }
.cta-box .hero-btns { justify-content: center; }
.cta-box .btn-outline { background: transparent; color: #fff; border-color: #fff; }
.cta-box .btn-outline:hover { background: rgba(255,255,255,0.12); }
.cta-box .btn-navy { background: #fff; color: var(--navy); border-color: #fff; }
.cta-box .btn-navy:hover { background: var(--navy-pale); }

/* ── CONTACT / GET IN TOUCH ── */

.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}
.contact-item .info-icon { color: var(--navy); font-size: 20px; }
.contact-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 13px; color: var(--text-mid); text-decoration: none; }
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,128,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
.contact-form label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 6px; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--navy);
}
.contact-form button.submit-btn {
  background: var(--navy); color: #fff;
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  border: none; cursor: pointer;
  transition: all 0.25s; width: 100%;
}
.contact-form button.submit-btn:hover { background: var(--navy-dark); }

/* --- SCROLL TO TOP BUTTON --- */
#scrollToTopBtn {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px); /* Pushed down to hide initially */
  opacity: 0;
  visibility: hidden;
  background-color: var(--white);
  color: var(--navy);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,128,0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9998; /* Just below your WhatsApp button's z-index */
}

/* Class added by JavaScript when scrolling down */
#scrollToTopBtn.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

#scrollToTopBtn:hover {
  background-color: var(--navy-pale);
  box-shadow: 0 6px 24px var(--navy);
  transform: translateX(-50%) translateY(-4px); /* Slight hover bounce */
}

#scrollToTopBtn svg {
  width: 24px;
  height: 24px;
}

/* ── FOOTER STYLES ── */
footer {
  background: var(--navy-dark);
  color: #ccc;
  padding: 56px 24px 24px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; /* 4 Columns */
  gap: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: #b8bfe6;
  line-height: 1.7;
  margin-top: 14px;
}

.footer-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #FFFFFF;
}

.footer-logo-sub {
  font-size: 9px;
  color: #9aa3d6;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.f-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.f-col a {
  display: block;
  color: #b8bfe6;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.f-col a:hover {
  color: #ffffff;
}

/* ── HORIZONTAL CONTACT ROW ── */
.f-horizontal-bar {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}

/* Renamed to avoid white box conflict */
.f-contact-text {
  font-size: 13px;
  color: #b8bfe6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.f-contact-text strong {
  color: #ffffff;
  font-weight: 600;
}

.f-contact-text a {
  color: #b8bfe6;
  text-decoration: none;
  transition: color 0.2s;
}

.f-contact-text a:hover {
  color: #ffffff;
}

/* ── FOOTER BOTTOM ── */
.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #8b93c9;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── FOOTER RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .f-horizontal-bar { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .phone-mobile-stack {
    flex-direction: column; /* Stacks the items vertically */
    gap: 8px; /* Adds spacing between the stacked numbers */
  }
  .hide-mobile {
    display: none; /* Hides the "|" separators on mobile */
  }
}

/* --- HORIZONTAL CONTACT BAR (PLAIN TEXT OVERRIDES) --- */
.horizontal-contact {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px; /* Spacing between the text items */
}

.horizontal-contact .contact-item {
  background: transparent !important; /* Removes the white box */
  padding: 0 !important; /* Removes box padding */
  border-radius: 0 !important; /* Removes rounded corners */
  box-shadow: none !important;
  font-size: 13px;
  color: #b8bfe6 !important; /* Matches footer text color */
  display: flex;
  align-items: center;
  gap: 8px;
}

.horizontal-contact .contact-item strong {
  color: #ffffff !important;
  font-weight: 600;
}

.horizontal-contact .contact-item a {
  color: #b8bfe6 !important;
  text-decoration: none;
  transition: color 0.2s;
}

.horizontal-contact .contact-item a:hover {
  color: #ffffff !important;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .horizontal-contact {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}

/* ── WHATSAPP FLOAT BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: all 0.3s;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-16px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-l.visible { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-r.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid, .country-grid { grid-template-columns: repeat(4, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { font-size: 11px; justify-content: center; text-align: center; }
  .topbar-right { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 60px; text-align: center; }
  .hero-desc { margin: 0 auto 28px; }
  .hero-btns { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .app-grid { grid-template-columns: 1fr 1fr; }
  .city-grid, .country-grid { grid-template-columns: repeat(3, 1fr); }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-num { font-size: 26px; }
  .app-grid { grid-template-columns: 1fr 1fr; }
  .city-grid, .country-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-navy, .btn-outline { width: 100%; text-align: center; }
  .cta-box { padding: 40px 24px; }
}





/* ============================================================
   NEW CSS — only present on inner/product pages (e.g. Hub Flanges)
   Append this block to your shared css/style.css
   ============================================================ */

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: 36px 24px;
  background: var(--navy);
  text-align: center;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.breadcrumb {
  display: flex; justify-content: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: #cfd6f7;
  margin-bottom: 10px;
}
.breadcrumb a { color: #ffffff; text-decoration: none; }
.breadcrumb span { color: #9aa3d6; }

/* ── CONTENT SECTIONS ── */
.content-block { max-width: 1000px; margin: 0 auto; }
.content-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  margin-top: 40px;
}
.content-block h2:first-child { margin-top: 0; }
.content-block p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 15px;
}
.content-block ol, .content-block ul {
  color: var(--text-mid);
  margin: 0 0 16px 0;
  padding-left: 22px;
}
.content-block li { margin-bottom: 10px; font-size: 15px; }

/* product image + description split */
.product-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.product-feature-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,128,0.12);
  border: 1px solid var(--border);
}
.product-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-feature-text h2 { margin-top: 0; }
.product-feature-text p { color: var(--text-mid); }

/* data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 32px;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.data-table th, .data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--text-mid);
}
.data-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.data-table td:first-child, .data-table th:first-child {
  font-weight: 700;
  color: var(--navy);
  background: var(--navy-pale);
  white-space: nowrap;
}
.data-table th:first-child { background: var(--navy-dark); color: #fff; }
.data-table tr:last-child td { border-bottom: none; }
.data-table caption, .table-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 14px;
  color: var(--navy);
  background: var(--navy-pale);
  padding: 12px 18px;
  text-align: center;
}

/* simple grid table (other types / cities / countries reuse) */
.grid-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 16px 0 32px;
}
.grid-table .gt-cell {
  background: var(--navy-pale);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  padding: 12px 10px;
  border-radius: 8px;
  font-size: 13.5px;
}
.grid-table.cities .gt-cell {
  background: #fff;
  color: var(--text-mid);
  border: 1px solid var(--border);
  font-weight: 600;
}
.grid-table.countries .gt-cell {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 600;
}

/* ── RESPONSIVE (additions tied to the rules above) ── */
@media (max-width: 1024px) {
  .types-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .product-feature { grid-template-columns: 1fr; gap: 24px; }
  .grid-table { grid-template-columns: repeat(2, 1fr); }
  .data-table th, .data-table td { padding: 10px 12px; font-size: 13px; }
}

@media (max-width: 480px) {
  .types-grid { grid-template-columns: repeat(2, 1fr); }
}





