/* === Navbar === */
.custom-navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
}

.navbar-brand {
  font-size: 1.6rem;
}

.nav-link-3d {
  margin-left: 15px;
  margin-right: 15px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-3d::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #198754;
  transition: width 0.3s;
}

.nav-link-3d:hover::after,
.nav-link-3d.active::after {
  width: 100%;
}

.nav-link-3d:hover {
  color: #198754 !important;
}
/* === 3D Feature Card === */
.feature-card {
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  background-color: #fff;
}

.feature-card:hover {
  transform: perspective(600px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

/* === CTA Button === */
.btn-success.shadow {
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 20px rgba(40, 167, 69, 0.4);
}

.btn-success.shadow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(40, 167, 69, 0.5);
}
/* === Stats === */
.stat-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s;
}
.stat-box:hover {
  transform: scale(1.05);
}

/* === Testimonial === */
.testimonial {
  background-color: #ffffff;
  font-style: italic;
}

/* === Vehicle Image 3D Hover === */
.vehicle-3d {
  transition: transform 0.6s ease;
}
.vehicle-3d:hover {
  transform: scale(1.1) rotateY(10deg);
}
#deliveryCounter {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}
.shadow-3d {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 5px 10px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.shadow-3d:hover {
  transform: translateY(-5px);
}
