:root {
  --orange: #ff0000;
  --dark: #0d1b2e;
  --heading: #0d1b2e;
  --text: #5a6a7a;
  --light-bg: #f7f8fa;
}
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Barlow', sans-serif; color: var(--text); margin: 0; padding: 0; overflow-x: hidden; }
a { text-decoration: none; }
img { max-width: 100%; }


/* ========== PAGE HERO / BREADCRUMB ========== */
.page-hero {
  position: relative;
  height: 320px;
  background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 50, 0.72);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 14px;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.breadcrumb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}
.breadcrumb-wrap a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb-wrap a:hover { color: var(--orange); }
.breadcrumb-wrap .sep { color: var(--orange); }
.breadcrumb-wrap .current { color: var(--orange); }

/* ========== SECTION COMMONS ========== */
.section-pad { padding: 90px 0; }
.sec-label {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.sec-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--orange);
  flex-shrink: 0;
}
.sec-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 18px;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
}
.sec-description { color: var(--text); line-height: 1.8; margin-bottom: 24px; }

/* ========== ABOUT SECTION ========== */
.tracing-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f7f8fa;
  border-left: 4px solid var(--orange);
  padding: 18px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.tracing-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tracing-text h4 { font-size: 1rem; font-weight: 800; color: var(--heading); margin: 0 0 4px; }
.tracing-text p { font-size: .83rem; color: var(--text); margin: 0; }
.about-list { list-style: none; padding: 0; margin: 0 0 20px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--heading);
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.about-list li i { color: var(--orange); font-size: 1rem; }
.btn-primary-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 3px;
  transition: background .2s;
}
.btn-primary-o:hover { background: #ff0000; color: #fff; }

/* About Image Grid */
.about-img-grid { position: relative; }
.img-box-top {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
  height: 300px;
}
.img-box-top img { width: 100%; height: 100%; object-fit: cover; }
.exp-badge-rect {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--orange);
  color: #fff;
  padding: 14px 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
}
.exp-badge-rect .num { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.exp-badge-rect .lbl { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; text-align: center; opacity: .9; }
.img-box-bottom-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.img-box-bottom-row .img-thumb-left,
.img-box-bottom-row .img-thumb-right {
  border-radius: 4px;
  overflow: hidden;
  height: 180px;
}
.img-box-bottom-row img { width: 100%; height: 100%; object-fit: cover; }

/* ========== MARQUEE ========== */
.marquee-sec {
  background: var(--orange);
  padding: 0;
  overflow: hidden;
}
.marquee-inner-wrap { display: flex; overflow: hidden; }
.marquee-track {
  display: flex;
  animation: marquee-scroll 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.85);
  flex-shrink: 0;
}
.marquee-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  flex-shrink: 0;
}
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== PROCESS ========== */
.process-sec {
  background: var(--dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.process-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1540910419892-4a36d2c3266c?w=1600&q=60') center/cover no-repeat;
  opacity: .08;
}
.process-sec .sec-label { color: var(--orange); }
.process-sec .sec-heading { color: #fff; }
.process-intro { position: relative; z-index: 1; }
.process-grid { position: relative; z-index: 1; }
.process-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 3px;
  transition: background .2s;
  margin-top: 24px;
}
.process-btn:hover { background: #ff0000; color: #fff; }

.process-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  transition: all .3s;
}
.process-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.process-num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,.07);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  font-family: 'Barlow Condensed', sans-serif;
}
.process-num-label {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--orange);
  margin-bottom: 12px;
}
.process-card h4 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.process-card p { font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.7; margin: 0; }
.process-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 16px;
  letter-spacing: .06em;
}

/* ========== STATS ========== */
.stats-sec {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.stat-item { text-align: center; padding: 20px; }
.stat-num {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  font-family: 'Barlow Condensed', sans-serif;
}
.stat-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
  margin-top: 8px;
}
.stat-divider {
  border-right: 1px solid #eee;
}
@media(max-width:767px) { .stat-divider { border-right: none; border-bottom: 1px solid #eee; } }

/* ========== TEAM ========== */
.team-sec { padding: 90px 0; background: #f7f8fa; }
.team-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 10px 35px rgba(0,0,0,.12); }
.team-img { width: 100%; height: 280px; object-fit: cover; object-position: top; display: block; filter: grayscale(20%); transition: filter .3s; }
.team-card:hover .team-img { filter: grayscale(0); }
.team-body { padding: 20px 22px; position: relative; }
.team-body::before {
  content: '';
  position: absolute;
  top: 0; left: 22px; right: 22px;
  height: 3px;
  background: transparent;
  transition: background .3s;
}
.team-card:hover .team-body::before { background: var(--orange); }
.team-body h5 { font-size: 1rem; font-weight: 800; color: var(--heading); margin: 0 0 4px; }
.team-body span { font-size: .78rem; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.team-social { display: flex; gap: 10px; margin-top: 14px; }
.team-social a {
  width: 32px; height: 32px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  font-size: .8rem;
  transition: all .2s;
}
.team-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-outline-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 11px 24px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 3px;
  transition: all .2s;
}
.btn-outline-o:hover { background: var(--orange); color: #fff; }

/* ========== PARTNERS ========== */
.partners-sec { padding: 60px 0; background: #fff; }
.partners-track { overflow: hidden; }
.partners-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: partners-scroll 18s linear infinite;
}
.partners-inner img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: .55;
  filter: grayscale(100%);
  transition: opacity .3s, filter .3s;
  flex-shrink: 0;
}
.partners-inner img:hover { opacity: 1; filter: none; }
@keyframes partners-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== TICKER BAR ========== */
.ticker-bar { background: var(--dark); overflow: hidden; padding: 0; }
.ticker-inner {
  display: flex;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}
.ticker-inner span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  flex-shrink: 0;
}
.ticker-inner span i { color: var(--orange); font-size: .55rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== CTA BAND ========== */
.cta-band { background: var(--orange); padding: 60px 0; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; color: #fff; margin: 0 0 8px; font-family: 'Barlow Condensed', sans-serif; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; font-size: .9rem; }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange);
  padding: 14px 28px;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 3px;
  transition: all .2s;
}
.btn-cta-white:hover { background: var(--dark); color: #fff; }

/* ========== SCROLL TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: all .3s;
  z-index: 999;
}
.scroll-top.show { opacity: 1; transform: translateY(0); }