@charset "UTF-8";
.text-primary {
  color: #f26522 !important;
}

.bg-primary {
  background-color: #f26522 !important;
}

nav .container .logo {
  width: auto;
}
nav .container .logo img {
  max-width: 100%;
  width: 150px;
  height: auto;
}
nav .container a.active {
  color: #f26522;
}
nav #mobile-menu {
  transition: all 0.3s ease;
}
nav.sticky-nav {
  transition: all 0.3s ease;
}
nav.sticky-nav.scrolled {
  position: fixed;
  width: 100% !important;
  top: 0 !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

section.heroSection h1 {
  color: #f26522;
}

.owl-carousel .item {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 1.5s ease;
}
.owl-carousel.active .item {
  transform: scale(1.05);
  /* Slight zoom-out effect */
}
.owl-carousel .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: white;
}

.freight-list {
  list-style: none;
  padding-left: 1rem;
}
.freight-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.freight-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: bold;
}
