:root {
  --primary: #291670;
  --primary-dark: #0d47a1;
  --primary-light: #1e88e5;
  --secondary: #00923f;
  --secondary-dark: #1b5e20;
  --secondary-light: #43a047;
  --accent: #ff6f00;
  --dark: #0f1b2d;
  --dark-2: #1a2d44;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-600: #6c757d;
  --text: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(21, 101, 192, .12);
  --shadow-md: 0 6px 24px rgba(21, 101, 192, .18);
  --shadow-lg: 0 12px 48px rgba(21, 101, 192, .22);
  --transition: all .3s ease;
  --radius: 10px;
  --radius-lg: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
  line-height: 1.7;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.text-primary-custom {
  color: var(--primary) !important;
}

.text-secondary-custom {
  color: var(--secondary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.bg-primary-custom {
  background: var(--primary) !important;
}

.bg-secondary-custom {
  background: var(--secondary) !important;
}

.bg-dark-custom {
  background: var(--dark) !important;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
}

.badge-label {
  display: inline-block;
  background: rgba(21, 101, 192, .1);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: .85rem;
}

.btn-primary-custom {
  background: var(--speedex-crimson) !important;
  border: 2px solid var(--speedex-crimson) !important;
  color: var(--white) !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: .95rem !important;
  letter-spacing: .02em;
  transition: var(--transition) !important;
  display: inline-flex !important;
  align-items: center;
  gap: .5rem;
}

.btn-primary-custom:hover {
  background: #b20808 !important;
  border-color: #b20808 !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(211, 10, 10, 0.25) !important;
}

.btn-secondary-custom {
  background: var(--speedex-green) !important;
  border: 2px solid var(--speedex-green) !important;
  color: var(--white) !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: .95rem !important;
  transition: var(--transition) !important;
  display: inline-flex !important;
  align-items: center;
  gap: .5rem;
}

.btn-secondary-custom:hover {
  background: #007733 !important;
  border-color: #007733 !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 146, 63, 0.25) !important;
}

.btn-outline-custom {
  background: transparent !important;
  border: 2px solid var(--white) !important;
  color: var(--white) !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
  display: inline-flex !important;
  align-items: center;
  gap: .5rem;
}

.btn-outline-custom:hover {
  background: var(--white) !important;
  color: var(--speedex-navy) !important;
  transform: translateY(-2px);
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  margin: 1rem auto 1.5rem;
}

.divider.left {
  margin-left: 0;
}

#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
}

.whatsapp-popup {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 0;
  width: 320px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.96);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  pointer-events: none;
}

.whatsapp-widget.is-open .whatsapp-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-popup-header {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1.1rem 1.15rem;
  background: #25d366;
  color: var(--white);
}

.whatsapp-popup-header > .fab {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.whatsapp-popup-header h4 {
  margin: 0 0 .25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.whatsapp-popup-header p {
  margin: 0;
  font-size: .78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .92);
}

.whatsapp-popup-body {
  padding: .85rem 0 .5rem;
}

.whatsapp-popup-note {
  margin: 0 1.15rem .65rem;
  font-size: .72rem;
  color: #9aa0a6;
}

.whatsapp-contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.15rem;
  text-decoration: none;
  color: inherit;
  border-left: 3px solid #25d366;
  transition: background .2s ease;
}

.whatsapp-contact-item + .whatsapp-contact-item {
  border-top: 1px solid #f0f0f0;
}

.whatsapp-contact-item:hover {
  background: #f7fbf8;
}

.whatsapp-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.whatsapp-contact-info {
  flex: 1;
  min-width: 0;
}

.whatsapp-contact-info strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #3b3b3b;
  margin-bottom: .15rem;
}

.whatsapp-contact-info span {
  display: block;
  font-size: .78rem;
  color: #8a8f94;
}

.whatsapp-contact-arrow {
  font-size: 1.1rem;
  color: #25d366;
  flex-shrink: 0;
}

.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  background: #25d366;
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  background: #1ebe57;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.whatsapp-icon-close {
  display: none;
}

.whatsapp-widget.is-open .whatsapp-icon-open {
  display: none;
}

.whatsapp-widget.is-open .whatsapp-icon-close {
  display: block;
  font-size: 1.35rem;
}

.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
  padding: .45rem 0;
}

.top-bar a {
  color: rgba(255, 255, 255, .85);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar .divider-v {
  border-left: 1px solid rgba(255, 255, 255, .25);
  height: 14px;
  display: inline-block;
  margin: 0 .75rem;
  vertical-align: middle;
}

.navbar-custom {
  background: var(--white) !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
  padding: .75rem 0;
  transition: var(--transition);
}

.navbar-custom.scrolled {
  box-shadow: var(--shadow-md);
  padding: .5rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.navbar-brand img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

@media (max-width: 575px) {
  .navbar-brand {
    max-width: calc(100% - 60px);
  }

  .navbar-brand img {
    height: 38px;
    max-width: 150px;
  }
}

.navbar-brand .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.navbar-brand .brand-text {
  line-height: 1.15;
}

.navbar-brand .brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  letter-spacing: -.01em;
}

.navbar-brand .brand-sub {
  font-size: .68rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-link-custom {
  color: var(--dark) !important;
  font-weight: 600;
  font-size: .9rem;
  padding: .5rem .9rem !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: .9rem;
  right: .9rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .3s ease;
  border-radius: 2px;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary) !important;
  background: rgba(21, 101, 192, .06);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--speedex-crimson) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: .6rem 1.4rem !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: #b20808 !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(211, 10, 10, 0.2) !important;
}

.page-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--dark-2) 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner .banner-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
}

.page-banner .banner-shape svg {
  display: block;
  width: 100%;
}

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
}

.breadcrumb-custom {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: .5rem;
}

.breadcrumb-custom li {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
}

.breadcrumb-custom li a {
  color: rgba(255, 255, 255, .85);
}

.breadcrumb-custom li a:hover {
  color: var(--white);
}

.breadcrumb-custom li.active {
  color: var(--white);
}

.breadcrumb-custom li:not(:last-child)::after {
  content: '/';
  margin-left: .5rem;
  opacity: .5;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-section {
  min-height: auto;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../images/banner.webp") no-repeat center / cover;
  z-index: 0;
  animation: heroZoom 8s ease-in-out infinite alternate;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-section>* {
  position: relative;
  z-index: 2;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .15;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--secondary-light);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: 50px;
  left: -80px;
  animation-delay: -4s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.06);
  }
}

.hero-eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--secondary-light);
  border-radius: 3px;
}

.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--secondary-light);
  border-radius: 3px;
}

.hero-eyebrow img {
  width: 200px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: linear-gradient(90deg, #81d4fa, #a5d6a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-small {
  font-size: 18px;
  line-height: 1.5 !important;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 10px;
}

.hero-desc {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #ffffff;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat-item .stat-label {
  font-size: .78rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .3rem;
}

.hero-img-wrap {
  position: relative;
  z-index: 1;
}

.hero-card {
  background: #ffffff;
  backdrop-filter: blur(12px);
  border: 1px solid #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.hero-card-sub {
  font-size: .82rem;
  opacity: .75;
}

.floating-badge {
  position: absolute;
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius);
  padding: .75rem 1.25rem;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: var(--shadow-lg);
  animation: badgeFloat 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  z-index: 9;
}

.floating-badge-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: 15%;
  left: -20px;
  animation-delay: -1.5s;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-graphic {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-graphic::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-graphic-icon {
  font-size: 7rem;
  color: rgba(255, 255, 255, .15);
  text-align: center;
  display: block;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-feature-list li {
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.hero-feature-list li:last-child {
  border-bottom: none;
}

.hero-feature-list li i {
  color: var(--secondary-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: .45;
}

@media (prefers-reduced-motion: reduce) {
  .hero-particles-canvas {
    display: none;
  }
}

.hero-typewriter-wrap {
  display: inline;
}

.hero-cursor {
  animation: cursorBlink .7s step-end infinite;
  font-weight: 300;
}

@keyframes cursorBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-ticker-wrap {
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50px;
  margin: 1.5rem 0;
  padding: .55rem 0;
}

.hero-ticker-list {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}

.hero-ticker-list span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
  font-weight: 600;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, .12);
  flex-shrink: 0;
}

.hero-ticker-list span:last-child {
  border-right: none;
}

.hero-ticker-list span i {
  color: var(--secondary-light);
  font-size: .85rem;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hero-track-form {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  margin-bottom: 2rem;
}

.hero-track-label {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hero-track-fields {
  display: flex;
  gap: .6rem;
  margin-bottom: .7rem;
}

.hero-track-select {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  border-radius: 8px;
  padding: .65rem .9rem;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  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 d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.2rem;
  outline: none;
}

.hero-track-select option {
  background: var(--primary-dark);
  color: #fff;
}

.hero-track-input {
  flex: 1;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  border-radius: 8px;
  padding: .65rem 1rem;
  font-size: .9rem;
  outline: none;
  transition: var(--transition);
}

.hero-track-input::placeholder {
  color: #fff;
}

.hero-track-input:focus {
  border-color: var(--secondary-light);
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 0 0 3px rgba(67, 160, 71, .2);
}

.hero-track-btn {
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: .78rem 1.5rem;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  letter-spacing: .02em;
}

.hero-track-btn:hover {
  background: linear-gradient(90deg, var(--secondary-dark), var(--secondary));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 146, 63, .4);
}

@media (max-width: 767px) {
  .hero-ticker-list span {
    padding: 0 1.1rem;
  }

  .hero-track-fields {
    flex-direction: column;
  }

  .hero-track-select {
    width: 100%;
  }
}

.tracking-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-top: -70px;
  position: relative;
  z-index: 10;
}

.tracking-bar .form-control {
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  padding: .75rem 1.1rem;
  font-size: .95rem;
  transition: var(--transition);
}

.tracking-bar .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, .1);
}

.tracking-bar .track-btn {
  background: var(--primary);
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: .75rem 2rem;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.tracking-bar .track-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform .4s ease;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(21, 101, 192, .1), rgba(46, 125, 50, .1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  transform: rotate(8deg) scale(1.05);
}

.service-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}

.service-card p {
  color: var(--text-light);
  font-size: .92rem;
  margin-bottom: 1.25rem;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}

.service-link:hover {
  gap: .75rem;
  color: var(--primary-dark);
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  object-fit: cover;
}

.about-img-thumb {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-thumb img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-experience-badge .exp-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-experience-badge .exp-text {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  opacity: .9;
}

.feature-check {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1rem;
}

.feature-check-icon {
  width: 30px;
  height: 30px;
  background: rgba(46, 125, 50, .12);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.feature-check p {
  font-size: .93rem;
  color: var(--text);
  margin: 0;
}

.feature-check strong {
  color: var(--dark);
}

.counter-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-item {
  text-align: center;
  color: #fff;
  padding: 1rem;
}

.counter-item .counter-icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
  opacity: .85;
  display: block;
}

.counter-item .counter-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: .1rem;
}

.counter-item .counter-suffix {
  font-size: 1.8rem;
  font-weight: 700;
  align-self: flex-start;
  padding-top: .25rem;
}

.counter-item .counter-label {
  font-size: .9rem;
  opacity: .8;
  margin-top: .5rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}

.counter-divider {
  width: 1px;
  background: rgba(255, 255, 255, .2);
  margin: auto;
}

.process-section {
  background: var(--gray-100);
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(21, 101, 192, .08), rgba(46, 125, 50, .08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 1rem auto;
  transition: var(--transition);
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.step-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}

.step-card p {
  font-size: .88rem;
  color: var(--text-light);
  margin: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-card:hover {
  background: var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(21, 101, 192, .1), rgba(46, 125, 50, .1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.why-content h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .4rem;
}

.why-content p {
  font-size: .88rem;
  color: var(--text-light);
  margin: 0;
}

.testimonials-section {
  background: var(--gray-100);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: rgba(21, 101, 192, .08);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  color: var(--accent);
  font-size: .9rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--text);
  font-size: .93rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}

.author-name {
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark);
}

.author-role {
  font-size: .78rem;
  color: var(--text-light);
}

.testimonials-carousel {
  position: relative;
}

.testimonials-carousel .owl-stage-outer {
  padding: .5rem 0 1rem;
}

.testimonials-carousel .owl-item {
  display: flex;
}

.testimonials-carousel .item {
  display: flex;
  width: 100%;
}

.testimonials-carousel .testimonial-card {
  width: 100%;
}

.testimonials-carousel .owl-nav {
  margin-top: 1.5rem;
  text-align: center;
}

.testimonials-carousel .owl-nav button.owl-prev,
.testimonials-carousel .owl-nav button.owl-next {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: var(--white) !important;
  border: 1px solid var(--gray-200) !important;
  color: var(--primary) !important;
  font-size: .9rem;
  margin: 0 .4rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonials-carousel .owl-nav button.owl-prev:hover,
.testimonials-carousel .owl-nav button.owl-next:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}

.testimonials-carousel .owl-dots {
  margin-top: 1.25rem;
}

.testimonials-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: var(--gray-200);
  transition: var(--transition);
}

.testimonials-carousel .owl-dot.active span,
.testimonials-carousel .owl-dot:hover span {
  background: var(--primary);
}

.client-logo {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.2rem 1.75rem;
  text-align: center;
  color: var(--gray-600);
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 70px;
}

.client-logo:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.vision-mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  border-top: 5px solid var(--primary);
  transition: var(--transition);
}

.vision-mission-card.secondary-border {
  border-top-color: var(--secondary);
}

.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.vm-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.vm-icon.blue {
  background: rgba(21, 101, 192, .1);
  color: var(--primary);
}

.vm-icon.green {
  background: rgba(46, 125, 50, .1);
  color: var(--secondary);
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-detail-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.service-detail-body {
  padding: 1.75rem;
}

.service-detail-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}

.service-detail-body p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  font-size: .88rem;
  color: var(--text);
  padding: .35rem 0;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.service-features li i {
  color: var(--secondary);
  font-size: .8rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--primary);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  padding: .85rem 1.2rem;
  font-size: .95rem;
  transition: var(--transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, .1);
}

.contact-form-card label {
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
  margin-bottom: .4rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-info-icon.blue {
  background: rgba(21, 101, 192, .1);
  color: var(--primary);
}

.contact-info-icon.green {
  background: rgba(46, 125, 50, .1);
  color: var(--secondary);
}

.contact-info-icon.orange {
  background: rgba(255, 111, 0, .1);
  color: var(--accent);
}

.contact-info-text h6 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: .2rem;
}

.contact-info-text p,
.contact-info-text a {
  font-size: .95rem;
  color: var(--dark);
  font-weight: 600;
  margin: 0;
}

.contact-info-text a:hover {
  color: var(--primary);
}

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  background: linear-gradient(135deg, rgba(21, 101, 192, .1), rgba(46, 125, 50, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-200);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: var(--white);
  color: var(--text);
  padding-top: 5rem;
  border-top: 1px solid var(--gray-200);
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer-brand .brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.footer-brand .brand-sub {
  font-size: .72rem;
  color: var(--secondary-light);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer p {
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer h6 {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dark);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .75rem;
}

.footer h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary-light));
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: .55rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: .9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-links a::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-links a:hover::before {
  background: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: .85rem;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: .9rem;
  margin-top: .25rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: var(--gray-100);
  color: var(--text-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.social-links a:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.social-links a.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-links a.tw:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.social-links a.li:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.social-links a.yt:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.social-links a.ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #cc2366;
}

.social-links a.tt:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.footer-bottom {
  background: var(--gray-100);
  padding: 1.25rem 0;
  margin-top: 3rem;
  font-size: .83rem;
  color: var(--text-light);
  border-top: 1px solid var(--gray-200);
}

.footer-bottom a {
  color: var(--primary);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: var(--primary-dark);
}

.section-pad {
  padding: 5.5rem 0;
}

.section-pad-sm {
  padding: 3.5rem 0;
}

.alert-form {
  border-radius: 8px;
  font-size: .9rem;
  padding: .85rem 1.2rem;
  display: none;
}

.alert-form.show {
  display: block;
}

.section-bg-alt {
  background: var(--gray-100);
}

.card-hover {
  transition: var(--transition);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md) !important;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 50px 0;
    min-height: auto;
  }

  .tracking-bar {
    margin-top: 0;
    border-radius: var(--radius);
  }

  .about-img-thumb {
    display: none;
  }

  .about-experience-badge {
    left: 0;
    top: 10px;
  }

  .floating-badge {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-stats {
    gap: 1.25rem;
  }

  .contact-form-card {
    padding: 1.75rem;
  }

  .footer {
    padding-top: 3.5rem;
  }

  .counter-divider {
    display: none;
  }

  .top-bar .d-md-block {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .whatsapp-widget {
    bottom: 20px;
    left: 16px;
  }

  .whatsapp-popup {
    width: calc(100vw - 32px);
    max-width: 320px;
  }

  .whatsapp-float {
    padding: .55rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
  }

  .whatsapp-widget.is-open .whatsapp-float {
    width: 50px;
    height: 50px;
  }
}

/* ==========================================================================
   SPEEDEX NEW DESIGN SYSTEM AND HOME PAGE REDESIGN
   ========================================================================== */

:root {
  --speedex-crimson: #d30a0a;
  --speedex-green: #00923f;
  --speedex-navy: #061327;
  --speedex-blue-dark: #003666;
}

/* New Top Bar styling */
.top-bar-new {
  background-color: var(--speedex-navy);
  color: #fff;
  font-size: 0.82rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
}
.top-bar-new a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.top-bar-new a:hover {
  color: var(--speedex-green);
}
.top-bar-new .divider-v-new {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 12px;
  vertical-align: middle;
}
.top-bar-new select.location-select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  padding-right: 15px;
}
.top-bar-new select.location-select option {
  background: var(--speedex-navy);
  color: #fff;
}

/* New Navbar styling */
.navbar-custom-new {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: all 0.3s ease;
}
.navbar-custom-new.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}
.navbar-custom-new .nav-link-new {
  color: var(--speedex-navy) !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 16px !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
}
.navbar-custom-new .nav-link-new:hover {
  color: var(--speedex-green) !important;
}
.navbar-custom-new .btn-ship-now {
  background: var(--speedex-crimson);
  border: 1px solid var(--speedex-crimson);
  color: #fff !important;
  font-weight: 700;
  padding: 10px 24px !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.navbar-custom-new .btn-ship-now:hover {
  background: #b20808;
  border-color: #b20808;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(211, 10, 10, 0.25);
}

/* New Hero styling */
.hero-section-new {
  position: relative;
  background: url('../images/banner_new.webp') no-repeat center center / cover;
  padding: 110px 0;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section-new > * {
  position: relative;
  z-index: 2;
}
.hero-section-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 19, 39, 0.3);
  /* background: linear-gradient(90deg, rgba(6, 19, 39, 0.95) 0%, rgba(6, 19, 39, 0.82) 45%, rgba(6, 19, 39, 0.25) 100%); */
  z-index: 1;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  color: var(--speedex-green);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero-badge-pill::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--speedex-green);
  margin-right: 8px;
}
.hero-title-new {
  color: #fff;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title-new span.green-text {
  color: var(--speedex-green);
}
.hero-desc-new {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 35px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-btn-group {
  display: flex;
  gap: 15px;
  margin-bottom: 45px;
}

.hero-features-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
}
.hero-feature-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-feature-title {
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-feature-title i {
  color: var(--speedex-green);
  font-size: 0.95rem;
}
.hero-feature-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  padding-left: 20px;
  line-height: 1.3;
}
.carousel-dots-new {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}
.carousel-dots-new span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}
.carousel-dots-new span.active {
  background: var(--speedex-green);
  width: 24px;
  border-radius: 4px;
}

/* Tracking Card styling */
.track-card-new {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  max-width: 440px;
  margin-left: auto;
}
.track-card-title {
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 22px;
}
.track-card-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 25px;
  gap: 25px;
}
.track-tab {
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.92rem;
  padding-bottom: 12px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.track-tab:hover {
  color: var(--primary);
}
.track-tab.active {
  color: var(--primary);
}
.track-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--speedex-green);
}
.track-input-group {
  position: relative;
  margin-bottom: 20px;
}
.track-input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}
.track-input-new {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  outline: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: var(--text);
  background: var(--gray-100);
}
.track-input-new::placeholder {
  color: var(--text-light);
}
.track-input-new:focus {
  border-color: var(--speedex-green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 146, 63, 0.15);
}
.track-btn-new {
  width: 100%;
  background: var(--speedex-green);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.track-btn-new:hover {
  background: #007733;
  box-shadow: 0 6px 15px rgba(0, 146, 63, 0.25);
  transform: translateY(-1px);
}
.track-card-help {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.track-card-help a {
  color: var(--speedex-green);
  font-weight: 700;
  text-decoration: none;
}
.track-card-help a:hover {
  color: #007733;
  text-decoration: underline;
}
.track-multiple-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 0;
  border-top: 1px solid var(--gray-200);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}
.track-multiple-link:hover {
  color: var(--speedex-green);
}
.track-multiple-link-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.track-multiple-link-content i {
  color: var(--speedex-green);
}
.track-multiple-link > .fa-chevron-right {
  color: var(--text-light);
}

/* Service cards row styling */
.services-row-new {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding: 10px 0;
}
@media (max-width: 1200px) {
  .services-row-new {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .services-row-new {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .services-row-new {
    grid-template-columns: 1fr;
  }
}
.service-card-new {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}
.service-icon-box-new {
  width: 50px;
  height: 50px;
  background: var(--speedex-navy);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}
.service-card-new h5 {
  color: var(--speedex-navy);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 12px;
}
.service-card-new p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-link-new {
  color: var(--speedex-green);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.service-link-new:hover {
  color: #007733;
}

/* Lower Banners Row styling */
.promo-row-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 1200px) {
  .promo-row-new {
    gap: 15px;
  }
  .promo-card-new {
    padding: 20px !important;
    min-height: 300px !important;
  }
}
@media (max-width: 991px) {
  .promo-row-new {
    grid-template-columns: 1fr;
  }
  .promo-card-new {
    min-height: 250px !important;
  }
}
.promo-card-new {
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.promo-card-navy {
  background-color: #061327;
  color: #fff;
}
.promo-card-navy .promo-card-image-new {
  mix-blend-mode: screen;
}
.promo-card-gray {
  background-color: #f4f6f5;
  color: var(--speedex-navy);
}
.promo-card-gray .promo-card-image-new {
  mix-blend-mode: multiply;
}
.promo-card-blue {
  background-color: #e8f0fe;
  color: var(--speedex-navy);
}
.promo-card-blue .promo-card-image-new {
  mix-blend-mode: multiply;
}
.promo-card-content {
  flex: 0 0 60%;
  max-width: 60%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-card-new h4 {
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
.promo-card-new h4 span.green-text {
  color: var(--speedex-green);
}
.promo-card-new p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.9;
}
.promo-card-navy p {
  color: rgba(255, 255, 255, 0.8);
}
.promo-card-gray p, .promo-card-blue p {
  color: var(--text-light);
}
.promo-card-new .btn-promo {
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  transition: all 0.3s ease;
}
.promo-card-navy .btn-promo {
  background: #fff;
  color: var(--speedex-navy);
}
.promo-card-navy .btn-promo:hover {
  background: var(--speedex-green);
  color: #fff;
  transform: translateY(-1px);
}
.promo-card-blue .btn-promo {
  background: var(--speedex-navy);
  color: #fff;
}
.promo-card-blue .btn-promo:hover {
  background: var(--speedex-green);
  color: #fff;
  transform: translateY(-1px);
}
.promo-card-image-wrap {
  flex: 0 0 40%;
  max-width: 40%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.promo-card-image-new {
  max-width: 120%;
  max-height: 220px;
  object-fit: contain;
  align-self: flex-end;
  margin-bottom: -30px;
  margin-right: -30px;
}
.app-badges-new {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  z-index: 2;
  flex-wrap: wrap;
}
.app-badges-new a {
  display: inline-block;
}
.app-badges-new img {
  height: 32px;
  width: auto;
}

/* Stats bar styling */
.stats-bar-new {
  background: #fff;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.04), 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: 30px 0;
  margin-top: 60px;
  border-radius: 12px;
}
.stats-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stats-item-new {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.stats-item-new + .stats-item-new {
  border-left: 1px solid #f1f3f5;
  padding-left: 20px;
}
@media (max-width: 991px) {
  .stats-item-new {
    flex: 0 0 calc(50% - 10px);
  }
  .stats-item-new + .stats-item-new {
    border-left: none;
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .stats-item-new {
    flex: 0 0 100%;
  }
}
.stats-item-icon-new {
  font-size: 1.6rem;
  color: var(--speedex-navy);
  margin-top: 2px;
}
.stats-item-content-new {
  display: flex;
  flex-direction: column;
}
.stats-item-number-new {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--speedex-navy);
  line-height: 1.2;
}
.stats-item-label-new {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 3px;
}

/* Documents download page */
.documents-grid {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.documents-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.documents-row:not(:last-child) {
  border-bottom: 1px solid var(--gray-200);
}

.documents-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  min-height: 58px;
}

.documents-cell:first-child {
  border-right: 1px solid var(--gray-200);
}

.documents-name {
  font-size: .92rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.45;
}

.documents-cell--bundle .documents-name {
  color: var(--dark);
  font-weight: 700;
}

.documents-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

.documents-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  font-size: 1.35rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.documents-download--excel {
  color: #1d6f42;
}

.documents-download--excel:hover {
  color: #fff;
  background: #1d6f42;
  border-color: #1d6f42;
}

.documents-download--pdf {
  color: #c62828;
}

.documents-download--pdf:hover {
  color: #fff;
  background: #c62828;
  border-color: #c62828;
}

.documents-note {
  margin-top: 1.75rem;
  font-size: .9rem;
  color: var(--text-light);
}

.documents-note a {
  font-weight: 600;
}

.documents-unavailable {
  font-size: .8rem;
  color: var(--text-light);
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .documents-row {
    grid-template-columns: 1fr;
  }

  .documents-cell:first-child {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

  .documents-cell {
    padding: .9rem 1rem;
  }
}