/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --red:    #c0392b;
  --gold:   #d4943a;
  --gold2:  #e8a84a;
  --bg:     #fff;
  --bg-off: #faf9f7;
  --text:   #333;
  --muted:  #666;
  --light:  #f5f5f5;
  --border: #e5e5e5;
  --shadow: 0 4px 24px rgba(0,0,0,0.09);
  --r: 10px;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background .3s, box-shadow .3s;
}
.nav-inner {
  display: flex; align-items: center; gap: 36px;
  padding: 20px 24px;
  max-width: 1160px; margin: 0 auto;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 7px; }
.logo-mark { color: var(--gold); font-size: 1rem; }
.logo-name {
  font-size: 1.35rem; font-weight: 700; color: #fff;
  letter-spacing: .02em; transition: color .3s;
}
.navbar.scrolled .logo-name { color: #222; }

/* Links */
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a {
  font-size: 0.87rem; font-weight: 500;
  color: rgba(255,255,255,.88); transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: #444; }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; transition: .3s; border-radius: 2px; }
.navbar.scrolled .hamburger span { background: #333; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 8px 24px 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 11px 0; border-bottom: 1px solid var(--border); font-size:.9rem; color:#333; font-weight:500; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('hero.jpg') center/cover no-repeat;
  animation: zoomHero 14s ease-in-out infinite alternate;
  background-position: top;
}
@keyframes zoomHero {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(60,20,10,.72) 0%, rgba(30,15,5,.55) 60%, rgba(180,100,20,.28) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px;
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform:none; } }

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700; color: #fff;
  line-height: 1.2; margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.82);
  margin-bottom: 32px; font-weight: 300;
}

/* Outline white button (matches image) */
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  padding: 11px 30px;
  border-radius: 30px;
  font-size: .88rem; font-weight: 500;
  transition: background .25s, border-color .25s;
}
.btn-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: #fff;
}

/* WhatsApp FAB */
.wa-fab {
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  z-index: 10;
  animation: waPulse 2.4s infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.75); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 80px 0 72px; }
.bg-offwhite { background: var(--bg-off); }

.sec-title {
  font-size: 1.7rem; font-weight: 700;
  color: #222; letter-spacing: .08em;
  text-align: center;
  margin-bottom: 48px;
  position: relative; display: inline-block; left: 50%; transform: translateX(-50%);
  padding-top: 40px;
}
.sec-title::after {
  content: '';
  display: block; width: 50px; height: 3px;
  background: var(--red);
  margin: 10px auto 0;
  border-radius: 3px;
}
.sec-title.center { display: block; left: 0; transform: none; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease var(--d,0s), transform .65s ease var(--d,0s); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-sec { background: #fff; }
.about-desc {
  text-align: center; max-width: 780px; margin: -28px auto 48px;
  font-size: .95rem; color: var(--muted); line-height: 1.8;
}

/* Founder Card */
.founder-card {
  display: flex;
  align-items: center;
  gap: 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  margin: -16px auto 52px;
  max-width: 780px;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--red));
  border-radius: var(--r) 0 0 var(--r);
}
.founder-img-wrap {
  flex-shrink: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(212,148,58,.25);
}
.founder-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.founder-info { flex: 1; }
.founder-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,148,58,.1);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 8px;
}
.founder-name {
  font-size: 1.35rem; font-weight: 700; color: #222;
  margin-bottom: 10px;
}
.founder-bio {
  font-size: .85rem; color: var(--muted); line-height: 1.75;
  margin-bottom: 16px;
}
.founder-socials { display: flex; gap: 10px; }
.f-soc {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; color: #555;
  transition: background .25s, border-color .25s, color .25s;
}
.f-soc.wa:hover  { background: #25D366; border-color: #25D366; color: #fff; }
.f-soc.email:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

@media (max-width: 600px) {
  .founder-card { flex-direction: column; text-align: center; padding: 28px 22px; gap: 20px; }
  .founder-card::before { width: 100%; height: 4px; top: 0; bottom: auto; left: 0; right: 0; border-radius: var(--r) var(--r) 0 0; }
  .founder-socials { justify-content: center; }
}

/* Stats row */
.stats-row {
  display: flex; gap: 24px; justify-content: center;
  margin-bottom: 52px; flex-wrap: wrap;
}
.stat-box {
  flex: 1; min-width: 160px; max-width: 220px;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-align: center; padding: 28px 20px;
  transition: box-shadow .3s, transform .3s;
}
.stat-box:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.s-num {
  font-size: 2rem; font-weight: 700; color: var(--gold);
  font-family: 'Poppins', sans-serif;
}
.s-lbl { font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* MVV cards */
.mvv-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mvv-card {
  background: var(--bg-off); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 24px;
  transition: box-shadow .3s, transform .3s;
}
.mvv-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.mvv-card h3 {
  font-size: 1rem; font-weight: 600; color: #222;
  margin-bottom: 12px;
}
.mvv-card p { font-size: .85rem; color: var(--muted); line-height: 1.75; }

/* ============================================================
   SCROLLING SECTIONS (Industries / Categories / Countries)
   ============================================================ */
.scroll-sec { padding-bottom: 48px; overflow: hidden; }
.scroll-sec .container { margin-bottom: 0; }
.scroll-sec .sec-title { margin-bottom: 36px; }

.scroll-wrap {
  overflow: hidden;
  width: 100%;
  padding: 4px 0 8px;
  cursor: grab;
}
.scroll-wrap:active { cursor: grabbing; }

.scroll-inner {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
  /* No CSS animation — pure JS RAF */
}

/* Cards base */
.s-card {
  flex: 0 0 260px;
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  transition: box-shadow .28s, transform .28s;
  display: flex;
  flex-direction: column;
}
.s-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.14); transform: translateY(-5px); }

.sc-img { height: 200px; overflow: hidden; flex-shrink: 0; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.s-card:hover .sc-img img { transform: scale(1.07); }

.sc-body {
  padding: 16px 16px 18px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sc-body.pin { text-align: left; }

.sc-icon { font-size: 1.6rem; margin-bottom: 8px; }
.sc-body h4 { font-size: .95rem; font-weight: 600; color: #222; margin-bottom: 6px; }
.sc-body p  { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* Country cards: larger image */
.cntry-card .sc-img { height: 180px; }
.cntry-card .sc-body { text-align: left; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-sec { background: var(--bg-off); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: start;
}

/* Process card - matches the bordered box in image */
.process-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 30px;
  box-shadow: var(--shadow);
}
.proc-heading {
  font-size: .9rem; font-weight: 700; color: var(--gold);
  letter-spacing: .05em; margin-bottom: 12px;
}
.proc-intro { font-size: .85rem; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.proc-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 18px;
}
.proc-list li {
  font-size: .84rem; color: #333;
  padding: 9px 12px;
  background: var(--bg-off);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
  position: relative; padding-left: 32px;
}
.proc-list li::before { content: '•'; position: absolute; left: 12px; color: var(--gold); font-weight: 700; }
.proc-footer { font-size: .8rem; font-style: italic; color: var(--muted); border-top: 1px solid var(--border); padding-top: 12px; }

/* Contact info box */
.contact-info {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 30px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 24px;
}
.ci-group h4 {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  color: #888; text-transform: uppercase; margin-bottom: 10px;
}
.ci-group p { font-size: .88rem; color: #444; margin-bottom: 6px; }

.soc-row { display: flex; gap: 10px; flex-wrap: wrap; }
.soc-ico {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  color: #555; transition: background .25s, border-color .25s, color .25s;
}
.soc-ico:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.soc-ico.wa:hover { background: #25D366; border-color: #25D366; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #1a1208; color: rgba(255,255,255,.75); }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px;
  padding: 56px 24px 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ft-logo { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.ft-logo .logo-name { color: #fff; font-size: 1.25rem; }
.ft-brand p { font-size: .83rem; line-height: 1.8; color: rgba(255,255,255,.5); }
.ft-col h5 {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold2); margin-bottom: 14px;
}
.ft-col a, .ft-col p {
  display: block; font-size: .86rem; color: rgba(255,255,255,.55);
  margin-bottom: 8px; transition: color .2s;
}
.ft-col a:hover { color: var(--gold2); }
.footer-btm { text-align: center; padding: 18px 24px; }
.footer-btm p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ============================================================
   ANIMATIONS / UTILITIES
   ============================================================ */
@keyframes scrollLTR {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollRTL {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .mvv-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 28px; }
  .hero-title { font-size: 2rem; }
  .mvv-row { grid-template-columns: 1fr; }
  .stats-row { gap: 14px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 36px 24px 28px; }
  .wa-fab { right: 12px; top: auto; bottom: 90px; transform: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .s-card { flex: 0 0 220px; }
  .sc-img { height: 145px; }
}