
    :root {
      --brand-deep: #290FCA; /* requested */
      --brand-cyan: #00A8DC; /* requested */
      --nav-height: 92px;
    }

    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 0;
      font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
      color: #0b0b0b;
      background: #fff;
    }
    a { color: inherit; text-decoration: none; }

    /* Top header */
    .header { position: sticky; top: 0; background: #fff; z-index: 10; border-bottom: 1px solid #ececec; }
    .navbar { max-width: 1200px; margin: 0 auto; height: var(--nav-height); display: flex; align-items: center; gap: 20px; padding: 0 20px; }

    .brand { display: flex; align-items: center; gap: 16px; white-space: nowrap; }
    .logo { width: 72px; height: 72px; object-fit: contain; border-radius: 50%; background: #f3f5f7; display: block; }

    .brand-text { line-height: 1; }
    .brand-text .title { font-size: 40px; font-weight: 800; letter-spacing: 1px; }
    .brand-text .subtitle { margin-top: -4px; font-size: 20px; font-weight: 100; letter-spacing: 0.5px; }

    .spacer { flex: 1; }
.navlinks {
  display: flex;
  gap: 40px;
}

.navlinks a {
  font-weight: 600;
  position: relative; /* Needed for the underline */
  text-decoration: none; /* Remove default underline */
  color: inherit; /* Keep your current text color */
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* space between text and line */
  width: 0%;
  height: 2px;
  background-color: #1654D2;
  transition: width 0.3s ease;
}

.navlinks a:hover::after {
  width: 100%;
}


    /* Hero banner */
    .hero { position: relative; overflow: hidden; }
    .hero .gradient { width: 100%; height: 380px; background: linear-gradient(90deg, var(--brand-deep), var(--brand-cyan)); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
    .hero .inner { max-width: 1200px; width: 100%; text-align: center; color: #fff; }
    .hero h1 { font-size: 56px; margin: 0 0 14px; letter-spacing: 1px; }
    .hero p { font-size: 20px; margin: 0; opacity: .95; }

    /* Decorative blue squares (right side) */
    .decor { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); pointer-events: none; }
    .square { width: 130px; height: 130px; background: rgba(0,168,220,0.35); border: 2px solid rgba(255,255,255,0.25); box-shadow: 0 8px 20px rgba(0,0,0,0.08); border-radius: 6px; position: absolute; }
    .square.s1 { right: 0;    top: 40px; }
    .square.s2 { right: 140px; top: 160px; }
    .square.s3 { right: 20px; top: 280px; }

    /* Small tweaks for narrower screens */
    @media (max-width: 900px) {
      .brand-text .title { font-size: 28px; }
      .brand-text .subtitle { font-size: 14px; }
      .logo { width: 56px; height: 56px; }
      .navlinks { gap: 20px; }
      .hero .gradient { height: 320px; }
      .hero h1 { font-size: 40px; }
      .square { width: 90px; height: 90px; }
      .square.s2 { right: 110px; top: 140px; }
      .square.s1 { top: 20px; }
      .square.s3 { top: 230px; }
    }

    /* Tiny helper so you can attach your logo without editing the HTML */
    .logo-uploader { position: absolute; left: 12px; top: calc(var(--nav-height) + 8px); display: flex; align-items: center; gap: 8px; background: #fff; padding: 6px 10px; border: 1px solid #e5e7eb; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,.04); }
    .logo-uploader label { font-size: 12px; font-weight: 600; }
    .logo-uploader input { font-size: 12px; }
    @media (max-width: 700px) { .logo-uploader { display: none; } }

    /* Section scoped styles (paste as-is) */
    :root{
      --mf-container: 1180px;
      --accent-blue: #165EDC;     /* tuned to match the screenshot's blue heading */
      --muted-text: #222222;
      --subtle: #6b7280;
      --rounded: 28px;
      --gap: 28px;
      --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    }

    .mf-services { background: #fff; color: var(--muted-text); font-family: var(--font); margin-top: 28px;}

    .mf-container { max-width: var(--mf-container); margin: 0 auto; padding: 0 20px; }

   .eyebrow {
  display: flex;
  flex-direction: column; /* stack span & underline */
  align-items: flex-start; /* keep left-aligned */
  gap: 4px; /* space between span & underline */
}

.eyebrow span {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-text);
}

.eyebrow-underline {
  display: block;
  width: 86px;
  height: 4px;
  border-radius: 4px;
  background: var(--accent-blue);
  box-shadow: 0 2px 0 rgba(0,0,0,0.06);
}

    /* Large title (matches screenshot layout) */
    .mf-main-title { 
      font-size: clamp(28px, 4.4vw, 44px); 
      line-height: 1.02; 
      margin: 0 0 10px; 
      font-weight: 800;
      letter-spacing: -0.2px;
      color: #0e1420;
    }
    .mf-title-break { display:block; } /* force line break like screenshot */

    .mf-subtitle { margin: 0 0 26px; font-size: 18px; color: #222; opacity: .85; font-weight: 500; }

    /* Visual (rounded image) */
    .mf-visual { margin: 6px 0 28px; border-radius: var(--rounded); overflow: hidden; box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06); border: 1px solid rgba(15,23,42,0.04); }
    .mf-visual img { display:block; width: 100%; height: 340px; object-fit: cover; }

    /* Two column section */
    .mf-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; margin-top: 8px; }
    .muted-label { font-size: 16px; color: var(--subtle); margin-bottom: 12px; font-weight:600; }

    .mf-blue-head {
      color: var(--accent-blue);
      font-size: clamp(26px, 4vw, 34px);
      margin: 0 0 6px;
      line-height: 1.05;
      font-weight: 800;
    }
    .mf-blue-head .mf-linebreak { display:block; }

    .mf-body {
      font-size: 16px;
      color: #1f2937;
      line-height: 1.68;
      margin: 0;
      font-weight: 400;
    }

    /* Responsive */
    @media (max-width: 980px) {
      .mf-visual img { height: 280px; }
      .mf-two-col { grid-template-columns: 1fr; gap: 18px; }
      .mf-blue-head { font-size: clamp(22px, 6vw, 28px); }
    }
    @media (max-width: 520px) {
      .mf-main-title { font-size: 26px; }
      .mf-visual img { height: 210px; }
      .eyebrow-underline { width: 60px; height: 3px; }
    }

/* --- Base Animation States --- */
.fade-up, .fade-zoom, .fade-slide-left, .fade-slide-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-zoom {
  transform: scale(0.95);
}
.fade-zoom.show {
  opacity: 1;
  transform: scale(1);
}

.fade-slide-left {
  transform: translateX(-50px);
}
.fade-slide-left.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-slide-right {
  transform: translateX(50px);
}
.fade-slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* --- Staggered Delays --- */
.delay-0 { transition-delay: 0.1s; }
.delay-1 { transition-delay: 0.4s; }
.delay-2 { transition-delay: 0.7s; }
.delay-3 { transition-delay: 1s; }


    :root{
      --brand-blue: #1654D2;
      --max-width: 1150px;
      --radius: 28px;
      --gap: 48px;
      --text-color: #111317;
    }

    /* Reset-ish */
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      color:var(--text-color);
      background:#ffffff;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }

    /* Page container */
    .services {
      max-width: var(--max-width);
      margin: 60px auto;
      padding: 40px 28px;
    }

    /* Each row uses a 2-column grid (text + image) */
    .service-row{
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: var(--gap);
      align-items: start;
      margin-bottom: 84px;
    }

    /* When row is reversed (image on left) */
    .service-row.reverse{
      grid-template-columns: 420px 1fr;
    }

    /* Text column */
    .service-col--text{
      max-width: 640px;
    }

    .service-title{
      font-size: 32px;
      line-height: 1.04;
      margin: 0 0 18px 0;
      font-weight: 700;
      color: var(--brand-blue);
      position: relative;
      display: inline-block; /* so underline aligns with text width */
      padding-bottom: 8px;
    }

    /* Primary solid blue bar under the title (as in design) */
    .service-title::after{
      content: "";
      position: absolute;
      left: 0;
      bottom: -12px;
      height: 6px;
      width: 84px;
      background: var(--brand-blue);
      border-radius: 4px;
    }

    /* thin secondary accent line slightly offset (mimics the design's two-line look) */
    .service-title::before{
      content: "";
      position: absolute;
      left: 0;
      bottom: -20px;
      height: 2px;
      width: 44px;
      background: var(--brand-blue);
      opacity: 0.95;
      border-radius: 2px;
    }

    .service-desc{
      font-size: 18px;
      line-height: 1.7;
      margin: 0;
      color: #121212;
    }

    /* Image column */
    .service-col--image img{
      width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius);
      object-fit: cover;
      box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    }

    /* Small tweak so taller images don't overflow the visual balance */
    .service-col--image img.tall {
      max-height: 360px;
      width: 100%;
      object-fit: cover;
    }

    /* Responsive behavior: stack columns on narrow viewports */
    @media (max-width: 980px){
      .service-row,
      .service-row.reverse {
        grid-template-columns: 1fr;
      }
      .service-col--image img.tall { max-height: 360px; }
      .service-row { gap: 30px; margin-bottom: 48px; }
    }

    @media (max-width: 480px){
      .service-title{ font-size: 24px; }
      .service-desc{ font-size: 16px; }
      .services{ padding: 20px 16px; }
    }
  /* --- Animation Base Styles --- */
.fade-slide-left, .fade-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-slide-left {
  transform: translateX(-60px);
}

.fade-slide-left.show,
.fade-slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* --- Staggered Delays --- */
.delay-0 { transition-delay: 0.1s; }
.delay-1 { transition-delay: 0.4s; }
.delay-2 { transition-delay: 0.7s; }

  
  /* ===============================
        CARGO & PROCUREMENT STYLES
  =============================== */
  .cargo-procurement {
    max-width: 1150px;
    margin: 60px auto;
    padding: 40px 28px;
  }

  .cp-row {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
    margin-bottom: 84px;
  }

  .cp-row.reverse {
    grid-template-columns: 420px 1fr;
  }

  .cp-col--text {
    max-width: 640px;
  }

  .cp-title {
    font-size: 32px;
    font-weight: 700;
    color: #1654D2;
    margin: 0 0 18px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
  }

  .cp-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    height: 6px;
    width: 84px;
    background: #1654D2;
    border-radius: 4px;
  }

  .cp-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    height: 2px;
    width: 44px;
    background: #1654D2;
    opacity: 0.95;
    border-radius: 2px;
  }

  .cp-desc {
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    color: #121212;
  }

  .cp-col--image img.cp-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  }

  @media (max-width: 980px) {
    .cp-row,
    .cp-row.reverse {
      grid-template-columns: 1fr;
    }
    .cp-row {
      gap: 30px;
      margin-bottom: 48px;
    }
  }

  @media (max-width: 480px) {
    .cp-title {
      font-size: 24px;
    }
    .cp-desc {
      font-size: 16px;
    }
    .cargo-procurement {
      padding: 20px 16px;
    }
  }
/* --- Pop-in Animations --- */
.fade-rise, .fade-scale {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Text gently rises into place */
.fade-rise {
  transform: translateY(30px);
}
.fade-rise.show {
  opacity: 1;
  transform: translateY(0);
}

/* Image softly scales up from 90% */
.fade-scale {
  transform: scale(0.9);
}
.fade-scale.show {
  opacity: 1;
  transform: scale(1);
}

/* --- Delay Options for Staggered Reveal --- */
.delay-0 { transition-delay: 0.1s; }
.delay-1 { transition-delay: 0.4s; }
.delay-2 { transition-delay: 0.7s; }

  /* ===============================
        HAULAGE & LOGISTICS STYLES
  =============================== */
  .haulage-logistics {
    max-width: 1150px;
    margin: 60px auto;
    padding: 40px 28px;
  }

  .hl-row {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
    margin-bottom: 84px;
  }

  .hl-col--text {
    max-width: 640px;
  }

  .hl-title {
    font-size: 32px;
    font-weight: 700;
    color: #1654D2;
    margin: 0 0 18px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
  }

  .hl-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    height: 6px;
    width: 84px;
    background: #1654D2;
    border-radius: 4px;
  }

  .hl-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    height: 2px;
    width: 44px;
    background: #1654D2;
    opacity: 0.95;
    border-radius: 2px;
  }

  .hl-desc {
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    color: #121212;
  }

  .hl-col--image img.hl-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  }
/* --- Bounce-in Animations --- */
.slide-bounce-left, .slide-bounce-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.6s ease-out;
}

/* Text slides from left with a slight overshoot */
.slide-bounce-left {
  transform: translateX(-60px);
}
.slide-bounce-left.show {
  opacity: 1;
  transform: translateX(0);
  animation: bounceInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Image slides from right with a slight overshoot */
.slide-bounce-right {
  transform: translateX(60px);
}
.slide-bounce-right.show {
  opacity: 1;
  transform: translateX(0);
  animation: bounceInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Keyframes for bounce overshoot */
@keyframes bounceInLeft {
  0%   { transform: translateX(-60px); }
  60%  { transform: translateX(8px); }
  80%  { transform: translateX(-4px); }
  100% { transform: translateX(0); }
}

@keyframes bounceInRight {
  0%   { transform: translateX(60px); }
  60%  { transform: translateX(-8px); }
  80%  { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

/* Stagger delays */
.delay-0 { transition-delay: 0.1s; animation-delay: 0.1s; }
.delay-1 { transition-delay: 0.4s; animation-delay: 0.4s; }

  @media (max-width: 980px) {
    .hl-row {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 48px;
    }
  }

  @media (max-width: 480px) {
    .hl-title {
      font-size: 24px;
    }
    .hl-desc {
      font-size: 16px;
    }
    .haulage-logistics {
      padding: 20px 16px;
    }
  }
/* Footer */
.footer {
  background: linear-gradient(to right, #009fe3, #003b6f);
  color: white;
  padding: 50px 10% 20px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: flex-start;
}

.footer-logo img {
  max-width: 70px;
  margin-bottom: 10px;
}

.footer-logo h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-links p, .footer-company ul li, .footer-help p {
  margin: 8px 0;
  font-size: 0.9rem;
}

.footer-company ul {
  list-style: none;
  padding: 0;
}

.footer-company ul li a {
  color: white;
  text-decoration: none;
}

.newsletter {
  display: flex;
  margin: 15px 0;
}

.newsletter input {
  padding: 10px;
  border-radius: 20px 0 0 20px;
  border: none;
  outline: none;
  flex: 1;
}

.newsletter button {
  padding: 10px 15px;
  border-radius: 0 20px 20px 0;
  border: none;
  background: #5e2ff5;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.faq-link {
  color: white;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
}
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 900px){
    .row{grid-template-columns:1fr; gap:22px}
    .footer-grid{grid-template-columns:1fr 1fr}
  }
  @media (max-width: 600px){
    .nav{gap:18px}
    .bubbles{display:none}
    .bubbles-small{display:none}
    .footer-grid{grid-template-columns:1fr}
  }
  