/* ===== ROOT COLORS ===== */
:root {
  --primary: #2563EB;
  --primary-dark: #1E40AF;
  --bg: #F8FAFC;
}

/* ===== GLOBAL ===== */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #0F172A;
}
.slider-container {
  overflow-x: scroll;
}

.slider-container::-webkit-scrollbar {
  display: none;
}
/* ===== HAMBURGER ===== */
.menu-toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  position: relative;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: #0F172A;
  margin: 5px auto;
  transition: 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== GLASS EFFECT ===== */
.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}
.glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ===== NAVBAR ===== */
.glass-nav {
  margin: 15px auto;
  width: 90%;
  border-radius: 30px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.4);
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}

/* ===== HERO ===== */
.hero {
  /* height: 100vh; */
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-inline: 15px;
  padding-top: 130px;
  background: linear-gradient(
    180deg,
    #dbeafe 0%,
    #eff6ff 80%,
    #ffffff 100%
  );
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  border: none;
  border-radius: 10px;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1E40AF, #2563EB);
}

/* ===== SECTION SPACING ===== */
section {
  padding: 80px 0 50px;
}

/* ===== TEXT ===== */
.text-muted {
  color: #64748B !important;
}

.pwkojnwe {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffffb3;
  border-radius: 30px;
  padding: 70px 5px 10px;
}

.auto1 {
  padding: 10px 0;
}

.custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 20px;
  font-weight: 500;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #ffffff;
  border-radius: 8px;
  transition: 0.3s ease;
}

.custom-btn:hover .icon-box { transform: translateX(4px); }
.custom-btn:hover { box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3); }

/* ===== WHY SECTION ===== */
#why {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.glass svg { transition: 0.3s ease; }
.glass:hover svg { transform: scale(1.1); }
.diff-image {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
}

.diff-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SERVICES ===== */
#services {
  background: #ffffff;
}
.service-link {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
}
.service-link:hover { text-decoration: underline; }
.featured {
  border: 1px solid rgba(37, 99, 235, 0.3);
  transform: scale(1.03);
}

/* ===== STATS ===== */
#stats {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.stat-box { padding: 20px; }
.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

/* ===== ABOUT ===== */
#about {
  background: #ffffff;
  padding: 80px 0;
}
.about-visual {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e0f2fe, #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.about-visual svg { transition: 0.4s ease; }
.about-visual:hover svg { transform: scale(1.03); }

/* ===== PRICING ===== */
.pricing-section {
  background: linear-gradient(to bottom, #ffffff, #f7f9ff);
  overflow: hidden;
}
.bg-abstract {
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
}
.bg-abstract svg {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pricing-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.pricing-card.featured {
  border: 2px solid #0d6efd;
  transform: scale(1.05);
}

/* ===== CONTACT ===== */
.contact-section {
  background: linear-gradient(to bottom, #f8fbff, #ffffff);
}
.contact-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.custom-input {
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #e0e7ff;
  transition: 0.2s ease;
}
.custom-input:focus {
  border-color: #0d6efd;
  box-shadow: none;
}
.contact-info p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* ===== HOW IT WORKS SLIDER ===== */
.steps-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 10px 30px;
  margin-top: 20px;
  scroll-behavior: smooth;
}
.steps-slider::-webkit-scrollbar { display: none; }
.steps-slider { -ms-overflow-style: none; scrollbar-width: none; }

.step-card {
  min-width: 260px;
  max-width: 280px;
  flex: 0 0 auto;
  scroll-snap-align: center;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.35s ease;
  transform: scale(0.9);
  opacity: 0.6;
}
.step-card.active {
  transform: scale(1.05);
  opacity: 1;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}
.step-number {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}
.step-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}
.step-dots span {
  width: 8px;
  height: 8px;
  background: #cbd5f5;
  border-radius: 50%;
  transition: 0.3s ease;
}
.step-dots span.active {
  width: 20px;
  border-radius: 20px;
  background: var(--primary);
}

/* ===== FOOTER ===== */
.footer-bg {
  background: linear-gradient(0deg, #dbeafe 0%, #eff6ff 50%, #ffffff 100%);
  padding: 30px 0 20px;
}

.footer-glass {
  width: 90%;
  margin: 0 auto;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.08);
  padding: 40px 30px 25px;
}

.footer-link {
  display: block;
  text-decoration: none;
  color: #64748B;
  margin-bottom: 8px;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary);
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  transition: 0.2s ease;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--primary);
  color: white;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;

  width: 56px;
  height: 56px;

  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  transition: 0.3s ease;
  animation: float-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7); }
}

/* //////////////////////////////////// */
/* ===== LIVE TRACKING ===== */
#live-tracking {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.tracking-wrapper {
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
}

/* fake map background */
.map-area {
  position: relative;
  height: 420px;
  border-radius: 16px;

  background: 
    radial-gradient(circle at 20% 30%, #dbeafe 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, #bfdbfe 0%, transparent 45%),
    radial-gradient(circle at 40% 80%, #e0f2fe 0%, transparent 50%),
    linear-gradient(135deg, #f8fafc, #eef2ff);

  overflow: hidden;
}

/* moving car dot */
.car-dot {
  position: absolute;
  width: 14px;
  height: 14px;

  background: var(--primary);
  border-radius: 50%;

  box-shadow: 0 0 0 6px rgba(37,99,235,0.2);

  top: 50%;
  left: 20%;

  animation: moveCar 6s infinite ease-in-out;
}

/* floating status card */
.status-card {
  position: absolute;
  bottom: 20px;
  right: 20px;

  padding: 12px 15px;
  border-radius: 14px;

  font-size: 14px;
  text-align: left;

  min-width: 180px;
}

/* animation path */
@keyframes moveCar {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(120px, -40px); }
  50%  { transform: translate(220px, 20px); }
  75%  { transform: translate(120px, 80px); }
  100% { transform: translate(0, 0); }
}
/* ===== ROUTE DASHBOARD STYLE ===== */
.map-area {
  position: relative;
  height: 420px;
  border-radius: 16px;

  background:
    radial-gradient(circle at 20% 30%, #dbeafe 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, #bfdbfe 0%, transparent 45%),
    radial-gradient(circle at 40% 80%, #e0f2fe 0%, transparent 50%),
    linear-gradient(135deg, #f8fafc, #eef2ff);

  overflow: hidden;
}

/* animated route line */
.route-line {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

/* moving vehicle dot */
.car-dot {
  position: absolute;
  width: 14px;
  height: 14px;

  background: var(--primary);
  border-radius: 50%;

  box-shadow: 0 0 0 6px rgba(37,99,235,0.2);

  top: 60%;
  left: 15%;

  animation: moveAlong 6s infinite ease-in-out;
}

/* fake movement path (sync with svg visually) */
@keyframes moveAlong {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(140px, -120px); }
  50%  { transform: translate(280px, 30px); }
  75%  { transform: translate(420px, -80px); }
  100% { transform: translate(0, 0); }
}

/* ===== STATUS PANEL ===== */
.status-panel {
  position: absolute;
  right: 20px;
  top: 20px;

  width: 200px;
  padding: 15px;

  border-radius: 16px;
}

.status-item {
  display: flex;
  justify-content: space-between;

  font-size: 13px;
  margin-bottom: 8px;
  color: #334155;
}

.status-item b {
  font-weight: 600;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
}
  /* ===== TESTIMONIALS ===== */
  #testimonials {
    background: #ffffff;
    padding: 80px 0;
  }

  .testimonial-card {
    position: relative;
    padding: 30px 25px 25px;
  }

  .quote-mark {
    font-size: 4rem;
    line-height: 1;
    color: rgba(37,99,235,0.12);
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
  }

  .testimonial-text {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.8;
    margin-top: 20px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
  }

  .author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; }
  .company-logo {
    height: 40px;
    margin-bottom: 10px;
  }
  
  .company-logo img {
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
  }