 /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f0f6fb;
      scroll-behavior: smooth; /* smooth scrolling */
    }

    /* Header */
 header {
    background: linear-gradient(
      to right,
      rgba(4, 31, 55, 0.6),
      rgba(43, 125, 191, 0.6),
      rgba(0, 212, 255, 0.6)
    );
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 30px;
    color: #080707;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 20px;
    font-weight: bold;
  }

  /* Nav links desktop */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
  }

  .nav-links li a {
    text-decoration: none;
    color: #120d0d;
    font-weight: bold;
    transition: color 0.3s;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    color: #ffdd57;
  }

  /* Mobile menu */
  .menu-toggle {
    display: none;
    cursor: pointer;
    color: #090909;
  }

  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      background: #5e8db9;
      position: absolute;
      top: 70px;
      right: 10px;
      width: 200px;
      display: none;
      padding: 15px;
      border-radius: 8px;
    }
    .nav-links.show {
      display: flex;
    }
    .menu-toggle {
      display: block;
    }
  }

    /* Hero Section Full Cover */
    .hero {
      width: 100%;
      height: 50vh;
      background: #fff;
      position: relative;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      border-radius: 0;
      box-shadow: none;
     
      
    }

    /* Yellow curved background */
    .hero::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 70%;
      background: #63f4b5;
      clip-path: ellipse(110% 80% at 100% 130%);
      z-index: 0;
    }

    .brand { display: flex; align-items: center; margin-bottom: 20px; }
    .brand-logo { width: 28px; height: 28px; border-radius: 50%;  margin-right: 10px; } 
    .brand-name { font-weight: 600; color: #333; } 
    .hero-content h1 { font-size: 2.5rem; color: #222; margin-bottom: 15px; } 
    .hero-content p { font-size: 1rem; color: #555; line-height: 1.6; margin-bottom: 30px; } 
    .cta { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; } 
    .btn { display: inline-flex; align-items: center; padding: 12px 20px; background:  #28c76f; color: #111; font-weight: 700; border: none; border-radius: 30px; cursor: pointer; text-decoration: none; transition: 0.3s; z-index: 1; position: relative; } 
    .btn:hover { background: #fdd835; transform: translateY(-2px); } 
    .info { font-size: 0.95rem; color: #333; }

    .hero-content {
      flex: 1;
      padding: 40px;
      position: relative;
      z-index: 1;
    }

    .hero-image {
      flex: 1;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 40px;
      position: relative;
      z-index: 1;
    }

    .hero-image img {
      width: 300px;
      max-width: 100%;
      animation: float 3s ease-in-out infinite;
    }

    /* @keyframes float { 
      0% { transform: translateY(0px); } 
      50% { transform: translateY(-10px); } 
      100% { transform: translateY(0px); } 
    } */

    /* Responsive hero */
    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 6px 20px;
      }
      .hero-image { padding: 20px; 
    }
      .hero-content { padding: 20px; } 
      .cta { justify-content: center; }
    }


    /* Form Section */
.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  min-height: 100px;
  position: relative;
  background-color: #63f4b5;
  background-size: cover;       /* cover entire area */
  background-position: center;  /* center the image */
  background-repeat: no-repeat; /* prevent repeating */
}

.form-section * {
  position: relative;
  z-index: 1; /* ensures content is above background/overlay */
}

/* Optional: semi-transparent overlay */



.form-track {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 2px;
  min-height: 60px;
  overflow: hidden;
  background:#63f4b5;
}

.track {
  position: absolute;
  bottom: 5px;
  width: 100%;
  height: 100px;
  border-bottom: 3px dashed black; /* the road */
}

.car {
  width: 100px;
  height: 60px;
  background: url('asserts/car.png') no-repeat center/cover;

  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: -60px; /* start off-screen */
  animation: moveCar 10s linear infinite; /* animate across screen */
}

@keyframes moveCar {
  0% { left: -60px; }
  100% { left: 100%; }
}

    .tracking-form {
      background: #fff;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
      max-width: 600px;
      width: 100%;
      border: 1px solid #e0e0e0;
    }

    .tracking-form h2 {
      text-align: center;
      margin-bottom: 25px;
      color:  #28c76f;
    }

    .tracking-form label {
      font-weight: bold;
      display: block;
      margin: 12px 0 5px;
    }

    .tracking-form input {
      width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background-color: #fff;
  color: #333;
  transition: border-color 0.3s, box-shadow 0.3s;
    }
    .tracking-form input:hover{
      border-color: #28c76f;
    }

    .tracking-form button {
      width: 100%;
      margin-top: 20px;
      padding: 15px;
      background: #28c76f;
      border: none;
      border-radius: 30px;
      font-size: 18px;
      font-weight: bold;
      color: white;
      cursor: pointer;
      transition: background 0.3s;
    }

    .tracking-form button:hover {
      background: #20a65c;
    }

    .tracking-form .privacy {
      text-align: center;
      margin-top: 15px;
    }

    .tracking-form .privacy a {
      text-decoration: none;
      color: #28c76f;
    }
/* Style for the dropdown */
select#courier {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background-color: #fff;
  color: #333;
  appearance: none;       /* removes default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Hover effect */
select#courier:hover {
  border-color: #28c76f;
}

/* Focus effect */
select#courier:focus {
  outline: none;
  border-color: #040404;
  box-shadow: 0 0 5px rgba(40, 199, 111, 0.4);
}

/* Dropdown wrapper for custom arrow */
select#courier {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

/* Option styling */
select#courier option {
  padding: 10px;
  font-size: 15px;
}

    /* Services Section */
    .services {
      padding: 60px 20px;
      background: #f7fbff;
      text-align: center;
    }

    .services h2 {
      font-size: 28px;
      color:  #28c76f;
      margin-bottom: 40px;
    }

    .services-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .service-box {
      background: white;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
      flex: 1 1 250px;
      max-width: 320px;
      transition: transform 0.3s;
    }

    .service-box:hover {
      transform: translateY(-8px);
    }

    .service-box h3 {
      font-size: 20px;
      color: #264057;
      margin-bottom: 12px;
    }

    .service-box p {
      font-size: 15px;
      color: #555;
    }

    /* About Section */
    .about {
      background: #f0f6fb;
      padding: 60px 20px;
    }

    .about-container {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 1100px;
      margin: auto;
      gap: 40px;
      flex-wrap: wrap;
    }

    .about-image img {
      width: 300px;
      height: auto;
      
    }

    .about-text {
      flex: 1;
      min-width: 300px;
    }

    .about-text h2 {
      font-size: 28px;
      color: #28c76f;
      margin-bottom: 20px;
    }

    .about-text p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    /* FAQ Section */
    .faq {
      background: #f0f6fb;
      padding: 60px 20px;
      text-align: center;
    }

    .faq h2 {
      font-size: 28px;
      color: #28c76f;
      margin-bottom: 30px;
    }

    .faq-container {
      max-width: 800px;
      margin: auto;
      text-align: left;
    }

    .faq-item {
      background: #fff;
      border-radius: 8px;
      margin-bottom: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 15px 20px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      outline: none;
      background: #fff;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question::after {
      content: '\25BC';
      font-size: 14px;
      transition: transform 0.3s;
    }

    .faq-question.active::after {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      background: #f9f9f9;
      padding: 0 20px;
    }

    .faq-answer p {
      padding: 15px 0;
      font-size: 15px;
      color: #333;
    }

    /* Contact Us Section */
    .contact {
      background: #f0f6fb;
      color: rgb(2, 1, 11);
      padding: 60px 20px;
      text-align: center;
    }

    .contact h2 {
      font-size: 28px;
      color:  #28c76f;
      margin-bottom: 15px;
    }

    .contact p {
      font-size: 16px;
      margin: 8px 0;
    }

    .contact-info a {
      color:  #28c76f;
      text-decoration: none;
      font-weight: bold;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    /* Footer */
    .footer {
      background: #1b2a38;
      color: #ccc;
      text-align: center;
      padding: 20px 10px;
      font-size: 14px;
      border-top: 1px solid #333;
    }

    .footer p {
      margin: 5px 0;
    }

    .footer p:first-child {
      color:  #28c76f;
      font-weight: bold;
    }
    @media (max-width: 768px) {
  /* Make sections stack in column order */
  body {
    display: flex;
    flex-direction: column;
  }

  /* Move form-section before hero */
  .form-section {
    order: -1; /* push it to the top */
    margin-top: 40px;
  }
}
