    /* ============================================
       STICKY HEADER & SUB-HEADER FIXED
       ============================================ */

    /* Remove any default body margin/padding */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
    }

    /* Top Sub-header - Sticky at very top of page */
    .top-subheader {
      position: sticky;
      top: 0;
      z-index: 1031;
      background-color: #0a1a3a;
      color: #ffffff;
      padding: 8px 0;
      font-size: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      width: 100%;
    }

    /* Carrier Portal Button - matching Client Portal style */
    .top-subheader .btn-portal.carrier {
      background-color: transparent;
      color: #f9f9f9;
      text-decoration: none;
      padding: 6px 15px;
      border-radius: 4px;
      font-weight: 500;
      font-size: 13px;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
    }

    .top-subheader .btn-portal.carrier:hover {
      background-color: #ff5f13;
      color: #ffffff;
    }

    .top-subheader .btn-portal {
      background-color: transparent;
      color: #f9f9f9;
      text-decoration: none;
      padding: 6px 15px;
      border-radius: 4px;
      font-weight: 500;
      font-size: 13px;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
    }

    .top-subheader .btn-portal:hover {
      background-color: #ff5f13;
      color: #ffffff;
    }

    /* Optional: subtle separator between portal buttons */
    .top-subheader .portal-separator {
      color: rgba(255, 255, 255, 0.2);
      margin: 0 8px;
    }

    /* Main Header - Below sub-header, transparent background */
    .header {
      position: fixed;
      top: 41px; /* Height of top sub-header */
      left: 0;
      width: 100%;
      z-index: 1030;
      background-color: transparent;
      padding: 20px 0;
      transition: all 0.3s ease-in-out;
    }

    /* When scrolled - header becomes sticky at top with solid background */
    .header.scrolled {
      top: 0;
      background-color: #0a1a3a !important;
      padding: 10px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    /* Logo transition */
    .header .logo img {
      max-height: 66px;
      transition: all 0.3s ease;
    }

    .header.scrolled .logo img {
      max-height: 50px;
    }

    /* Nav link colors */
    .header .navmenu a {
      color: rgba(255, 255, 255, 0.8);
    }

    .header.scrolled .navmenu a {
      color: rgba(255, 255, 255, 0.9);
    }

    .header .navmenu a:hover,
    .header .navmenu .active {
      color: #ff5f13 !important;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
      .top-subheader {
        position: sticky;
        top: 0;
      }
      
      .header {
        top: 80px;
        padding: 12px 0;
      }
      
      .header.scrolled {
        top: 0;
        padding: 8px 0;
      }
    }

    @media (max-width: 480px) {
      .top-subheader {
        position: sticky;
        top: 0;
      }
      
      .header {
        top: 105px;
      }
      
      .header.scrolled {
        top: 0;
      }
    }

    /* Page Title padding adjustment to account for fixed header */
    .page-title {
      padding: 180px 0 120px 0 !important;
      min-height: auto !important;
    }

    /* Mobile responsive adjustments for portal buttons */
    @media (max-width: 768px) {
      .top-subheader .btn-portal,
      .top-subheader .btn-portal.carrier {
        padding: 4px 10px;
        font-size: 11px;
      }
      
      .top-subheader .portal-separator {
        margin: 0 4px;
      }
    }

    @media (max-width: 576px) {
      .top-subheader .language-portal {
        gap: 6px;
      }
      
      .top-subheader .btn-portal span,
      .top-subheader .btn-portal.carrier span {
        display: none;
      }
      
      .top-subheader .btn-portal i,
      .top-subheader .btn-portal.carrier i {
        margin-right: 0;
        font-size: 14px;
      }
      
      .top-subheader .btn-portal,
      .top-subheader .btn-portal.carrier {
        padding: 6px 8px;
      }
    }

    /* FIX: Dropdown menu text colors when header is scrolled */
    .header.scrolled .navmenu .dropdown ul {
      background: white !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .header.scrolled .navmenu .dropdown ul li a {
      color: #0e1d34 !important;
      background: transparent !important;
    }

    .header.scrolled .navmenu .dropdown ul li a:hover {
      color: #ff5f13 !important;
      background: rgba(255, 95, 19, 0.05) !important;
      padding-left: 20px !important;
    }

    /* Also fix the parent dropdown arrow color when scrolled */
    .header.scrolled .navmenu a {
      color: rgba(255, 255, 255, 0.9);
    }

    .header.scrolled .navmenu .dropdown > a {
      color: rgba(255, 255, 255, 0.9);
    }

    /* Ensure dropdown toggle icon is visible */
    .header.scrolled .navmenu .dropdown .toggle-dropdown {
      color: rgba(255, 255, 255, 0.7);
    }

    /* Fix for mobile menu when scrolled */
    @media (max-width: 1199px) {
      .header.scrolled .navmenu ul {
        background: white !important;
      }
      
      .header.scrolled .navmenu ul li a {
        color: #0e1d34 !important;
      }
      
      .header.scrolled .navmenu ul li a:hover {
        color: #ff5f13 !important;
      }
    }

    /* Custom 3PL Page Styles */
    :root {
      --accent-3pl: #ff5f13;
    }
    
    /* Hero Section with Image Background */
    .page-title {
      position: relative;
      overflow: hidden;
      background-image: url('../assets/img/3pl-hero-bg.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    
    /* Dark overlay with 0.7 opacity */
    .page-title::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #0e1d34 0%, #1a2f4e 100%);
      opacity: 0.85;
      z-index: 1;
    }
    
    /* Keep your existing gradient circles but with lower opacity */
    .page-title::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255,95,19,0.15) 0%, rgba(255,95,19,0) 70%);
      border-radius: 50%;
      z-index: 2;
    }
    
    .page-title .container {
      position: relative;
      z-index: 10;
    }
    
/* Logo-shaped floating elements - USING PNG */
.floating-logo {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url('../assets/img/logo2.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.11;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 0 20px rgba(255, 95, 19, 0.3));
  animation: floatLogo 15s ease-in-out infinite;
}

/* Larger variations */
.floating-logo.large {
  width: 150px;
  height: 150px;
  opacity: 0.09;
}

.floating-logo.small {
  width: 60px;
  height: 60px;
  opacity: 0.1;
}

/* Position each logo differently */
.floating-logo-1 {
  top: 5%;
  left: 2%;
  width: 160px;
  height: 160px;
  animation: floatLogo 18s ease-in-out infinite;
}

.floating-logo-2 {
  top: 15%;
  right: -30px;
  width: 180px;
  height: 180px;
  animation: floatLogo 22s ease-in-out infinite reverse;
  opacity: 0.1;
}

.floating-logo-3 {
  bottom: 10%;
  left: 5%;
  width: 180px;
  height: 180px;
  animation: floatLogo 20s ease-in-out infinite 2s;
  opacity: 0.12;
}

.floating-logo-4 {
  bottom: 20%;
  right: 5%;
  width: 190px;
  height: 190px;
  animation: floatLogo 25s ease-in-out infinite 1s;
  opacity: 0.08;
}

.floating-logo-5 {
  top: 40%;
  left: 15%;
  width: 150px;
  height: 150px;
  animation: floatLogo 15s ease-in-out infinite 0.5s;
  opacity: 0.18;
}

/* Different animations for variety */
@keyframes floatLogo {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(30px, -20px) rotate(5deg) scale(1.05);
  }
  50% {
    transform: translate(-20px, -40px) rotate(10deg) scale(1.1);
  }
  75% {
    transform: translate(-40px, -15px) rotate(5deg) scale(1.05);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

/* Slower, gentler animation for some */
.floating-logo-2, .floating-logo-4 {
  animation-name: floatLogoSmooth;
}

@keyframes floatLogoSmooth {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(25px, -25px) rotate(8deg);
  }
  66% {
    transform: translate(-25px, -15px) rotate(-5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* For browsers that support backdrop-filter, add a subtle glow */
@supports (backdrop-filter: blur(5px)) {
  .floating-logo {
    filter: drop-shadow(0 0 15px rgba(255, 95, 19, 0.5));
    backdrop-filter: blur(2px);
  }
}

/* Ensure parent allows overflow */
.page-title {
  position: relative;
  overflow: hidden !important;
}

/* Make sure logos are above the overlay but below text */
.page-title::before {
  z-index: 1;
}
.page-title::after {
  z-index: 2;
}
.floating-logo {
  z-index: 3;
}
.page-title .container {
  z-index: 10;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .floating-logo {
    opacity: 0.08;
    width: 150px;
    height: 150px;
  }
  .floating-logo.large {
    width: 200px;
    height: 200px;
  }
}
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Stats Cards */
    .stats-3pl {
      margin-top: -80px;
      position: relative;
      z-index: 20;
    }
    
    .stat-card {
      background: #fff;
      padding: 40px 30px;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      text-align: center;
      transition: all 0.3s ease;
      border-bottom: 4px solid transparent;
      animation: fadeInUp 1s ease;
    }
    
    .stat-card:hover {
      transform: translateY(-10px);
      border-bottom-color: #ff5f13;
      box-shadow: 0 30px 60px rgba(255,95,19,0.15);
    }
    
    .stat-card .stat-icon {
      width: 80px;
      height: 80px;
      background: rgba(255,95,19,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      transition: 0.3s;
    }
    
    .stat-card:hover .stat-icon {
      background: #ff5f13;
      transform: scale(1.1);
    }
    
    .stat-card:hover .stat-icon i {
      color: #fff;
    }
    
    .stat-card .stat-icon i {
      font-size: 36px;
      color: #ff5f13;
      transition: 0.3s;
    }
    
    .stat-card h3 {
      font-size: 42px;
      font-weight: 800;
      color: #0e1d34;
      margin-bottom: 5px;
    }
    
    .stat-card p {
      color: #6c757d;
      font-size: 16px;
      margin: 0;
    }
    
    /* Section Titles */
    .section-title-3pl {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .section-title-3pl span {
      color: #ff5f13;
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      display: block;
      margin-bottom: 10px;
    }
    
    .section-title-3pl h2 {
      font-size: 42px;
      font-weight: 700;
      color: #0e1d34;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }
    
    .section-title-3pl h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: #ff5f13;
      border-radius: 2px;
    }
    
    .section-title-3pl p {
      color: #6c757d;
      max-width: 700px;
      margin: 20px auto 0;
      font-size: 18px;
    }
    
    /* Service Cards */
    .service-card-3pl {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
      border: 1px solid rgba(0,0,0,0.03);
    }
    
    .service-card-3pl:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(255,95,19,0.15);
    }
    
    .service-card-3pl::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 0;
      background: #ff5f13;
      transition: height 0.3s ease;
    }
    
    .service-card-3pl:hover::before {
      height: 100%;
    }
    
    .service-icon {
      padding: 30px 30px 20px;
    }
    
    .service-icon i {
      font-size: 48px;
      color: #ff5f13;
      transition: 0.3s;
    }
    
    .service-card-3pl:hover .service-icon i {
      transform: scale(1.1);
    }
    
    .service-content {
      padding: 0 30px 30px;
    }
    
    .service-content h3 {
      font-size: 24px;
      font-weight: 700;
      color: #0e1d34;
      margin-bottom: 15px;
    }
    
    .service-content p {
      color: #6c757d;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    
    /* Features Section */
    .features-3pl {
      background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }
    
    .features-3pl::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255,95,19,0.03) 0%, rgba(255,95,19,0) 70%);
    }
    
    .feature-item {
      display: flex;
      gap: 20px;
      margin-bottom: 40px;
      padding: 30px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.02);
      transition: 0.3s;
      border: 1px solid rgba(0,0,0,0.03);
    }
    
    .feature-item:hover {
      transform: translateX(10px);
      box-shadow: 0 15px 30px rgba(255,95,19,0.1);
      border-color: rgba(255,95,19,0.2);
    }
    
    .feature-icon {
      flex-shrink: 0;
      width: 70px;
      height: 70px;
      background: rgba(255,95,19,0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .feature-icon i {
      font-size: 32px;
      color: #ff5f13;
    }
    
    .feature-text h4 {
      font-size: 20px;
      font-weight: 700;
      color: #0e1d34;
      margin-bottom: 10px;
    }
    
    .feature-text p {
      color: #6c757d;
      line-height: 1.6;
      margin: 0;
    }
    
    /* CTA Section */
    .cta-3pl {
      background: linear-gradient(135deg, #0e1d34 0%, #1a2f4e 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    
    .cta-3pl::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255,95,19,0.15) 0%, rgba(255,95,19,0) 70%);
      border-radius: 50%;
    }
    
    .cta-3pl .container {
      position: relative;
      z-index: 5;
    }
    
    .cta-content {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .cta-content h2 {
      font-size: 42px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
    }
    
    .cta-content p {
      color: rgba(255,255,255,0.8);
      font-size: 18px;
      margin-bottom: 40px;
    }
    
    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      background: #ff5f13;
      color: #fff;
      padding: 18px 45px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
      border: 2px solid transparent;
    }
    
    .cta-button:hover {
      background: transparent;
      border-color: #ff5f13;
      color: #fff;
      gap: 20px;
    }
    
    .cta-button i {
      font-size: 20px;
      transition: 0.3s;
    }
    
    /* Process Timeline */
    .process-item {
      text-align: center;
      padding: 40px 30px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      position: relative;
      transition: 0.3s;
      height: 100%;
    }
    
    .process-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(255,95,19,0.15);
    }
    
    .process-number {
      width: 60px;
      height: 60px;
      background: rgba(255,95,19,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      font-size: 24px;
      font-weight: 700;
      color: #ff5f13;
      transition: 0.3s;
    }
    
    .process-item:hover .process-number {
      background: #ff5f13;
      color: #fff;
    }
    
    .process-item h3 {
      font-size: 22px;
      font-weight: 700;
      color: #0e1d34;
      margin-bottom: 15px;
    }
    
    .process-item p {
      color: #6c757d;
      margin: 0;
    }
    
    @media (max-width: 768px) {
      .page-title h1 {
        font-size: 36px;
      }
      
      .section-title-3pl h2 {
        font-size: 32px;
      }
      
      .stats-3pl {
        margin-top: 40px;
      }
      
      .floating-logo {
        opacity: 0.1;
      }
    }
    
    /* Accent color elements */
    .badge-3pl {
      background: rgba(255,95,19,0.15);
      color: #fff;
      padding: 5px 15px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255,95,19,0.3);
    }
    
    .divider-3pl {
      width: 60px;
      height: 3px;
      background: #ff5f13;
      margin: 30px 0;
    }
    
    .border-accent {
      border-color: #ff5f13 !important;
    }
    
    .text-accent {
      color: #ff5f13 !important;
    }
    
    .bg-accent-light {
      background: rgba(255,95,19,0.05);
    }
  
