/* ============================================================
   MCHAMMAH ENGINEERING — GLOBAL STYLESHEET
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --navy:       #0a1628;
  --navy-mid:   #132040;
  --navy-light: #1e3260;
  --gold:       #e8a020;
  --gold-light: #f5b93a;
  --white:      #ffffff;
  --off-white:  #f4f6f9;
  --gray:       #6c757d;
  --border:     #dee2e6;
  --text:       #1a1a2e;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
a { text-decoration: none; transition: color .2s; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: #b0bec5;
  font-size: 13px;
  padding: 7px 0;
}
.topbar a { color: #b0bec5; }
.topbar a:hover { color: var(--gold); }
.topbar .social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-size: 13px; color: #b0bec5;
  transition: background .2s, color .2s;
}
.topbar .social-icon:hover { background: var(--gold); color: var(--navy); }

/* ── NAVBAR ── */
.main-nav {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky; top: 0; z-index: 1000;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand .logo-ring {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold); flex-shrink: 0;
  overflow: hidden;
}
.nav-brand .logo-ring img {
  width: 82%; height: 82%; object-fit: contain;
}
.nav-brand .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--navy); letter-spacing: 0.06em; line-height: 1;
}
.nav-brand .brand-sub {
  font-size: 10px; color: var(--gray);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.navbar-nav .nav-link {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 600 !important; font-size: 15px !important;
  letter-spacing: 0.08em !important; text-transform: uppercase;
  color: var(--navy) !important;
  padding: 28px 13px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute;
  bottom: 0; left: 13px; right: 13px;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.btn-quote {
  background: var(--gold); color: var(--navy) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 11px 22px; border: 2px solid var(--gold);
  transition: all .25s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-quote:hover {
  background: transparent; color: var(--gold) !important;
  border-color: var(--gold);
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 13px 30px;
  border: 2px solid var(--gold); transition: all .25s; cursor: pointer;
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 13px 30px;
  border: 2px solid var(--navy); transition: all .25s; cursor: pointer;
}
.btn-navy:hover { background: transparent; color: var(--navy); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 13px 30px;
  border: 2px solid rgba(255,255,255,0.3); transition: all .25s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 70px 0 52px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(232,160,32,0.10) 0%, transparent 55%);
}
.page-header h1 {
  font-size: clamp(38px, 5vw, 64px); font-weight: 800;
  color: #fff; position: relative;
}
.page-header h1 span { color: var(--gold); }
.breadcrumb { position: relative; }
.breadcrumb-item a { color: #8899aa; }
.breadcrumb-item.active { color: var(--gold); }
.breadcrumb-item + .breadcrumb-item::before { color: #445566; }

/* ── SECTION UTILITIES ── */
.section-pad    { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-off         { background: var(--off-white); }
.bg-navy        { background: var(--navy); }
.bg-navy-mid    { background: var(--navy-mid); }
.text-gold      { color: var(--gold); }
.text-navy      { color: var(--navy); }

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.section-title {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800; color: var(--navy); line-height: 1.1;
}
.section-title span { color: var(--gold); }
.title-line {
  width: 54px; height: 4px;
  background: var(--gold); margin-top: 16px;
}
.title-line.center { margin: 16px auto 0; }

/* ── STATS ── */
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 12px; font-weight: 600;
  color: #8899aa; letter-spacing: 0.15em;
  text-transform: uppercase; margin-top: 6px;
}
.stat-num.dark { color: var(--navy); }
.stat-label.dark { color: var(--gray); }

/* ── SERVICE MINI CARD (homepage strip) ── */
.svc-mini {
  padding: 34px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background .25s; cursor: pointer;
}
.svc-mini::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--gold);
  transform: scaleX(0); transition: transform .3s;
}
.svc-mini:hover { background: var(--off-white); }
.svc-mini:hover::after { transform: scaleX(1); }
.svc-mini .s-icon { font-size: 36px; color: var(--navy); margin-bottom: 14px; }
.svc-mini h5 {
  font-size: 16px; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px;
}
.svc-mini p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.svc-mini .arrow { color: var(--gold); font-size: 18px; margin-top: 12px; }

/* ── PROJECT CARD ── */
.proj-card { position: relative; overflow: hidden; cursor: pointer; }
.proj-card img {
  width: 100%; height: 260px;
  object-fit: cover; transition: transform .5s;
}
.proj-card:hover img { transform: scale(1.06); }
.proj-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, transparent 55%);
  padding: 20px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.proj-card .cat {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}
.proj-card h5 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.proj-card .meta { font-size: 12px; color: #a8b8d0; }

/* ── SERVICE FULL CARD (services page) ── */
.svc-card {
  background: #fff; border: 1px solid var(--border);
  padding: 38px 30px; transition: all .3s;
  border-top: 4px solid transparent; height: 100%;
}
.svc-card:hover { border-top-color: var(--gold); box-shadow: 0 8px 30px rgba(10,22,40,0.1); }
.svc-card .s-icon { font-size: 42px; color: var(--navy); margin-bottom: 18px; display: block; }
.svc-card h4 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.svc-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }
.svc-card ul { margin-top: 14px; }
.svc-card ul li {
  padding: 5px 0; color: #555; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.svc-card ul li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0;
}

/* ── TEAM CARD ── */
.team-card {
  background: #fff; border: 1px solid var(--border);
  overflow: hidden; transition: all .3s;
}
.team-card:hover { box-shadow: 0 12px 40px rgba(10,22,40,0.1); transform: translateY(-4px); }
.team-card img { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.team-card .t-body { padding: 20px 22px; }
.team-card .t-role {
  font-size: 12px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 5px;
}
.team-card h5 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.team-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.team-social a {
  width: 32px; height: 32px;
  background: var(--off-white);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 14px;
  transition: background .2s, color .2s; margin-right: 6px;
}
.team-social a:hover { background: var(--gold); color: var(--navy); }

/* ── PRODUCT CARD ── */
.prod-card { background: #fff; border: 1px solid var(--border); overflow: hidden; transition: all .3s; height: 100%; }
.prod-card-link { display: block; text-decoration: none; color: inherit; }
.prod-card:hover { box-shadow: 0 8px 30px rgba(10,22,40,0.1); transform: translateY(-3px); }
.prod-card .img-wrap { overflow: hidden; }
.prod-card img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.prod-card:hover img { transform: scale(1.05); }
.prod-card .p-body { padding: 22px 22px; }
.prod-card .p-cat {
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 6px;
}
.prod-card h5 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.prod-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.prod-card .specs {
  background: var(--off-white); padding: 12px 14px;
  margin-top: 14px; font-size: 13px; color: #555;
}

/* ── GALLERY ── */
.filter-btn {
  background: transparent; border: 1px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 20px; cursor: pointer;
  transition: all .2s; color: var(--navy);
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.gal-item { position: relative; overflow: hidden; cursor: pointer; }
.gal-item img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s; display: block; }
.gal-item:hover img { transform: scale(1.08); }
.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay i { font-size: 36px; color: #fff; }

/* ── CONTACT ── */
.ci-card { background: var(--navy); padding: 40px 36px; height: 100%; }
.ci-card h4 { font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ci-card > p { color: #8899aa; font-size: 14px; margin-bottom: 32px; }
.ci-row { display: flex; gap: 14px; margin-bottom: 26px; }
.ci-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--gold);
}
.ci-label { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.ci-value { font-size: 14px; color: #b0bec5; margin-top: 2px; line-height: 1.5; }
.cf-wrap { background: #fff; border: 1px solid var(--border); padding: 40px 36px; height: 100%; }
.cf-wrap h4 { font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cf-wrap > p { color: var(--gray); font-size: 14px; margin-bottom: 28px; }
.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1px solid var(--border); border-radius: 0;
  padding: 11px 14px; font-size: 14px;
  font-family: 'Barlow', sans-serif;
  transition: border-color .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.15);
  outline: none;
}
.btn-submit {
  width: 100%; background: var(--gold); color: var(--navy);
  border: 2px solid var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 40px; cursor: pointer; transition: all .25s;
}
.btn-submit:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── CTA BAND ── */
.cta-band { background: var(--navy); padding: 72px 0; position: relative; overflow: hidden; }
.cta-band::after {
  content: ''; position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  border: 70px solid rgba(232,160,32,0.07);
}

/* ── VALUE ITEM ── */
.val-item { display: flex; gap: 16px; margin-bottom: 22px; }
.val-icon {
  flex-shrink: 0; width: 46px; height: 46px;
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--navy);
}
.val-item strong { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); }
.val-item p { font-size: 14px; color: var(--gray); margin: 3px 0 0; line-height: 1.6; }

/* ── ABOUT IMAGE BLOCK ── */
.about-img-wrap { position: relative; padding-bottom: 36px; padding-right: 36px; }
.about-img-wrap img { box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.exp-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--gold); color: var(--navy);
  padding: 22px 26px; text-align: center;
}
.exp-badge .e-num { font-family: 'Barlow Condensed', sans-serif; font-size: 46px; font-weight: 800; line-height: 1; }
.exp-badge .e-txt { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── FOOTER ── */
footer { background: #060d1a; color: #7a8fa0; padding: 64px 0 0; }
footer h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700;
  color: #fff; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 20px;
}
footer a { color: #7a8fa0; font-size: 14px; display: block; margin-bottom: 9px; transition: color .2s; }
footer a:hover { color: var(--gold); }
.footer-icon-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: inline-flex; align-items: center; justify-content: center;
  color: #7a8fa0; font-size: 15px; margin-right: 6px; transition: all .2s;
}
.footer-icon-link:hover { background: var(--gold); color: var(--navy); }
.footer-newsletter { display: flex; }
.footer-newsletter input {
  flex: 1; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05); color: #fff;
  padding: 10px 14px; font-size: 13px; outline: none;
  font-family: 'Barlow', sans-serif;
}
.footer-newsletter input::placeholder { color: #556677; }
.footer-newsletter button {
  background: var(--gold); color: var(--navy); border: none;
  padding: 10px 18px; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em;
  cursor: pointer; transition: background .2s;
}
.footer-newsletter button:hover { background: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px; padding: 20px 0;
  font-size: 13px; color: #556677;
}
.footer-bottom a { color: #556677; font-size: 13px; display: inline; }
.footer-bottom a:hover { color: var(--gold); }

/* ── ABOUT+STATS (homepage) — real workshop photo, gradients into
   var(--navy-mid) on the left so the text column stays fully readable ── */
.about-bg {
  background:
    linear-gradient(90deg, var(--navy-mid) 0%, var(--navy-mid) 32%, rgba(19,32,64,0.75) 55%, rgba(19,32,64,0.4) 80%, rgba(19,32,64,0.25) 100%),
    url('../images/gallery/packaging-handling/belt-conveyor-01.jpg') center right / cover no-repeat;
}
@media (max-width: 767px) {
  .about-bg {
    background:
      linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-mid) 45%, rgba(19,32,64,0.7) 75%, rgba(19,32,64,0.45) 100%),
      url('../images/gallery/packaging-handling/belt-conveyor-01.jpg') center / cover no-repeat;
  }
}

/* ── HERO (homepage) ── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
/* Real workshop photography — 3 machines cross-fading behind the hero
   text (assets/js/main.js drives which .hero-slide has .active, so the
   prev/next arrows and autoplay share one code path). A navy gradient
   sits on top so the text column stays fully readable regardless of
   which photo is showing. */
.hero-slider { position: absolute; inset: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-1 { background-image: url('../images/gallery/thermal-processing/gari-roasting-machine-01.jpg'); }
.hero-slide-2 { background-image: url('../images/gallery/thermal-processing/dehydrator-01.jpg'); }
.hero-slide-3 { background-image: url('../images/gallery/mixing-cooking/cooking-kettle-01.jpg'); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.94) 0%, rgba(10,22,40,0.86) 38%, rgba(10,22,40,0.55) 62%, rgba(10,22,40,0.35) 100%);
}
.hero-slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s;
}
.hero-slider-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hero-slider-prev { left: 24px; }
.hero-slider-next { right: 24px; }
@media (max-width: 767px) {
  .hero-slider-nav { width: 38px; height: 38px; font-size: 15px; }
  .hero-slider-prev { left: 12px; }
  .hero-slider-next { right: 12px; }
}
@media (max-width: 767px) {
  .hero-overlay {
    background: linear-gradient(180deg, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.82) 45%, rgba(10,22,40,0.6) 100%);
  }
}
.hero-badge {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 18px; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 80px); font-weight: 800; color: #fff;
  line-height: 1.04; margin-bottom: 22px;
}
.hero h1 span { color: var(--gold); }
.hero p { font-size: 17px; color: #9ab0c8; max-width: 480px; line-height: 1.75; margin-bottom: 36px; }

/* ── TOAST ── */
.toast-msg {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--navy); color: #fff;
  padding: 15px 26px;
  border-left: 4px solid var(--gold);
  font-size: 14px; z-index: 9999;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transform: translateX(160%); transition: transform .38s;
}
.toast-msg.show { transform: translateX(0); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s, transform .6s; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ── TRUST CAROUSEL (auto-scrolling logo strip) ── */
.trust-carousel { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.trust-track {
  display: flex; align-items: center; gap: 14px; width: max-content;
  animation: trust-scroll 28s linear infinite;
}
.trust-carousel:hover .trust-track { animation-play-state: paused; }
.trust-item {
  background: #fff; border: 1px solid var(--border);
  height: 84px; padding: 12px 26px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item img { max-width: 160px; max-height: 60px; object-fit: contain; }
.trust-item-text { font-size: 13px; font-weight: 600; color: var(--navy); white-space: nowrap; }
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; }
}

/* ── PRELOADER ── */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  opacity: 1; visibility: visible;
  transition: opacity .5s ease, visibility .5s ease;
  animation: preloader-force-hide 0s 3s forwards;
}
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-ring {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(232,160,32,0.08);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  animation: preloader-pulse 1.1s ease-in-out infinite;
}
.preloader-ring img { width: 66%; height: 66%; object-fit: contain; }
@keyframes preloader-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(232,160,32,0.35); }
  50% { transform: scale(1.12); box-shadow: 0 0 0 10px rgba(232,160,32,0); }
}
@keyframes preloader-force-hide {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* ── LIGHTBOX ── */
.lightbox-dialog {
  border: 0; padding: 0; margin: auto;
  width: 50vw; max-width: 50vw;
  background: var(--navy); color: #fff; border-radius: 0;
}
.lightbox-img {
  width: 100%; height: auto; max-height: 70vh;
  object-fit: contain; display: block; margin: 0 auto;
}

/* ── WELCOME MODAL (first-time visitors, CEO message) ── */
.welcome-modal-content { border-radius: 0; border: none; overflow: hidden; }
.welcome-modal-img {
  background: var(--navy);
  min-height: 240px;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.welcome-modal-img i { font-size: 100px; color: var(--gold); opacity: .35; }
.welcome-modal-body { padding: 48px 44px; }
.welcome-modal-quote { border-left: 4px solid var(--gold); padding: 4px 0 4px 24px; margin: 18px 0 0; }
.welcome-modal-quote p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 600; color: var(--navy); line-height: 1.5; margin-bottom: 14px;
}
.welcome-modal-quote cite {
  display: block; font-style: normal;
  font-size: 13px; color: var(--gray); font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.welcome-modal-close { position: absolute; top: 16px; right: 16px; z-index: 5; }
@media (max-width: 767.98px) {
  .welcome-modal-img { min-height: 140px; }
  .welcome-modal-body { padding: 36px 24px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .navbar-nav .nav-link { padding: 12px 4px !important; }
  .navbar-nav .nav-link::after { display: none; }
  .hero { min-height: 80vh; }
}
@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .exp-badge { position: static; display: inline-block; margin-top: 16px; }
  .about-img-wrap { padding: 0; }
  .ci-card, .cf-wrap { padding: 28px 20px; }
  .lightbox-dialog { width: 96vw; max-width: 96vw; }
}
