#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: 60px 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: 15px;
  color: #000;
  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: #fff;
  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);*/
  color:#fff;
  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;
}
.logo-design{
  width: 200px;
  height: 60px;
}
.sticky-header-container {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.site-header {
  background: #fff;
  padding: 0;
  transition: 0.4s;
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(13, 59, 102, 0.15);
  padding: 0;
}
.site-header .navbar {
  padding: 4px 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-toggle::after {
  border: none !important;
}
@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar-nav .dropdown-toggle i {
    transition: transform 0.3s ease;
    display: inline-block;
  }
  .navbar-nav .nav-item.dropdown:hover > .dropdown-toggle i {
    transform: rotate(180deg);
  }
  .navbar-nav .dropdown-menu .dropdown-submenu {
    position: relative;
  }
  .navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: 0;
    border-top: none;
    border-left: 3px solid var(--secondary);
    box-shadow: 15px 15px 50px rgba(13, 59, 102, 0.15);
  }
  .navbar-nav .dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
  .navbar-nav .dropdown-submenu > .dropdown-toggle::after {
    display: inline-block;
    float: right;
    margin-top: 6px;
    border-top: 0.3em solid transparent;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
    border-right: 0;
    content: "";
  }
}
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu .dropdown-submenu .dropdown-menu {
    display: block;
    position: static;
    float: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 15px;
  }
  .navbar-nav .dropdown-submenu > .dropdown-toggle::after {
    display: none;
  }
}
.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: 520px;
  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&amp;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);
  }
}

/* Swiper Hero Custom Styles */
.hero-section.swiper {
  width: 100%;
  height: 70vh;
  min-height: 500px;
}
.hero-section .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #040e1c;
}
.hero-section .hero-bg {
  transform: scale(1.1);
  transition: transform 10s ease;
}
.hero-section .swiper-slide-active .hero-bg {
  transform: scale(1);
}
.hero-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.3;
  margin: 0 6px !important;
  transition: var(--transition);
}
.hero-section .swiper-pagination-bullet-active {
  background: var(--secondary);
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}
.hero-section .swiper-button-next:after,
.hero-section .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}
.hero-section .swiper-button-next:hover,
.hero-section .swiper-button-prev:hover {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 991px) {
  .hero-section .swiper-button-next,
  .hero-section .swiper-button-prev {
    display: none;
  }
  .hero-section.swiper {
    height: auto !important;
    min-height: auto !important;
  }
  .hero-content {
    padding: 60px 0 60px !important;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 60px;
}
.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: 0 auto 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;
  justify-content: center;
}
.hero-scroll {
  display: none !important;
}
.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-multi-img {
  position: relative;
  height: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-multi-img div {
  border-radius: 12px;
  overflow: hidden;
  transition: 0.5s;
}
.about-multi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-top-left {
  position: absolute;
  width: 200px;
  height: 150px;
  top: 40px;
  left: 20px;
  z-index: 2;
}
.img-main {
  position: absolute;
  width: 320px;
  height: 400px;
  z-index: 1;
}
.img-bottom-left {
  position: absolute;
  width: 240px;
  height: 180px;
  bottom: 0;
  left: 100px;
  z-index: 3;
}
.deco-circle-orange {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 8px solid rgba(247, 127, 0, 0.2);
  border-radius: 50%;
  bottom: 100px;
  left: 0;
  z-index: 0;
}
.deco-outline-blue {
  position: absolute;
  width: 130px;
  height: 130px;
  border: 2px dashed var(--primary);
  border-radius: 50%;
  top: 30px;
  right: 50px;
  z-index: 0;
  opacity: 0.5;
}

.section-divider-dashed {
  width: 100%;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
}
.about-text-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}
.about-text-content strong {
  color: #000;
  font-weight: 700;
}

@media (max-width: 991px) {
  .about-multi-img { height: 400px; }
  .img-main { width: 280px; height: 350px; }
  .img-top-left { width: 160px; height: 120px; }
  .img-bottom-left { width: 200px; height: 150px; left: 50px; }
}

@media (max-width: 767px) {
  .about-multi-img { height: 400px; }
  .about-multi-img .img-1 { width: 200px; height: 250px; }
  .about-multi-img .img-2 { width: 180px; height: 220px; }
  .about-multi-img .img-3 { width: 160px; height: 150px; right: 20px; }
}
.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;
}
.section-badge-alt {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(247, 127, 0, 0.1);
  color: var(--secondary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(247, 127, 0, 0.2);
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 18px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.about-feature-item:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 25px rgba(247, 127, 0, 0.12);
  transform: translateY(-4px) scale(1.02);
}

.feature-check {
  width: 28px;
  height: 28px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(247, 127, 0, 0.2);
}

.about-feature-item:hover .feature-check {
  transform: rotate(360deg);
  background: var(--secondary-dark);
}

.about-feature-item p {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
  letter-spacing: 0.3px;
}
.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);
}

/* Service Card V2 - Premium Design */
/* Service Glass Card - Ultra Premium */
.service-glass-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}
.service-glass-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}
.service-glass-card:hover {
  transform: translateY(-15px) scale(1.03);
  color: #fff;
}
.service-glass-card:hover::before {
  opacity: 1;
}
.glass-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 30px;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}
.service-glass-card:hover .glass-icon-wrap {
  background: #fff !important;
  color: var(--primary) !important;
  transform: rotate(360deg);
}
.glass-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  transition: 0.3s;
}
.glass-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 25px;
  transition: 0.3s;
}
.glass-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}
.glass-list li {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.glass-list li i {
  color: var(--secondary);
}
.service-glass-card:hover .glass-list li i {
  color: #fff;
}
.service-glass-card.featured {
  border: 2px solid var(--secondary);
}

.bg-blue-grad { background: linear-gradient(135deg, #3498db, #2980b9); }
.bg-orange-grad { background: linear-gradient(135deg, #f39c12, #e67e22); }
.bg-green-grad { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.bg-purple-grad { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.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: 30px 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;
  font-weight: 500;
  color: #fff;
}
.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);*/
  color: #fff;
  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: #f8f9fa;
  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: 180px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.partner-logo:hover {
  transform: translateY(-5px);
}
.partner-logo-placeholder {
  width: 100%;
  height: 100px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.partner-logo:hover .partner-logo-placeholder {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}
.partner-logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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: 60px 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;
  color: #fff;
}
.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;
  color:#fff;
}
.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);
  color: #fff;
}
.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;
  color:#fff;
}
.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);*/
  color:#fff;
}
.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: row !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-buttons .btn-secondary-custom, 
  .hero-buttons .btn-outline-white {
    flex: 1;
    padding: 10px 10px !important;
    font-size: 12px !important;
    min-width: fit-content;
  }
  .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;
}

.breadcrumb {
  position: relative;
  padding: 80px 0;
  background-color: var(--primary-dark);
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  z-index: 1;
}

.breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 59, 102, 0.9) 0%, rgba(8, 45, 79, 0.7) 100%);
  z-index: -1;
}

.breadcrumb h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb ul {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 8px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb ul li a:hover {
  color: var(--secondary) !important;
}
/* Book Design Page Styles */
.book-design-hero {
    padding: 50px 0;
    background: var(--white);
}
.service-card-alt {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border);
    height: 100%;
}
.service-card-alt:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}
.service-card-alt i {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
    display: block;
}
.children-book-special {
    background: var(--white);
    padding: 50px 0;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.children-book-special::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--light-blue);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.5;
}
.children-book-special::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(247, 127, 0, 0.05);
    border-radius: 50%;
    z-index: 0;
}
.children-img-wrap {
    position: relative;
    z-index: 1;
}
.children-img-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    transform: rotate(-3deg);
    transition: var(--transition);
}
.children-img-wrap:hover img {
    transform: rotate(0deg) scale(1.05);
}
.children-img-wrap .floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--secondary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius);
    font-weight: 700;
    box-shadow: var(--shadow-orange);
    z-index: 2;
}
.feature-icon-box {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.children-content-wrap {
    position: relative;
    z-index: 1;
}
.pricing-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}
.pricing-box h2 {
    color: var(--secondary);
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.pricing-box p {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto 30px;
}
.pricing-box .btn-wrap {
    position: relative;
    z-index: 1;
}
.btn-premium-orange {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    box-shadow: var(--shadow-orange);
}
.btn-premium-orange:hover {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-3px);
}
.btn-outline-premium {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 10px 35px;
    font-weight: 600;
}
.btn-outline-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
}
.hero-img-wrap {
    position: relative;
    z-index: 1;
    max-width: 450px;
    margin: 0 auto;
}
.hero-img-wrap::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
}


/* Offset Printing Page Styles */
.service-content-wrap {
    padding: 50px 0;
}
.service-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.service-img-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}
.service-img-container:hover img {
    transform: scale(1.05);
}
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}
.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
}
.feature-list li i {
    color: #007bff;
    margin-right: 12px;
    font-size: 1.2rem;
}
.accent-heading {
    color: #007bff;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.main-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}


/* Our Founders Page Styles */
.founder-section {
    padding: 50px 0;
    background: #ffffff;
}
.founder-img-wrapper {
    position: relative;
    padding: 20px;
}
.founder-img-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}
.founder-img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
    height: auto;
}
.founder-name {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}
.founder-role {
    font-size: 1.25rem;
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: block;
}
.founder-bio {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    position: relative;
}
.quote-icon {
    font-size: 4rem;
    color: rgba(0, 123, 255, 0.1);
    position: absolute;
    top: -20px;
    left: -30px;
}
.exp-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,123,255,0.3);
    z-index: 2;
    text-align: center;
}


/* Company Profile Page Styles */
.profile-hero {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}
.profile-hero::after {
    content: "1999";
    position: absolute;
    right: -50px;
    bottom: -50px;
    font-size: 300px;
    font-weight: 900;
    color: rgba(0, 123, 255, 0.03);
    z-index: 0;
}
.section-title-large {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}
.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border-bottom: 5px solid transparent;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid #007bff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}
.alternating-section {
    padding: 50px 0;
}
.img-premium {
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
}
.accent-text {
    color: #007bff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}
.highlight-box {
    background: #1a1a1a;
    color: #fff;
    padding: 50px;
    border-radius: 30px;
    margin-top: 60px;
    text-align: center;
}

.lead {
    font-weight: 300;
    font-size: 15px;
    color: #000;
    line-height: 1.8;
}
/* Product Highlight Cards - Graphic Design Solutions */
.product-highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}
.product-highlight-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.product-icon-wrap {
    width: 65px;
    height: 65px;
    background: rgba(0, 123, 255, 0.15);
    color: #007bff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.1);
}
.icon-orange {
    background: rgba(247, 127, 0, 0.15);
    color: #f77f00;
    box-shadow: 0 10px 20px rgba(247, 127, 0, 0.1);
}
.icon-blue-light {
    background: rgba(0, 180, 216, 0.15);
    color: #00b4d8;
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.1);
}
.product-highlight-card:hover .product-icon-wrap {
    transform: scale(1.1) rotate(10deg);
}

