#preloader.fade-out,
#scrollTop {
  opacity: 0;
  visibility: hidden;
}
.blog-category,
.brand-tagline,
.hero-badge,
.hero-scroll,
.partners-title,
.section-badge {
  text-transform: uppercase;
}
.fleet-filter-btn,
.form-control,
.form-select,
.newsletter-form input,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}
body,
html,
img {
  max-width: 100%;
}
:root {
  --primary: #0d3b66;
  --primary-dark: #082d4f;
  --primary-light: #1a5490;
  --secondary: #f77f00;
  --secondary-dark: #d96a00;
  --secondary-light: #ff9a2e;
  --white: #ffffff;
  --light: #f8f9fa;
  --light-blue: #eef4fb;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --dark: #1a1a2e;
  --text: #444f5a;
  --heading: #0d3b66;
  --border: #dee2e6;
  --shadow: 0 10px 40px rgba(13, 59, 102, 0.12);
  --shadow-hover: 0 20px 60px rgba(13, 59, 102, 0.22);
  --shadow-orange: 0 10px 40px rgba(247, 127, 0, 0.3);
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --transition: all 0.4s ease;
  --font-primary: "Poppins", sans-serif;
  --section-pad: 100px 0;
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
img {
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  transition: var(--transition);
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 127, 0, 0.1);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(247, 127, 0, 0.25);
  margin-bottom: 18px;
}
#scrollTop,
.section-divider {
  display: flex;
  align-items: center;
}
.section-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  animation: 1.5s infinite pulse-dot;
}
@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}
.section-title {
  font-size: clamp(28px, 4vw, 24px);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 18px;
}
.section-title span {
  color: var(--secondary);
  position: relative;
}
.section-title span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  border-radius: 2px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 560px;
}
.section-divider {
  gap: 10px;
  margin: 20px 0 0;
}
.section-divider span {
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}
.section-divider small {
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 50%;
}
#preloader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader-logo {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: 2px;
}
.blog-card:hover .blog-title,
.brand-name span,
.footer-bottom-links a:hover,
.footer-brand-name span,
.preloader-logo span,
.stat-number .counter,
.topbar-info a i,
.topbar-info a:hover,
.truck-svg {
  color: var(--secondary);
}
.truck-wrapper {
  position: relative;
  width: 280px;
  height: 80px;
  margin-bottom: 30px;
}
.exhaust,
.truck-road,
.truck-road::after,
.truck-svg {
  position: absolute;
}
.truck-road {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.truck-road::after {
  content: "";
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary),
    transparent
  );
  animation: 1.5s linear infinite road-move;
}
@keyframes road-move {
  to {
    left: 100%;
  }
}
.truck-svg {
  bottom: 8px;
  animation: 0.4s ease-in-out infinite alternate truck-bounce;
}
@keyframes truck-bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-3px);
  }
}
.truck-wheel {
  animation: 0.6s linear infinite spin;
  transform-origin: center;
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.exhaust {
  right: -10px;
  top: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.exhaust-puff {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: 1s ease-out infinite puff;
}
.exhaust-puff:nth-child(2) {
  animation-delay: 0.3s;
}
.exhaust-puff:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes puff {
  0% {
    opacity: 0.6;
    transform: scale(0.5) translateX(0);
  }
  100% {
    opacity: 0;
    transform: scale(2) translateX(20px);
  }
}
.preloader-progress {
  width: 280px;
}
.progress-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}
.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary));
  border-radius: 2px;
  animation: 2.5s ease-in-out forwards progress-fill;
}
@keyframes progress-fill {
  0% {
    width: 0%;
  }
  60% {
    width: 75%;
  }
  85% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}
.preloader-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 1px;
  animation: 1.2s ease-in-out infinite blink;
}
@keyframes blink {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  justify-content: center;
  font-size: 20px;
  transform: translateY(20px);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 20px rgba(247, 127, 0, 0.4);
}
.topbar-info,
.topbar-info a {
  align-items: center;
  display: flex;
}
#scrollTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTop:hover {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  box-shadow: 0 8px 30px rgba(247, 127, 0, 0.6),
    0 0 0 6px rgba(247, 127, 0, 0.15);
  transform: translateY(-3px);
}
.topbar {
  background: var(--primary-dark);
  padding: 9px 0;
  font-size: 13px;
}
.topbar-info {
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-info a {
  color: rgba(255, 255, 255, 0.75);
  gap: 7px;
  font-size: 13px;
  transition: color 0.3s;
}
.topbar-info a i {
  font-size: 14px;
}
.navbar-brand,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-social a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.about-main-img img,
.service-img-wrap img {
  transition: transform 0.6s;
  object-fit: cover;
}
.topbar-social a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}
.about-main-img:hover img,
.hero-bg {
  transform: scale(1.05);
}
.topbar-divider {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
}
.site-header {
  background: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: 0.4s;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(13, 59, 102, 0.15);
  padding: 0;
}
.site-header .navbar {
  padding: 14px 0;
  transition: padding 0.3s;
}
.site-header.scrolled .navbar {
  padding: 10px 0;
}
.brand-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  line-height: 1;
}
.brand-tagline {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 1.5px;
  display: block;
}
.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--heading) !important;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.3s;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
  border-radius: 2px;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.text-secondary-custom {
  color: var(--secondary) !important;
}
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  width: calc(100% - 32px);
}
.navbar-nav .dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 15px 50px rgba(13, 59, 102, 0.15);
  padding: 10px;
  min-width: 200px;
  border-top: 3px solid var(--secondary);
  margin-top: 8px;
}
.navbar-nav .dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 9px 15px;
  border-radius: 8px;
  transition: 0.3s;
}
.navbar-nav .dropdown-item:hover {
  background: rgba(247, 127, 0, 0.08);
  color: var(--secondary);
  padding-left: 20px;
}
.header-btn {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  box-shadow: 0 5px 20px rgba(247, 127, 0, 0.35);
  transition: 0.4s !important;
}
.header-btn::after {
  display: none !important;
}
.header-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(247, 127, 0, 0.5) !important;
  background: linear-gradient(
    135deg,
    var(--secondary-light),
    var(--secondary)
  ) !important;
}
.offcanvas-body .navbar-nav .nav-link::after,
.stat-card:last-child::after {
  display: none;
}
.offcanvas {
  border-right: 3px solid var(--secondary);
}
.offcanvas-header {
  background: var(--primary);
  color: #fff;
}
.offcanvas-header .btn-close {
  filter: invert(1);
}
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #040e1c;
}
.hero-bg,
.hero-overlay,
.hero-shape {
  position: absolute;
}
.hero-bg {
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: transform 8s;
}
.hero-section:hover .hero-bg {
  transform: scale(1);
}
.hero-overlay {
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 59, 102, 0.92) 0,
    rgba(8, 45, 79, 0.85) 50%,
    rgba(247, 127, 0, 0.25) 100%
  );
}
.hero-shape {
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  top: -200px;
  right: -100px;
  animation: 8s ease-in-out infinite float-shape;
}
.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  bottom: -100px;
  left: -100px;
  animation: 10s ease-in-out infinite reverse float-shape;
}
@keyframes float-shape {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 127, 0, 0.15);
  border: 1px solid rgba(247, 127, 0, 0.4);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge i {
  font-size: 15px;
  animation: 1.5s ease-in-out infinite bounce-icon;
}
@keyframes bounce-icon {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
.hero-title {
  font-size: clamp(36px, 6vw, 32px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  border-radius: 2px;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: left;
}
.partners-title,
.section-center,
.stat-card,
.why-stat-item {
  text-align: center;
}
.hero-stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 2px;
}
.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--secondary);
  border-radius: 2px;
  animation: 1.5s ease-in-out infinite scroll-wheel;
}
@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}
.hero-img-wrap {
  position: relative;
  z-index: 2;
}
.hero-floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: 4s ease-in-out infinite float-card;
}
.hero-floating-card.card-1 {
  bottom: 30px;
  left: -40px;
}
.hero-floating-card.card-2 {
  top: 40px;
  right: -30px;
  animation-delay: 2s;
}
@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.floating-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.floating-card-icon.orange,
.why-feature-icon.orange {
  background: rgba(247, 127, 0, 0.1);
  color: var(--secondary);
}
.floating-card-icon.blue,
.why-feature-icon.blue {
  background: rgba(13, 59, 102, 0.1);
  color: var(--primary);
}
.floating-card-text strong,
.signature-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
}
.floating-card-text span {
  font-size: 12px;
  color: var(--gray);
}
.about-section {
  padding: var(--section-pad);
  background: var(--white);
}
.about-img-wrap,
.why-us-img-wrap {
  position: relative;
}
.about-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-main-img img {
  width: 100%;
  height: 450px;
}
.about-exp-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-orange);
  z-index: 2;
  border: 4px solid #fff;
}
.about-exp-badge .exp-number {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.about-exp-badge .exp-text {
  font-size: 11px;
  text-align: center;
  font-weight: 500;
  opacity: 0.9;
  max-width: 80px;
  line-height: 1.3;
  margin-top: 2px;
}
.about-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 0 0 0 rgba(247, 127, 0, 0.5);
  animation: 2s infinite pulse-video;
  z-index: 3;
}
@keyframes pulse-video {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 127, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(247, 127, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(247, 127, 0, 0);
  }
}
.about-content,
.why-us-content {
  padding-left: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--light);
  border-radius: var(--radius-sm);
  transition: 0.3s;
}
.about-feature-item:hover {
  background: rgba(247, 127, 0, 0.08);
  transform: translateY(-2px);
}
.feature-check {
  width: 28px;
  height: 28px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}
.about-feature-item p {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  margin: 0;
  line-height: 1.5;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}
.signature-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--secondary);
}
.signature-info span {
  font-size: 13px;
  color: var(--gray);
}
.services-section {
  padding: var(--section-pad);
  background: var(--light-blue);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(13, 59, 102, 0.04);
  border-radius: 50%;
  pointer-events: none;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(13, 59, 102, 0.08);
  transition: 0.4s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.blog-img-wrap,
.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.15);
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 59, 102, 0.9) 0,
    rgba(13, 59, 102, 0.5) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s;
}
.fleet-item:hover .fleet-item-overlay,
.service-card:hover .service-overlay {
  opacity: 1;
}
.service-overlay i {
  font-size: 36px;
  color: var(--secondary);
  transform: translateY(20px);
  transition: transform 0.4s;
}
.fleet-item:hover .fleet-item-cat,
.fleet-item:hover .fleet-item-name,
.service-card:hover .service-overlay .read-more-link,
.service-card:hover .service-overlay i {
  transform: translateY(0);
}
.service-overlay .read-more-link {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 20px;
  border-radius: 50px;
  transform: translateY(20px);
  transition: 0.4s 0.1s;
}
.service-overlay .read-more-link:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}
.blog-body,
.service-body {
  padding: 24px;
}
.service-icon-badge {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 16px;
  transition: 0.4s;
}
.btn-outline-custom::before,
.service-card:hover .service-icon-badge {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}
.service-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-features-list {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-features-list li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-meta span i,
.service-features-list li i {
  color: var(--secondary);
  font-size: 11px;
}
.fleet-section,
.why-us-section {
  padding: var(--section-pad);
  background: #fff;
}
.why-us-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 550px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.why-us-stats-grid {
  position: absolute;
  bottom: -30px;
  left: -30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.why-stat-item {
  padding: 14px;
  background: var(--light);
  border-radius: var(--radius-sm);
}
.why-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.why-stat-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}
.why-feature {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: 0.3s;
  border: 1px solid transparent;
}
.why-feature:hover {
  background: var(--light-blue);
  border-color: rgba(13, 59, 102, 0.08);
  transform: translateX(6px);
}
.why-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: 0.3s;
}
.quote-benefit,
.stat-icon {
  align-items: center;
  display: flex;
}
.why-feature-icon.green {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.why-feature-icon.red {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.why-feature-icon.teal {
  background: rgba(0, 188, 212, 0.1);
  color: #00bcd4;
}
.why-feature-icon.purple {
  background: rgba(103, 58, 183, 0.1);
  color: #673ab7;
}
.why-feature:hover .why-feature-icon {
  background: var(--secondary);
  color: #fff;
}
.why-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}
.why-feature p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}
.stats-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0,
    var(--primary) 50%,
    var(--primary-light) 100%
  );
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 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.03'%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");
}
.stat-card {
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}
.stat-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.stat-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  justify-content: center;
  font-size: 28px;
  color: var(--secondary);
  margin: 0 auto 20px;
  transition: 0.3s;
}
.stat-card:hover .stat-icon {
  background: var(--secondary);
  color: #fff;
  transform: rotateY(360deg);
}
.stat-number {
  font-size: clamp(36px, 5vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stat-number .suffix {
  font-size: 0.6em;
  color: rgba(255, 255, 255, 0.6);
}
.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.quote-section {
  padding: var(--section-pad);
  background: var(--light-blue);
}
.quote-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.quote-sidebar {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  padding: 50px 40px;
  height: 100%;
}
.quote-sidebar-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.quote-sidebar-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.quote-benefit {
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}
.quote-benefit i {
  color: var(--secondary);
  font-size: 16px;
  width: 20px;
}
.blog-img-wrap img,
.fleet-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.quote-contact-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px;
}
.quote-contact-box h5 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
}
.quote-phone {
  color: var(--secondary);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quote-form-wrap {
  padding: 50px 40px;
}
.quote-form-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}
.quote-form-subtitle {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 30px;
}
.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  transition: 0.3s;
  background: var(--light);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.1);
  background: #fff;
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
}
.fleet-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.fleet-filter-btn {
  padding: 8px 22px;
  border: 2px solid var(--border);
  background: 0 0;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: 0.3s;
}
.fleet-filter-btn.active,
.fleet-filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.fleet-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.fleet-item img {
  height: 240px;
}
.fleet-item:hover img {
  transform: scale(1.12);
}
.fleet-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 59, 102, 0.9) 0,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}
.fleet-item-name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transform: translateY(15px);
  transition: transform 0.4s;
}
.fleet-item-cat {
  color: var(--secondary);
  font-size: 13px;
  transform: translateY(15px);
  transition: transform 0.4s 50ms;
}
.fleet-zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.5);
  transition: 0.4s;
}
.fleet-item:hover .fleet-zoom-icon {
  opacity: 1;
  transform: scale(1);
}
.testimonials-section {
  padding: var(--section-pad);
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}
.footer-social a,
.newsletter-form input,
.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 40px;
  font-size: 300px;
  color: rgba(255, 255, 255, 0.03);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonials-section .section-badge {
  background: rgba(247, 127, 0, 0.15);
  color: var(--secondary);
  border-color: rgba(247, 127, 0, 0.3);
}
.testimonials-section .section-title {
  color: #fff;
}
.testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: 0.4s;
  height: 100%;
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(247, 127, 0, 0.3);
  transform: translateY(-5px);
}
.testimonial-quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 48px;
  color: rgba(247, 127, 0, 0.2);
}
.testimonial-rating {
  color: var(--secondary);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--secondary);
}
.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.testimonial-role {
  font-size: 13px;
  color: var(--secondary);
}
.testimonials-section .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  transition: 0.3s;
}
.testimonials-section .carousel-indicators button.active {
  background: var(--secondary);
  width: 24px;
  border-radius: 4px;
}
.blog-section {
  padding: var(--section-pad);
  background: var(--light);
}
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(13, 59, 102, 0.07);
  transition: 0.4s;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.blog-img-wrap img {
  height: 100%;
}
.blog-card:hover .blog-img-wrap img {
  transform: scale(1.1);
}
.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--secondary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
}
.cta-section,
.partners-track-wrap {
  position: relative;
  overflow: hidden;
}
.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.blog-meta span {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s;
}
.blog-read-more,
.partner-logo {
  align-items: center;
  transition: 0.3s;
}
.blog-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
}
.blog-read-more {
  display: inline-flex;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}
.blog-read-more:hover {
  color: var(--secondary);
  gap: 12px;
}
.partners-section {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.footer-social a:hover,
.newsletter-form input:focus {
  border-color: var(--secondary);
}
.partners-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 40px;
}
.partners-track-wrap::after,
.partners-track-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
.partners-track {
  display: flex;
  gap: 60px;
  animation: 25s linear infinite partners-scroll;
  width: max-content;
}
.partners-track:hover {
  animation-play-state: paused;
}
@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partner-logo {
  display: flex;
  justify-content: center;
  width: 160px;
  filter: grayscale(1) opacity(0.4);
  flex-shrink: 0;
}
.partner-logo:hover {
  filter: grayscale(0) opacity(1);
}
.partner-logo-placeholder {
  width: 160px;
  height: 50px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--gray);
  letter-spacing: 1px;
}
.cta-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--secondary-dark) 0,
    var(--secondary) 50%,
    var(--secondary-light) 100%
  );
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V120H1200V0z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E")
    0 0 / cover;
}
.cta-bg-text {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.cta-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}
.site-footer {
  background: #080e1c;
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 0;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-links a,
.footer-social a {
  align-items: center;
  transition: 0.3s;
  display: flex;
}
.footer-brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.footer-desc,
.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.5);
}
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  justify-content: center;
  font-size: 15px;
}
.footer-social a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  gap: 8px;
}
.footer-links a i {
  color: var(--secondary);
  font-size: 10px;
  transition: transform 0.3s;
}
.footer-links a:hover {
  color: var(--secondary);
  padding-left: 6px;
}
.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(247, 127, 0, 0.1);
  border: 1px solid rgba(247, 127, 0, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 16px;
  flex-shrink: 0;
}
.footer-contact-text strong {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
}
.footer-contact-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.newsletter-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 30px;
}
.newsletter-box h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}
.newsletter-box p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  color: #fff;
  font-size: 14px;
  outline: 0;
  transition: border-color 0.3s;
}
.footer-bottom-links a,
.footer-bottom-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom-text {
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.btn-outline-custom,
.btn-outline-white,
.btn-primary-custom,
.btn-secondary-custom,
.btn-white-custom {
  display: inline-flex;
  gap: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-primary);
  text-decoration: none;
}
.footer-bottom-links a {
  transition: color 0.3s;
}
.btn-outline-custom,
.btn-primary-custom,
.btn-secondary-custom,
.btn-white-custom {
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.4s, box-shadow 0.4s, color 0.4s;
}
.btn-outline-custom::before,
.btn-primary-custom::before,
.btn-secondary-custom::before,
.btn-white-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s;
}
.btn-primary-custom::before {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}
.btn-secondary-custom::before {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
}
.btn-white-custom::before {
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.9));
}
.btn-outline-custom:hover::before,
.btn-primary-custom:hover::before,
.btn-secondary-custom:hover::before,
.btn-white-custom:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 8px 25px rgba(13, 59, 102, 0.3);
}
.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(13, 59, 102, 0.45);
}
.btn-secondary-custom {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-secondary-custom:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(247, 127, 0, 0.5);
}
.btn-outline-custom {
  background: 0 0;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-outline-custom:hover {
  color: #fff;
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(247, 127, 0, 0.35);
}
.btn-white-custom {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}
.btn-white-custom:hover {
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.35);
}
.btn-outline-white {
  align-items: center;
  border-radius: 50px;
  background: 0 0;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: 0.4s;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  transform: translateY(-3px);
}
.btn-sm-custom {
  padding: 10px 24px;
  font-size: 14px;
}
.btn-outline-custom:hover i,
.btn-primary-custom:hover i,
.btn-secondary-custom:hover i {
  animation: 0.4s icon-shake;
}
@keyframes icon-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(3px);
  }
}
.img-hover-zoom {
  overflow: hidden;
  border-radius: var(--radius);
}
.img-hover-zoom img {
  transition: transform 0.5s;
}
.img-hover-zoom:hover img {
  transform: scale(1.08);
}
.bg-primary-custom {
  background: var(--primary) !important;
}
.bg-secondary-custom {
  background: var(--secondary) !important;
}
.text-primary-custom {
  color: var(--primary) !important;
}
.section-center .section-subtitle {
  margin: 0 auto;
}
.deco-dots {
  position: absolute;
  opacity: 0.12;
  background-image: radial-gradient(var(--primary) 1px, transparent 1px);
  background-size: 18px 18px;
}
@media (max-width: 991.98px) {
  :root {
    --section-pad: 70px 0;
  }
  .about-content,
  .why-us-content {
    padding-left: 0;
    margin-top: 30px;
  }
  .why-us-stats-grid {
    position: static;
    margin-top: 20px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-stats {
    gap: 24px;
  }
  .stat-card::after {
    display: none;
  }
  .quote-form-wrap,
  .quote-sidebar {
    padding: 40px 30px;
  }
  .about-exp-badge {
    width: 110px;
    height: 110px;
    bottom: -15px;
    right: -15px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --section-pad: 60px 0;
  }
  .cta-bg-text,
  .hero-floating-card,
  .topbar {
    display: none;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stat-value {
    font-size: 26px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .newsletter-form,
  .quote-card {
    flex-direction: column;
  }
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 8px;
  }
}
@media (max-width: 575.98px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .fleet-filter-btn {
    font-size: 13px;
    padding: 7px 16px;
  }
}
#contact .btn-white-custom {
  width: 235px;
}
body,
html {
  overflow-x: hidden;
}
.h3,
h3 {
  font-size: 1.25rem;
}