* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: #0d47a1; /* changed from black */
  color: white;
  overflow-x: hidden;
}

/* ========================= */
/* LOADER */
/* ========================= */

#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #0d47a1; /* changed from black */
  z-index: 9999;
  overflow: hidden;
}

.road {
  position: absolute;
  bottom: 43%;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, transparent, #ff6f00, #ff6f00, transparent);
  box-shadow: 0 0 20px rgba(255,111,0,0.8);
}

.truck {
  position: absolute;
  bottom: 45%;
  left: -350px;
  width: 280px;
  animation: drive 3s linear forwards;
}

@keyframes drive {
  0% { left: -400px; }
  100% { left: 120%; }
}

.fade-out {
  opacity: 0;
  transition: 0.8s ease;
  pointer-events: none;
}

/* ========================= */
/* HEADER */
/* ========================= */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: linear-gradient(90deg, #0d47a1, #ff6f00); /* changed */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-logo {
  height: 100px;
  transition: 0.3s ease;
  border-radius: 50%;
}

.nav-logo:hover {
  transform: scale(1.05);
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

nav a:hover {
  color: #ffd180; /* softer orange */
}

/* ========================= */
/* HERO */
/* ========================= */

.hero {
  text-align: center;
  padding: 140px 20px;
  background: linear-gradient(135deg, #0d47a1, #ff6f00); /* unified */
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,111,0,0.08);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  filter: blur(120px);
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: white; /* changed from orange */
}

.hero p {
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.btn {
  background: #ff6f00; /* unified orange */
  padding: 12px 30px;
  text-decoration: none;
  color: white;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #0d47a1; /* blue on hover */
}

/* ========================= */
/* SERVICES CARDS */
/* ========================= */

section {
  padding: 80px 10%;
  text-align: center;
}

.services h2 {
  margin-bottom: 50px;
  color: #ff6f00;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: linear-gradient(135deg, #0d47a1, #ff6f00); /* changed */
  border-radius: 15px;
  width: 280px;
  text-decoration: none;
  color: white;
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  background: #0d47a1; /* unified blue */
  box-shadow: 0 0 25px rgba(255,111,0,0.4);
}

.card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin-bottom: 10px;
  color: white; /* changed from orange */
}

.card-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* ========================= */
/* PRICING */
/* ========================= */

.pricing {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0d47a1, #ff6f00);
  color: white;
}

.pricing h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.price-card {
  max-width: 600px;
  margin: auto;
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.price-card p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.pricing .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: white;
  color: #0d47a1;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.pricing .btn:hover {
  background: #ffcc80;
  color: black;
}

/* ========================= */
/* CONTACT ICONS */
/* ========================= */


.contact-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact-icon {
  font-size: 28px;
  color: white;
  background: linear-gradient(135deg, #0d47a1, #ff6f00);
  padding: 18px;
  border-radius: 50%;
  transition: 0.3s ease;
  text-decoration: none;
}

.contact-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,111,0,0.6);
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer {
  text-align: center;
  padding: 30px;
  background: linear-gradient(90deg, #0d47a1, #ff6f00); /* changed */
  border-top: none;
  opacity: 0.9;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {

  header {
    flex-direction: column;
    gap: 15px;
  }

  nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 350px;
  }

  .truck {
    width: 200px;
  }
}