/* ============================================================
   NYABAMU Enterprises Uganda Limited — Main Stylesheet
   Bootstrap 5 build | Separate CSS file
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --navy:       #05570c;
  --navy-mid:   #243a54;
  --navy-light: #2e4a6a;
  --orange:     #e8732a;
  --orange-h:   #d4621a;
  --orange-lt:  #f5956a;
  --white:      #ffffff;
  --cream:      #f7f9fc;
  --cream2:     #eef2f7;
  --text:       #1a1a2e;
  --text-mid:   #3a3a5c;
  --text-muted: #666680;
  --border:     #dde3ec;
  --gold:       #f0a500;
  --wa-green:   #25d366;
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  padding-top: 110px;
  font-size: 17px;
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }


/* ============================================================
   NAVBAR (Bootstrap override + custom)
   ============================================================ */
/* ════════════════════════════════════════
   FLOATING PILL NAVBAR
════════════════════════════════════════ */

/* Sticky wrapper — sits above everything */
.nab-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #0a1628
}

/* Nav wrapper — transparent, just provides padding */
.nab {
  background: transparent;
  padding: 20px 0;
  transition: padding .35s ease;
}
.nab.scrolled { padding: 10px 0; }

/* The pill */
.nab-pill {
  background: rgba(10, 22, 40, 0.40);
  border-radius: 16px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.nab.scrolled .nab-pill {
  background: rgba(10, 22, 40, 0.95);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

/* Brand */
.nab-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-decoration: none;
  flex-shrink: 0;
}

.nab-brand-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
  mix-blend-mode: lighten;
}

/* Full logo variant — bigger, no radius, shows the wordmark */
.nab-brand-logo-full {
  width: auto;
  height: 48px;
  max-width: 180px;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: lighten;
}

/* Subtitle sits below the logo image */
.nab-brand-sub {
  font-family: "Smooch Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.nab-brand-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.nab-brand-text span {
  font-family: "Smooch Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color:  #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Desktop nav links */
.nab-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nab-links .nl { position: relative; }
.nab-links .nl > a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 14px;
  border-radius: 100px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.nab-links .nl > a:hover,
.nab-links .nl.active > a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.nab-links .nl.active > a { color: #e8732a; }

/* Chevron */
.nab-chev {
  font-size: .65rem;
  transition: transform .25s ease;
  display: inline-block;
}
.nab-links .nl:hover .nab-chev { transform: rotate(180deg); }

/* Dropdown */
.nab-dd {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-width: 248px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 200;
}

.nab-links .nl::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px; /* slightly larger than the 14px gap */
  background: transparent;
}

/* CSS triangle notch */
.nab-dd::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 22px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
/* Show on hover */
.nab-links .nl:hover .nab-dd {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nab-dd-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #e8732a;
  padding: 8px 18px 3px;
  display: block;
}
.nab-dd a {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: #3a3a5c;
  padding: 9px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background .15s, color .15s;
  border-radius: 0;
}
.nab-dd a i {
  font-size: .85rem;
  color: #e8732a;
  width: 16px;
  flex-shrink: 0;
}
.nab-dd a:hover {
  background: #f7f9fc;
  color: #e8732a;
}
.nab-dd-sep {
  height: 1px;
  background: #f0f4f8;
  margin: 5px 0;
}


/* ── ANIMATED HAMBURGER ── */
.nab-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}
.nab-bar {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
.nab-bar:nth-child(1) { width: 24px; }
.nab-bar:nth-child(2) { width: 17px; }
.nab-bar:nth-child(3) { width: 24px; }

/* X state */
.nab-toggle.open .nab-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 24px;
}
.nab-toggle.open .nab-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nab-toggle.open .nab-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}

/* ── MOBILE MENU ── */
.nab-mobile {
  display: none;
  background: rgba(10, 22, 40, 0.97);
  border-radius: 14px;
  margin-top: 8px;
  padding: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}
.nab-mobile.open { display: block; }

.nab-mobile > a,
.nab-mobile .mob-sub a {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  padding: 11px 20px;
  display: block;
  text-decoration: none;
  transition: color .2s, background .2s;
}
.nab-mobile > a:hover { color: #e8732a; background: rgba(255,255,255,.04); }

.mob-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  padding: 10px 20px 3px;
  display: block;
}
.mob-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 5px 0;
}
.mob-sub a {
  padding-left: 36px;
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.6);
}
.mob-sub a::before {
  content: '—';
  margin-right: 8px;
  color: #e8732a;
  font-size: .7rem;
}
.mob-sub a:hover { color: #e8732a; background: rgba(255,255,255,.04); }


/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width: 991.98px) {
  .nab-links,
  .nab-cta-wrap { display: none; }
  .nab-toggle { display: flex; }
}

@media (min-width: 992px) {
  .nab-mobile { display: none !important; }
}

/* Push page content below fixed navbar */
body { padding-top: 90px; }

/*------------------------------------------------------------------------------------------------
HOME PAGE

-------------------------------------------------------------------------------------------------*/

.hero-section {
  background: var(--navy);
  color: white;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 80px,
    rgba(232,115,42,0.04) 80px, rgba(232,115,42,0.04) 81px
  );
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(232,115,42,0.18);
  border: 1px solid rgba(232,115,42,0.4);
  color: var(--orange-lt);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero-lead-mine{
  display: inline-block;
  color: white;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 18px;
  margin-bottom: 1.25rem;
}

.hero-section h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1.25;
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.hero-section h1 em { font-style: italic; color: var(--orange-lt); }
.hero-section .hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* ── Buttons ── */
.btn-orange {
  background: var(--orange);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.btn-orange:hover { background: var(--orange-h); color: white; }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: var(--orange-lt); color: var(--orange-lt); }

/*Why who we are section*/
/* ── Who We Are Section ── */
.wwa-section {
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #0a1628;
}
.wwa-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/image.png'); /* swap for a bg texture/photo */
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.wwa-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d2240 55%, #0a1628 100%);
  opacity: 0.93;
}

/* Image block */
.wwa-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
}
.wwa-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.7) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.wwa-img-wrap:hover::before { opacity: 1; }
.wwa-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.wwa-img-wrap:hover img { transform: scale(1.05); }
.wwa-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(232,115,42,0.92);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.wwa-img-wrap:hover .wwa-img-badge { opacity: 1; transform: translateY(0); }

/* Corner accent brackets */
.wwa-accent-frame {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 72px;
  height: 72px;
  border-top: 4px solid #e8732a;
  border-left: 4px solid #e8732a;
  border-radius: 4px 0 0 0;
  z-index: 3;
}
.wwa-accent-frame-br {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 72px;
  height: 72px;
  border-bottom: 4px solid #1e90d4;
  border-right: 4px solid #1e90d4;
  border-radius: 0 0 4px 0;
  z-index: 3;
}

/* Text side */
.wwa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8732a;
  margin-bottom: 16px;
}
.wwa-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #e8732a;
  border-radius: 2px;
}
.wwa-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #ffffff 0%, #a8c8e8 60%, #1e90d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wwa-heading-underline {
  display: block;
  width: 64px;
  height: 4px;
  background: #e8732a;
  border-radius: 2px;
  margin: 16px 0 28px;
}
.wwa-p {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.95;
  margin-bottom: 1.1rem;
}

/* FIND .wwa-stats and REPLACE with this */
.wwa-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.wwa-stats > div {
  min-width: 80px;
}
.wwa-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #e8732a;
  line-height: 1;
  margin-bottom: 5px;
}
.wwa-stat-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* Responsive */
@media (max-width: 767.98px) {
  .wwa-section { padding: 64px 0; }
  .wwa-img-wrap img { height: 280px; }
  .wwa-stats { gap: 20px; }
  .wwa-stat-num { font-size: 1.5rem; }
}

/* ── Why Section ── */
.why-section {
  background: #0d1b2a;
  padding: 4rem 0;
}
.why-heading {
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
.why-sub {
  color: #7a9bbf;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}
.why-card {
  background: #0f2035;
  border: 1px solid #1a3a5c;
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
  box-sizing: border-box;

  height: auto;
  border-left: 1px solid #1a3a5c;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 144, 212, 0.18);
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: 10px;
}
.why-card:hover::before { transform: translateX(0); }
.why-card:hover { border-color: #1e90d4; }
.why-card > * { position: relative; z-index: 1; }
.why-icon {
  font-size: 2.4rem;
  color: #1e90d4;
  display: block;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.why-card:hover .why-icon { color: #7dd4fc; }
.why-card h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.why-card p {
  color: #7a9bbf;
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
  transition: color 0.3s;
}
.why-card:hover p { color: #c0d9ef; }



/* ── Founders Section ── */
.founders-section {
  background: #0a1628;
  padding: 90px 0;
  font-family: 'Montserrat', sans-serif;
}
.founders-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8732a;
  margin-bottom: 14px;
}
.founders-eyebrow::before,
.founders-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #e8732a;
  border-radius: 2px;
}
.founders-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #a8c8e8 60%, #1e90d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 10px;
}
.founders-sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  font-weight: 300;
}

/* Card */
.founder-card {
  background: #0f2035;
  border: 1px solid #1a3a5c;
  border-radius: 16px;
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  overflow: visible;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.founder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e8732a, #1e90d4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.founder-card:hover {
  transform: translateY(-8px);
  border-color: #1e90d4;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.founder-card:hover::before { opacity: 1; }

/* Avatar */
.founder-avatar-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
}
.founder-avatar-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8732a, #1e90d4);
  z-index: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.founder-card:hover .founder-avatar-wrap::before { opacity: 1; }
.founder-avatar-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0f2035;
  display: block;
}

/* Text */
.founder-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 5px;
}
.founder-role {
  font-size: 10.5px;
  font-weight: 700;
  color: #e8732a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.founder-title {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.founder-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 18px;
}
.founder-quote {
  font-size: 0.82rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  padding: 0 4px;
  position: relative;
}
.founder-quote::before {
  content: '\201C';
  font-size: 2.8rem;
  font-weight: 800;
  color: #e8732a;
  opacity: 0.3;
  line-height: 0;
  vertical-align: -0.45em;
  margin-right: 3px;
}


.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #e8732a;
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid #e8732a;
  border-radius: 100px;
  background: transparent;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  position: relative;
  z-index: 2;
}

.founder-link:hover {
  background: #e8732a;
  border-color: #e8732a;
  color: #fff;
  transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 575.98px) {
  .founders-section { padding: 60px 0; }
  .founder-avatar-wrap { width: 90px; height: 90px; }
}

/*============================================================
    Our History
============================================================*/ 


.hst{
  background:#0a1628;
  padding:88px 24px;
  position:relative;
  overflow:hidden;
}
.hst::before{
  content:'';position:absolute;inset:0;
  background:repeating-linear-gradient(45deg,transparent,transparent 80px,rgba(232,115,42,.04) 80px,rgba(232,115,42,.04) 81px);
}

.hst-inner{
  max-width:900px;margin:0 auto;
  position:relative;z-index:1;
}


.hst-label{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.65rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;
  color:#f5956a;margin-bottom:14px;
}
.hst-label::before{content:'';display:block;width:22px;height:2px;background:#f5956a;border-radius:2px;}


.hst-title{
  font-size:clamp(1.7rem,3.5vw,2.4rem);font-weight:800;
  background:linear-gradient(135deg,#fff 0%,#a8c8e8 55%,#1e90d4 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  line-height:1.15;margin-bottom:36px;
}


.hst-card{
  background:#0f2035;
  border:1px solid #1a3a5c;
  border-radius:16px;
  padding:40px 44px;
  position:relative;
  overflow:hidden;
}
.hst-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,#e8732a,#1e90d4);
  border-radius:16px 16px 0 0;
}


.hst-quote-icon{
  font-size:3.5rem;color:#e8732a;opacity:.15;
  position:absolute;top:28px;right:32px;line-height:1;
  font-family:serif;font-weight:800;
}


.hst-date{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(232,115,42,.1);border:1px solid rgba(232,115,42,.25);
  border-radius:100px;padding:5px 14px;
  font-size:.65rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:#f5956a;margin-bottom:24px;
}
.hst-date i{font-size:.78rem;}


.hst-text{
  font-size:.92rem;font-weight:300;
  color:rgba(255,255,255,.7);
  line-height:2;
  position:relative;z-index:1;
}


.hst-reg{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(30,144,212,.1);border:1px solid rgba(30,144,212,.22);
  border-radius:8px;padding:8px 16px;
  font-size:.72rem;color:#7dd4fc;font-weight:600;
  margin-top:28px;
}
.hst-reg i{color:#1e90d4;}


.hst-footer{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:32px;padding-top:24px;
  border-top:1px solid rgba(255,255,255,.08);
}
.hst-year{
  font-size:2.2rem;font-weight:800;
  background:linear-gradient(135deg,rgba(232,115,42,.7),rgba(30,144,212,.7));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  line-height:1;
}
.hst-est{
  text-align:right;
}
.hst-est strong{display:block;font-size:.75rem;font-weight:700;color:rgba(255,255,255,.55);letter-spacing:.06em;}
.hst-est span{font-size:.68rem;color:rgba(255,255,255,.28);letter-spacing:.1em;text-transform:uppercase;}


/* ════════════════════════════════════════
   TESTIMONIALS SECTION
════════════════════════════════════════ */

.tst-section {
  background: #0d1b2a;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

/* Subtle diagonal pattern */
.tst-bg-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent, transparent 80px,
    rgba(30, 144, 212, .03) 80px, rgba(30, 144, 212, .03) 81px
  );
  pointer-events: none;
}

.tst-inner { position: relative; z-index: 1; }

/* Label */
.tst-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #f5956a;
  margin-bottom: 12px;
}
.tst-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #f5956a;
  border-radius: 2px;
}

/* Heading */
.tst-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #a8c8e8 55%, #1e90d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  margin-bottom: 8px;
}

/* Subtitle */
.tst-sub {
  color: rgba(255, 255, 255, .42);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 540px;
}

/* Card */
.tst-card {
  background: #0f2035;
  border: 1px solid #1a3a5c;
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94),
              border-color .3s,
              box-shadow .3s;
}
.tst-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e8732a, #1e90d4);
  opacity: 0;
  transition: opacity .3s;
}
.tst-card:hover {
  transform: translateY(-6px);
  border-color: #1e90d4;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .3);
}
.tst-card:hover::before { opacity: 1; }

/* Decorative quote mark */
.tst-quote-mark {
  font-size: 4rem;
  font-weight: 800;
  font-family: serif;
  color: #e8732a;
  opacity: .18;
  line-height: .8;
  position: absolute;
  top: 20px;
  right: 24px;
  pointer-events: none;
}

/* Stars */
.tst-stars {
  display: flex;
  gap: 3px;
}
.tst-stars i {
  font-size: .85rem;
  color: #f0a500;
}

/* Quote text */
.tst-body {
  font-size: .83rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .65);
  line-height: 1.85;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Horizontal rule */
.tst-divider {
  height: 1px;
  background: rgba(255, 255, 255, .08);
}

/* Person row */
.tst-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Avatar initials circle */
.tst-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8732a, #1e90d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: .02em;
}

.tst-name {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 3px;
}

.tst-org {
  font-size: .72rem;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .03em;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .tst-section { padding: 64px 0; }
  .tst-sub { margin-bottom: 36px; }
  .tst-card { padding: 26px 22px; }
}

@media (max-width: 575.98px) {
  .tst-title { font-size: 1.7rem; }
  .tst-body { font-size: .82rem; }
}

/* ============================================================
   VMV SECTION
   ============================================================ */
.vmv-section {
  background: var(--navy);
  color: white;
  padding: 56px 0;
}
.vmv-section h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.7rem;
  color: white;
}
.vmv-section .sub { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.vmv-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 1.5rem;
  border-top: 3px solid var(--orange);
  height: 100%;
}
.vmv-card .icon { font-size: 1.6rem; margin-bottom: 10px; }
.vmv-card h3 { color: var(--orange-lt); font-family: 'Merriweather', serif; font-size: 1rem; margin-bottom: 0.6rem; }
.vmv-card p { color: rgba(255,255,255,0.72); font-size: 0.88rem; margin: 0; line-height: 1.7; }
.values-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.value-pill {
  background: rgba(232,115,42,0.2);
  border: 1px solid rgba(232,115,42,0.4);
  color: var(--orange-lt);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}


/* -------------------------------------------
   SERVICES PAGE 
--------------------------------------------- */


:root {
  --navy:       #05570c;
  --navy-dark:  #033a08;
  --navy-mid:   #0f3d14;
  --navy-light: #16521c;
  --orange:     #e8732a;
  --orange-h:   #d4621a;
  --orange-lt:  #f5956a;
  --white:      #ffffff;
  --cream:      #f7f9fc;
  --cream2:     #eef2f7;
  --text:       #1a1a2e;
  --text-mid:   #3a3a5c;
  --text-muted: #666680;
  --border:     #dde3ec;
  --gold:       #f0a500;
  --wa-green:   #25d366;
}

/* ══════════════════════════════════════════════════════
   BASE
══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ══════════════════════════════════════════════════════
   SHARED UTILITY
══════════════════════════════════════════════════════ */
.sp-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.sp-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.sp-label--lt { color: #f5956a; }
.sp-label--lt::before { background: #f5956a; }

.sp-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.sp-title--lt { color: #fff; }

.sp-sub {
  font-size: .93rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.9;
  max-width: 620px;
  margin-bottom: 0;
}
.sp-sub--lt { color: rgba(255,255,255,.55); }

.sp-sec { padding: 90px 0; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.sp-hero {
  background: var(--navy-dark);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* diagonal stripe texture */
.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(232,115,42,.05) 80px,
    rgba(232,115,42,.05) 81px
  );
  pointer-events: none;
}

/* bottom fade into cream */
.sp-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}

.sp-hero-inner { position: relative; z-index: 2; }

.sp-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-lt);
  margin-bottom: 20px;
}
.sp-eye::before, .sp-eye::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange-lt);
  border-radius: 2px;
}

.sp-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  background: linear-gradient(135deg, #ffffff 0%, #a8d4ac 55%, #6fcf78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.sp-hero > .container p,
.sp-hero-inner p {
  font-size: .97rem;
  color: rgba(255,255,255,.58);
  font-weight: 300;
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto 32px;
}

.sp-pill {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(232,115,42,.12);
  border: 1px solid rgba(232,115,42,.3);
  color: var(--orange-lt);
  transition: background .2s, border-color .2s;
}
.sp-pill:hover {
  background: rgba(232,115,42,.22);
  border-color: rgba(232,115,42,.55);
}

/* ══════════════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════════════ */
.sp-services { background: var(--cream); }

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94),
              box-shadow .35s,
              border-color .3s;
}

/* animated top bar */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}

/* subtle green tint overlay */
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,87,12,.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(5,87,12,.12);
  border-color: rgba(5,87,12,.2);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover::after  { opacity: 1; }

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(5,87,12,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 22px;
  transition: background .3s, color .3s, transform .3s;
  position: relative;
  z-index: 1;
}
.svc-card:hover .svc-icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.svc-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color .3s;
}
.svc-card:hover h3 { color: var(--navy); }

.svc-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════
   PROCESS / STEPS
══════════════════════════════════════════════════════ */
.sp-process {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* background cross-hatch */
.sp-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 100px,
    rgba(255,255,255,.018) 100px,
    rgba(255,255,255,.018) 101px
  );
  pointer-events: none;
}

.sp-process-inner { position: relative; z-index: 1; }

.sp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 36px;
}
.sp-step:last-child { padding-bottom: 0; }

/* connecting vertical line */
.sp-step::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(232,115,42,.5), rgba(232,115,42,.06));
  pointer-events: none;
}
.sp-step:last-child::after { display: none; }

.sp-step-n {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(232,115,42,.35);
  transition: transform .3s, box-shadow .3s;
}
.sp-step:hover .sp-step-n {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(232,115,42,.5);
}

.sp-step-b {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 24px 28px;
  flex: 1;
  transition: background .3s, border-color .3s;
}
.sp-step:hover .sp-step-b {
  background: rgba(255,255,255,.09);
  border-color: rgba(232,115,42,.25);
}

.sp-step-b h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.sp-step-b p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.85;
  margin: 0;
}

/* ══════════════════════════════════════════════════════
   INSIGHTS / PROJECT CARDS
══════════════════════════════════════════════════════ */
.sp-insights { background: var(--white); }

.ins-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), box-shadow .35s;
}
.ins-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(10,22,40,.1);
}

.ins-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
}
.ins-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.ins-card:hover .ins-img { transform: scale(1.07); }

.ins-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,87,12,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  font-size: 1.9rem;
  color: #fff;
}
.ins-card:hover .ins-overlay { opacity: 1; }

.ins-body { padding: 22px 24px; }

.ins-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(5,87,12,.08);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.ins-body h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.ins-body p {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════
   METHODS
══════════════════════════════════════════════════════ */
.sp-methods { background: var(--cream); }

.mth-card {
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform .3s, box-shadow .3s;
}
.mth-card { background: var(--white); border: 1px solid var(--border); }
.mth-card--dark {
  background: var(--white);
  border: 1px solid rgba(255,255,255,.07);
}
.mth-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(5,87,12,.1);
}
.mth-card--dark:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}

.mth-card--dark h3 { color: #fff; }
.mth-card--dark .mth-list li { color: black; }
.mth-card--dark .mth-list li i { color: var(--orange-lt); }

.mth-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}
.mth-icon--light { background: rgba(5,87,12,.08); color: var(--navy); }
.mth-icon--dark  { background: rgba(232,115,42,.15); color: var(--orange-lt); }

.mth-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.mth-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.mth-list li {
  font-size: .86rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 11px;
  line-height: 1.65;
}
.mth-list li i {
  color: var(--orange);
  font-size: .8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   TOOLS
══════════════════════════════════════════════════════ */
.sp-tools { background: var(--white); }

.tool-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 22px;
  transition: transform .32s cubic-bezier(.25,.46,.45,.94),
              background .32s,
              box-shadow .32s,
              border-color .32s;
}
.tool-card:hover {
  transform: translateY(-8px);
  background: var(--navy-dark);
  border-color: transparent;
  box-shadow: 0 22px 52px rgba(5,87,12,.22);
}
.tool-card:hover strong { color: #fff; }
.tool-card:hover p      { color: rgba(255,255,255,.65); }
.tool-card:hover .tool-iw {
  background: rgba(232,115,42,.2);
  color: var(--orange-lt);
}

.tool-iw {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(5,87,12,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--navy);
  margin: 0 auto 20px;
  transition: background .32s, color .32s;
}
.tool-card strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 9px;
  transition: color .32s;
}
.tool-card p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin: 0;
  transition: color .32s;
}

/* ══════════════════════════════════════════════════════
   AGRICULTURE & ENVIRONMENT
══════════════════════════════════════════════════════ */
.sp-agri {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0a2e0e 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.sp-agri::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(232,115,42,.04) 80px,
    rgba(232,115,42,.04) 81px
  );
  pointer-events: none;
}

.sp-agri-inner { position: relative; z-index: 1; }

.agri-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 34px 30px;
  transition: background .3s, border-color .3s, transform .35s;
}
.agri-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(232,115,42,.25);
  transform: translateY(-6px);
}

.agri-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.agri-iw {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.agri-iw--or { background: rgba(232,115,42,.18); color: var(--orange-lt); }
.agri-iw--bl { background: rgba(30,144,212,.18); color: #7dd4fc; }

.agri-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.agri-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.agri-list li {
  font-size: .86rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.65;
}
.agri-list li i {
  color: var(--orange-lt);
  font-size: .85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════ */
.sp-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-h) 100%);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}
.sp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,.04) 60px,
    rgba(255,255,255,.04) 61px
  );
  pointer-events: none;
}

.sp-cta .container { position: relative; z-index: 1; }

.sp-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.sp-cta p {
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

.sp-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sp-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.sp-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  color: var(--orange);
}

.sp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 14px 30px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.5);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.sp-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* ══════════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
}
.wa-float i { font-size: 1.6rem; color: #fff; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .sp-process .col-12.col-lg-6:last-child { margin-top: 0; }
}

@media (max-width: 767.98px) {
  .sp-hero { padding: 80px 0 90px; }
  .sp-sec  { padding: 64px 0; }
  .sp-process,
  .sp-agri,
  .sp-cta  { padding: 64px 0; }

  .sp-step-b { padding: 18px 20px; }

  .sp-cta p { max-width: 100%; }
}

@media (max-width: 575.98px) {
  .sp-hero h1 { font-size: 1.9rem; }
  .sp-title   { font-size: 1.55rem; }
}



/*---------------------------------------------------------------
    PROJECTS PAGE
----------------------------------------------------------------*/

:root {
  --navy: #0a1628;
  --orange: #e8732a;
  --blue: #1e90d4;
}

/* HERO */
.proj-hero {
  background: linear-gradient(rgba(10,22,40,0.78), rgba(10,22,40,0.85)), 
              url('assets/Nyabamu\ Story2.jpg') center/cover no-repeat;
  padding: 140px 0 100px;
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.proj-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(232,115,42,0.08) 80px, rgba(232,115,42,0.08) 82px);
}

.proj-hero-eye {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.proj-hero h1 {
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.proj-hero .lead {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* FILTER */
.proj-filter button {
  padding: 10px 26px;
  border: 2px solid #dde3ec;
  background: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.proj-filter button.active,
.proj-filter button:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* PROJECTS SECTION */
.proj-projects {
  background: #f8fafd;
  position: relative;
}

.proj-projects::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/photo_2026-04-07_13-10-42.jpg') center/cover;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}

/* Project Card */
.project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(10,22,40,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 70px rgba(10,22,40,0.18);
}

.project-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.12);
}

.project-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.project-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-body h4 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.project-body p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.65;
  flex-grow: 1;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.project-year {
  font-size: 0.88rem;
  font-weight: 600;
  color: #777;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-download:hover {
  background: #d4621a;
  gap: 12px;
  padding-left: 24px;
  padding-right: 24px;
  color: white;
}

/* CTA */
.proj-cta {
  background: linear-gradient(135deg, var(--navy), #0f2035);
  color: white;
  padding: 90px 20px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .project-image { height: 210px; }
  .proj-hero { padding: 100px 0 70px; }
}

/* Share float button */
.share-float {
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: #fff;
}
.share-float:hover { transform: scale(1.1); }

/* Toast notification */
.share-toast {
  position: fixed;
  bottom: 90px;
  right: 24px;
  background: #0f2035;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #1a3a5c;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
  z-index: 9998;
}
.share-toast i { color: #1e90d4; }
.share-toast.show { opacity: 1; transform: translateY(0); }

/*---------------------------------------------------------------
    CONTACT PAGE

----------------------------------------------------------------*/


:root {
  --navy: #0a1628;
  --orange: #e8732a;
  --blue: #1e90d4;
}

/* Hero */
.contact-hero {
  background: linear-gradient(rgba(10,22,40,0.78), rgba(10,22,40,0.88)), 
              url('assets/images.jpg') center/cover no-repeat;
  padding: 140px 0 100px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-eye {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.contact-hero h1 {
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-hero .lead {
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Main Contact Info - Anti-collapse protection */
.contact-info {
  background: #fff;
  padding: 80px 0;
  min-height: 500px;           /* Prevents collapsing */
}

.contact-details h2 {
  font-size: 2.2rem;
  margin-bottom: 28px;
  color: var(--navy);
}

.contact-item {
  display: flex;
  gap: 22px;
  margin-bottom: 34px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.9rem;
  color: var(--orange);
  width: 52px;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 700;
}

.contact-item p, .contact-item a {
  font-size: 1.03rem;
  line-height: 1.65;
  color: #444;
}

.contact-item a:hover { color: var(--orange); }

/* Map */
.contact-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(10,22,40,0.12);
}

/* Secondary Options - Anti-collapse protection */
.contact-options {
  background: #f8f9fa;
  padding: 70px 0;
  min-height: 400px;
}

.option-card {
  background: white;
  padding: 42px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(10,22,40,0.08);
  height: 100%;
  transition: all 0.4s ease;
  text-align: center;
}

.option-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(232,115,42,0.15);
}

.option-card i {
  color: var(--orange);
  font-size: 2.8rem;
  margin-bottom: 18px;
  display: block;
}


/* Safety fixes */
.text-orange { color: var(--orange) !important; }

@media (max-width: 768px) {
  .contact-hero { padding: 100px 0 70px; }
  .contact-info, .contact-options { padding: 60px 0; }
  .contact-item { margin-bottom: 28px; }
}

/* ════════════════════════════════════════
   CONTACT FORM SECTION
════════════════════════════════════════ */

.cf-section {
  background: #0a1628;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

/* Diagonal pattern background */
.cf-bg-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent, transparent 80px,
    rgba(30,144,212,.035) 80px, rgba(30,144,212,.035) 81px
  );
  pointer-events: none;
}

.cf-inner { position: relative; z-index: 1; }

/* Left column heading */
.cf-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #f5956a;
  margin-bottom: 14px;
}
.cf-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #f5956a;
  border-radius: 2px;
}

.cf-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cf-sub {
  color: rgba(255,255,255,.52);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 36px;
}

/* Assurance items */
.cf-assurance {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cf-assurance-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cf-assurance-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(232,115,42,.12);
  border: 1px solid rgba(232,115,42,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8732a;
  font-size: .9rem;
  flex-shrink: 0;
}
.cf-assurance-item strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.cf-assurance-item span {
  font-size: .75rem;
  color: rgba(255,255,255,.38);
}

/* Form card */
.cf-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}

/* Field wrapper */
.cf-field { display: flex; flex-direction: column; gap: 6px; }

/* Field label */
.cf-label-field {
  font-size: .72rem;
  font-weight: 700;
  color: #0a1628;
  letter-spacing: .04em;
}
.cf-label-field span { color: #e8732a; margin-left: 2px; }

/* Input wrapper with icon */
.cf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.cf-input-icon {
  position: absolute;
  left: 14px;
  font-size: .85rem;
  color: #aaa;
  pointer-events: none;
  transition: color .2s;
  z-index: 1;
}
.cf-textarea-icon { top: 13px; align-self: flex-start; }

/* Input and select */
.cf-input {
  width: 100%;
  background: #f7f9fc;
  border: 1px solid #dde3ec;
  border-radius: 10px;
  padding: 11px 14px 11px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  color: #0a1628;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
  -webkit-appearance: none;
  appearance: none;
}
.cf-input::placeholder { color: #bbb; }
.cf-input:focus {
  border-color: #e8732a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,115,42,.1);
}
.cf-input:focus + .cf-input-icon,
.cf-input-wrap:focus-within .cf-input-icon { color: #e8732a; }

/* Select arrow */
.cf-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23aaa' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Textarea */
.cf-textarea {
  resize: vertical;
  min-height: 130px;
  padding-top: 11px;
  line-height: 1.7;
}
.cf-textarea-wrap { align-items: flex-start; }

/* Validation error */
.cf-error {
  font-size: .7rem;
  color: #e53935;
  font-weight: 600;
  display: none;
  padding-left: 2px;
}
.cf-field.has-error .cf-input { border-color: #e53935; box-shadow: 0 0 0 3px rgba(229,57,53,.1); }
.cf-field.has-error .cf-error { display: block; }
.cf-field.has-error .cf-input-icon { color: #e53935; }

/* Submit button */
.cf-submit {
  width: 100%;
  background: linear-gradient(135deg, #e8732a, #d4621a);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,115,42,.4);
}
.cf-submit:active { transform: translateY(0); }

/* Success message */
.cf-success {
  background: rgba(46,213,115,.1);
  border: 1px solid rgba(46,213,115,.3);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: #1a8a4a;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cf-success i { font-size: 1.1rem; color: #2ed573; flex-shrink: 0; }

/* Responsive */
@media (max-width: 991.98px) {
  .cf-section { padding: 64px 0; }
  .cf-assurance { margin-bottom: 0; }
}

@media (max-width: 575.98px) {
  .cf-card { padding: 28px 20px; }
  .cf-section { padding: 56px 0; }
}

/*--------------------------------------------------------------
    PARTNERS PAGE

---------------------------------------------------------------*/

/* Hero */
.pp-hero {
  background: #0a1628;
  padding: 90px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/image.png') center/cover no-repeat;
  opacity: 0.07;
}
.pp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0a1628 0%, rgba(10,22,40,.92) 60%, #0a1628 100%);
}
.pp-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #e8732a;
  margin-bottom: 16px;
}
.pp-eye::before,
.pp-eye::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #e8732a;
  border-radius: 2px;
}
.pp-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  background: linear-gradient(135deg, #fff 0%, #a8c8e8 55%, #1e90d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}
.pp-hero > .container p {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.pp-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.pp-hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #e8732a;
  line-height: 1;
  margin-bottom: 4px;
}
.pp-hero-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* Filter tabs */
.pp-filter {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid #dde3ec;
  position: sticky;
  top: 70px;
  z-index: 100;
}
.pp-filter-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pp-tab {
  background: transparent;
  border: 1px solid #dde3ec;
  border-radius: 100px;
  padding: 8px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #666680;
  cursor: pointer;
  transition: all .25s;
}
.pp-tab:hover { border-color: #e8732a; color: #e8732a; }
.pp-tab.active { background: #e8732a; border-color: #e8732a; color: #fff; }

/* Cards section */
.pp-cards-section { background: #f7f9fc; padding: 72px 0; }
.pp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #e8732a;
  margin-bottom: 10px;
}
.pp-section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #e8732a;
  border-radius: 2px;
}
.pp-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #0a1628;
  margin-bottom: 8px;
}
.pp-section-sub {
  color: #666680;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Partner card */
.pp-card {
  background: #fff;
  border: 1px solid #dde3ec;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), border-color .3s, box-shadow .3s;
}
.pp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e8732a, #1e90d4);
  opacity: 0;
  transition: opacity .3s;
}
.pp-card:hover { transform: translateY(-8px); border-color: #1e90d4; box-shadow: 0 24px 56px rgba(10,22,40,.12); }
.pp-card:hover::before { opacity: 1; }

.pp-card-logo {
  height: 140px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0f4f8;
  padding: 24px;
  transition: background .3s;
}
.pp-card:hover .pp-card-logo { background: #f7f9fc; }
.pp-card-logo-inner {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border: 2px solid #dde3ec;
  transition: border-color .3s, transform .4s;
}
.pp-card:hover .pp-card-logo-inner { transform: scale(1.08); border-color: #e8732a; }
.pp-card-logo-inner img { width: 60px; height: 60px; object-fit: contain; border-radius: 50%; }

.pp-card-body { padding: 24px 24px 20px; }
.pp-card-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.badge-dev  { background: rgba(30,144,212,.1);  color: #185fa5; }
.badge-gov  { background: rgba(5,87,12,.1);     color: #05570c; }
.badge-intl { background: rgba(232,115,42,.1);  color: #c4601f; }
.badge-civil{ background: rgba(30,144,212,.12); color: #0c447c; }

.pp-card h3 { font-family:'Montserrat',sans-serif; font-size:.95rem; font-weight:700; color:#0a1628; margin-bottom:6px; }
.pp-card-desc { font-size:.8rem; color:#666680; line-height:1.75; margin-bottom:16px; }
.pp-card-meta { display:flex; align-items:center; justify-content:space-between; padding-top:14px; border-top:1px solid #f0f4f8; }
.pp-card-region { font-size:.75rem; color:#888; font-weight:600; display:flex; align-items:center; gap:5px; }
.pp-card-region i { color:#e8732a; font-size:.8rem; }
.pp-card-link { font-size:.75rem; font-weight:700; color:#1e90d4; text-decoration:none; display:flex; align-items:center; gap:4px; transition:gap .2s, color .2s; }
.pp-card-link:hover { gap: 8px; color: #e8732a; }

/* Quote strip */
.pp-quote {
  background: #0a1628;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pp-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18rem;
  font-weight: 800;
  color: rgba(232,115,42,.06);
  line-height: 1;
  pointer-events: none;
}
.pp-quote blockquote {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.75);
  line-height: 1.9;
}
.pp-quote cite {
  display: block;
  margin-top: 20px;
  font-size: .8rem;
  font-style: normal;
  font-weight: 700;
  color: #e8732a;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* CTA */
.pp-cta {
  background: linear-gradient(135deg, #e8732a 0%, #d4621a 100%);
  padding: 80px 0;
}
.pp-cta h2 { font-family:'Montserrat',sans-serif; font-size:clamp(1.5rem,3vw,2.1rem); font-weight:800; color:#fff; margin-bottom:12px; }
.pp-cta p { color:rgba(255,255,255,.8); font-size:.92rem; font-weight:300; line-height:1.8; max-width:520px; margin:0 auto 32px; }
.pp-cta-btns { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.pp-btn-white { background:#fff; color:#e8732a; font-family:'Montserrat',sans-serif; font-weight:700; font-size:.85rem; padding:13px 28px; border-radius:8px; text-decoration:none; display:inline-block; transition:transform .2s,box-shadow .2s; }
.pp-btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.18); color:#e8732a; }
.pp-btn-outline { background:transparent; color:#fff; font-family:'Montserrat',sans-serif; font-weight:700; font-size:.85rem; padding:13px 28px; border-radius:8px; border:2px solid rgba(255,255,255,.5); text-decoration:none; display:inline-block; transition:border-color .2s,background .2s; }
.pp-btn-outline:hover { border-color:#fff; background:rgba(255,255,255,.1); color:#fff; }

/* Responsive */
@media (max-width: 767.98px) {
  .pp-hero { padding: 64px 0 72px; }
  .pp-hero-stats { gap: 24px; }
  .pp-filter { top: 60px; }
  .pp-cards-section, .pp-quote, .pp-cta { padding: 56px 0; }
}



/* ------------------------------------------------
   FOOTER
--------------------------------------------------- */
.ft {
  background: #0a1628;
  color: rgba(255,255,255,0.75);
  padding: 80px 0 40px;
  font-family: 'Montserrat', sans-serif;
}

/* Grid Layout */
.ft-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Column Titles - Maintained your original border style */
.ft-col-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
  position: relative;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ft-col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #e8732a, transparent);
}

/* Footer Links */
.ft-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ft-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.ft-links a:hover {
  color: #f5956a;
  padding-left: 6px;
}

/* Contact Items */
.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.ft-ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(232,115,42,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8732a;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.ft-contact-item:hover .ft-ci-icon {
  background: rgba(232,115,42,0.25);
  transform: scale(1.08);
}

.ft-contact-item a,
.ft-contact-item span {
  font-size: 0.93rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
}

.ft-contact-item a:hover {
  color: #f5956a;
}

/* Bottom Bar */
.ft-bottom {
  background: #060f1a;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
}

.ft-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.ft-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* Social Icons */
.ft-bottom-social {
  display: flex;
  gap: 8px;
}

.ft-bottom-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.ft-bottom-social a:hover {
  background: #e8732a;
  color: white;
  transform: translateY(-3px);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 991.98px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .ft {
    padding: 60px 0 30px;
  }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ft-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* -------------------------------------------------------------
   WHATSAPP FLOAT
   ------------------------------------------------------------*/
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 52px; height: 52px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; fill: white; }


/* ============================================================
   PROJECTS PAGE CSS — projects-page.css
   ============================================================ */

/* ── HERO ── */
.pj-hero {
  background: #0a1628;
  padding: 100px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pj-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 80px,
    rgba(232,115,42,.05) 80px, rgba(232,115,42,.05) 81px
  );
}
.pj-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.pj-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #e8732a;
  margin-bottom: 18px;
}
.pj-eye::before, .pj-eye::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #e8732a;
  border-radius: 2px;
}
.pj-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #a8c8e8 55%, #1e90d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.pj-hero p {
  color: rgba(255,255,255,.62);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.pj-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.pj-snum {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #e8732a;
  line-height: 1;
  margin-bottom: 4px;
}
.pj-slabel {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
}

/* ── SECTION ── */
.pj-section {
  background: #f7f9fc;
  padding: 80px 0;
}
.pj-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.pj-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #e8732a;
  margin-bottom: 10px;
}
.pj-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #e8732a;
  border-radius: 2px;
}
.pj-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #0a1628;
  line-height: 1.15;
  margin-bottom: 8px;
}
.pj-sub {
  color: #666680;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 580px;
}

/* ── PROJECT CARDS GRID ── */
.pj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

/* ── SINGLE PROJECT CARD ── */
.pj-card {
  background: #fff;
  border: 1px solid #dde3ec;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94),
              box-shadow .35s, border-color .3s;
}
.pj-card::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #e8732a, #1e90d4);
  opacity: 0;
  transition: opacity .3s;
  flex-shrink: 0;
}
.pj-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(10,22,40,.1); border-color: #1e90d4; }
.pj-card:hover::before { opacity: 1; }

/* Photo strip — 3 slots inside each card */
.pj-photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 140px 100px;
  gap: 3px;
  background: #dde3ec;
  flex-shrink: 0;
}
.pj-photo {
  overflow: hidden;
  position: relative;
  background: #1a3a5c;
}
.pj-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.pj-card:hover .pj-photo img { transform: scale(1.06); }

/* First photo spans both rows — the large feature image */
.pj-photo:first-child { grid-row: 1 / 3; }

/* Placeholder when no photo is uploaded yet */
.pj-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f2035, #0a1628);
  color: rgba(255,255,255,.2);
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  gap: 6px;
}
.pj-photo-placeholder i { font-size: 1.4rem; color: rgba(255,255,255,.1); }

/* Card body */
.pj-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Badge row */
.pj-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.pj-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,115,42,.1);
  border: 1px solid rgba(232,115,42,.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e8732a;
}
.pj-card-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(46,213,115,.1);
  border: 1px solid rgba(46,213,115,.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2ed573;
}
.pj-card-status i { font-size: .45rem; }

/* Title block */
.pj-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1e90d4;
  margin-bottom: 4px;
}
.pj-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .97rem;
  font-weight: 800;
  color: #0a1628;
  line-height: 1.35;
  margin: 0 0 4px;
}
.pj-card-org {
  font-size: .72rem;
  color: #999;
  font-weight: 400;
}

/* Description */
.pj-card-desc {
  font-size: .8rem;
  color: #3a3a5c;
  line-height: 1.82;
  font-weight: 300;
  flex: 1;
}

/* Mini stats inside card */
.pj-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pj-mini-stat {
  background: #f7f9fc;
  border: 1px solid #dde3ec;
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  transition: border-color .2s;
}
.pj-mini-stat:hover { border-color: #e8732a; }
.pj-mini-stat .n {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #e8732a;
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}
.pj-mini-stat .l {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #666680;
}

/* Sector tags */
.pj-card-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pj-card-sector {
  background: #f7f9fc;
  border: 1px solid #dde3ec;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .7rem;
  font-weight: 600;
  color: #3a3a5c;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: border-color .2s, color .2s;
}
.pj-card-sector i { font-size: .75rem; color: #e8732a; }
.pj-card-sector:hover { border-color: #e8732a; color: #e8732a; }

/* Partners inside card */
.pj-card-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #f0f4f8;
}
.pj-card-partners-lbl {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #bbb;
  margin-right: 2px;
}
.pj-card-partner {
  background: #f7f9fc;
  border: 1px solid #dde3ec;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .7rem;
  font-weight: 600;
  color: #3a3a5c;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pj-card-partner i { font-size: .72rem; color: #1e90d4; }

/* ── PLACEHOLDER CARD — future projects ── */
.pj-card-placeholder {
  background: #fff;
  border: 2px dashed #dde3ec;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 28px;
  text-align: center;
  gap: 14px;
  min-height: 360px;
  transition: border-color .3s;
}
.pj-card-placeholder:hover { border-color: #e8732a; }
.pj-placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f7f9fc;
  border: 1px solid #dde3ec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #dde3ec;
  transition: color .2s, border-color .2s;
}
.pj-card-placeholder:hover .pj-placeholder-icon {
  color: #e8732a;
  border-color: #e8732a;
}
.pj-placeholder-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: #ccc;
}
.pj-placeholder-text {
  font-size: .78rem;
  color: #bbb;
  font-weight: 300;
  line-height: 1.7;
  max-width: 240px;
  margin: 0;
}

/* ── CTA STRIP ── */
.pj-cta {
  background: linear-gradient(135deg, #e8732a 0%, #d4621a 100%);
  padding: 80px 24px;
  text-align: center;
}
.pj-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.pj-cta p {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.85;
}
.pj-cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pj-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #e8732a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 13px 28px;
  border-radius: 9px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.pj-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); color: #e8732a; }
.pj-btn-out {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 13px 28px;
  border-radius: 9px;
  border: 2px solid rgba(255,255,255,.5);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.pj-btn-out:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ── Share float ── */
.share-float {
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: #fff;
}
.share-float:hover { transform: scale(1.1); }
.share-toast {
  position: fixed;
  bottom: 90px;
  right: 24px;
  background: #0f2035;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #1a3a5c;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  z-index: 9998;
}
.share-toast i { color: #1e90d4; }
.share-toast.show { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .pj-hero { padding: 72px 0 80px; }
  .pj-hero-stats { gap: 24px; }
  .pj-section { padding: 56px 0; }
  .pj-cta { padding: 56px 20px; }
  .pj-grid { grid-template-columns: 1fr; }
  .pj-photo-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px;
  }
  .pj-photo:first-child { grid-row: auto; }
}

@media (max-width: 400px) {
  .pj-mini-stats { grid-template-columns: repeat(3, 1fr); }
  .pj-card-body { padding: 18px; }
}

/* ── SECTION HEADER ENHANCEMENTS ── */

/* Centre alignment for all screen sizes */
.pj-section-head {
  text-align: center;
  position: relative;
  margin-bottom: 48px;
}

/* Centred label with glowing dot */
.pj-label--center {
  justify-content: center;
  margin-bottom: 16px;
}
.pj-label--center::before { display: none; } /* remove left line when centred */

.pj-label-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8732a;
  flex-shrink: 0;
  animation: pj-pulse 2s ease-in-out infinite;
}
@keyframes pj-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,115,42,.5); }
  50%       { box-shadow: 0 0 0 7px rgba(232,115,42,.0); }
}

/* Centred heading */
.pj-title--center {
  text-align: center;
  margin-bottom: 14px;
}

/* Gradient accent word inside heading */
.pj-title-accent {
  background: linear-gradient(90deg, #e8732a, #f5956a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animated underline bar with centre diamond */
.pj-heading-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 20px;
  width: 120px;
  position: relative;
}
.pj-heading-line-fill {
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, transparent, #e8732a, #1e90d4, transparent);
  border-radius: 2px;
  transition: width 1s cubic-bezier(.25,.46,.45,.94) .3s;
  width: 120px; /* triggers via JS below */
}
.pj-heading-diamond {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  background: #e8732a;
  border-radius: 1px;
  box-shadow: 0 0 0 2px #f7f9fc;
}

/* Centred subtitle */
.pj-sub--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Faded background decorative word */
.pj-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  color: rgba(10,22,40,.045);
  letter-spacing: .2em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Push heading content above the bg word */
.pj-section-head > *:not(.pj-bg-word) {
  position: relative;
  z-index: 1;
}

/* Responsive — already centred, just shrink bg word on mobile */
@media (max-width: 575.98px) {
  .pj-bg-word { font-size: 3.5rem; letter-spacing: .1em; }
  .pj-heading-line { width: 80px; }
  .pj-heading-line-fill { width: 80px; }
}


/* ════════════════════════════════════════
   PARTNERS CAROUSEL
════════════════════════════════════════ */

.pc-section {
  background: #fff; /* default — used on projects page */
  padding: 56px 0;
  overflow: hidden;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

/* Dark version — used on homepage only */
.pc-section--dark {
  background: #0d1b2a;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pc-section--dark .pc-track-wrap::before {
  background: linear-gradient(90deg, #0d1b2a, transparent);
}
.pc-section--dark .pc-track-wrap::after {
  background: linear-gradient(270deg, #0d1b2a, transparent);
}
.pc-section--dark .pc-title { color: #fff; }
.pc-section--dark .pc-logo {
  background: #0f2035;
  border-color: #1a3a5c;
}
.pc-section--dark .pc-logo:hover {
  border-color: #e8732a;
  box-shadow: 0 8px 28px rgba(232,115,42,.15);
}
.pc-section--dark .pc-logo img {
  filter: grayscale(100%) brightness(2);  /* greyscale but brightened */
  opacity: .85;
}
.pc-section--dark .pc-logo:hover img {
  filter: grayscale(0%) brightness(1);    /* full colour on hover */
  opacity: 1;
}
.pc-section--dark .pc-logo:hover img {
  filter: grayscale(0%) brightness(1) invert(0);
  opacity: 1;
}
.pc-section--dark .pc-logo-name { color: rgba(255,255,255,.45); }
.pc-section--dark .pc-logo:hover .pc-logo-name { color: #f5956a; }

.pc-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
.pc-header { text-align: center; margin-bottom: 36px; }
.pc-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #e8732a;
  margin-bottom: 10px;
}
.pc-label::before, .pc-label::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #e8732a;
  border-radius: 2px;
}
.pc-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0;
}

/* Track wrapper — clips overflow and adds fade edges */
.pc-track-wrap {
  position: relative;
  overflow: hidden;
}
.pc-track-wrap::before,
.pc-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.pc-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.pc-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

/* Scrolling track */
.pc-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: pc-scroll 28s linear infinite;
}
.pc-track:hover { animation-play-state: paused; }

@keyframes pc-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual logo card */
.pc-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 160px;
  padding: 16px 28px;
  margin: 0 6px;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  flex-shrink: 0;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  cursor: default;
}
.pc-logo:hover {
  border-color: #e8732a;
  box-shadow: 0 8px 28px rgba(232,115,42,.12);
  transform: translateY(-4px);
}

/* Logo image — greyscale until hover */
.pc-logo img {
  height: 48px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .6;
  transition: filter .3s, opacity .3s;
  display: block;
}
.pc-logo:hover img { filter: grayscale(0%); opacity: 1; }

/* Initials fallback */
.pc-logo-initials {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  color: #fff;
  flex-shrink: 0;
}

/* Partner name */
.pc-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: .63rem;
  font-weight: 700;
  color: #666680;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  transition: color .3s;
}
.pc-logo:hover .pc-logo-name { color: #e8732a; }

/* Responsive — slow scroll on mobile, tighter padding */
@media (max-width: 767.98px) {
  .pc-section { padding: 40px 0; }
  .pc-track { animation-duration: 20s; }
  .pc-logo { min-width: 130px; padding: 14px 20px; }
  .pc-logo-initials { width: 44px; height: 44px; font-size: .65rem; }
  .pc-track-wrap::before,
  .pc-track-wrap::after { width: 40px; }
}
