:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-db005c1 */.footer {
  background-color: #0a1f44;
  color: #ffffff;
  padding: 70px 80px 25px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-logo {
  width: 160px;
}

/* FIX: Force headings white */
.footer-column h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff !important;
  font-weight: 600;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #cfd8e3;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #2f6df6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 50px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}

@media (max-width: 900px) {
  .footer {
    padding: 50px 30px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
}/* End custom CSS */
/* Start custom CSS *//* ===== ABOUT US HERO ===== */
.about-hero {
  width: 100%;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  padding: 100px 20px;
  text-align: center;
}

.about-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.about-tagline {
  display: block;
  color: #ff9800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-title {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.about-subtitle {
  color: #ccc;
  font-size: 18px;
  max-width: 640px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 767px) {
  .about-hero {
    padding: 70px 16px;
  }

  .about-title {
    font-size: 42px;
  }

  .about-logo {
    max-width: 110px;
  }

  .about-subtitle {
    font-size: 16px;
  }
}

/* FULL SCREEN INTRO */
#truckIntro {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  overflow: hidden;
}

/* Truck container */
.truck-wrap {
  position: absolute;
  top: 50%;
  left: -60%;
  transform: translateY(-50%);
  animation: truckDrive 3.5s ease-in-out forwards;
}

/* LOGO */
.truck-logo {
  width: 520px;              /* BIGGER */
  max-width: 90vw;
  display: block;

  /* Makes white blend away on dark bg */
  mix-blend-mode: screen;

  /* Sharp + clear */
  filter: drop-shadow(0 0 18px rgba(255,255,255,.35));
}

/* FAKE WHEELS */
.wheel {
  position: absolute;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid #ddd;
  animation: spin 0.6s linear infinite;
}

/* Wheel positions (tuned visually) */
.wheel-left {
  left: 95px;
}
.wheel-right {
  left: 270px;
}

/* WHEEL SPIN */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* TRUCK DRIVE */
@keyframes truckDrive {
  0% {
    transform: translate(-0%, -50%) scale(0.95);
    opacity: 1;
  }
  75% {
    transform: translate(155vw, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(170vw, -50%) scale(1);
    opacity: 0;
  }
}

/* Fade screen */
#truckIntro.fade-out {
  animation: fadeOut 0.8s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .truck-logo {
    width: 360px;
  }
  .wheel {
    width: 38px;
    height: 38px;
  }
}/* End custom CSS */