body {
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.hero-bg {
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.92) 0%,
      rgba(15, 23, 42, 0.75) 60%,
      rgba(249, 115, 22, 0.15) 100%
    ),
    url("../images/hero_banner.png") center/cover no-repeat;
}

.gradient-text {
  background: red;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: red;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.stat-card {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.75rem;
}

.parts-bg {
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.95),
      rgba(30, 41, 59, 0.95)
    ),
    url("../images/parts_showcase.png") center/cover fixed;
}

.contact-btn {
  background: red;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.4);
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.float {
  animation: float 4s ease-in-out infinite;
}

.border-glow {
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.bg-mesh {
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(249, 115, 22, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(249, 115, 22, 0.05) 0%,
      transparent 50%
    );
}

/* Marquee Animation */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

.brand-marquee-item {
  flex: 0 0 auto;
  width: 200px; /* Base width for brand cards */
}

@media (max-width: 640px) {
  .brand-marquee-item {
    width: 150px;
  }
}
