 :root {
            --primary-color: #ff3d00;
  --secondary-color: #ff9800;
            --accent-color: #4cc9f0;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }

.divider-style {
  position: relative;
  margin: 40px;
  text-align: center;
}

.divider-style span {
  background: #fff; /* background matches page or section */
  padding: 0 20px;
  position: relative;
  z-index: 5;
  display: inline-block;
}

.divider-style:before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  background: linear-gradient(to right, #ff3d00, #33b18e);
  transform: translateY(-50%);
}



a {
  text-decoration: none;
}



.tracking-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Logo */
.tracking-header .logo-img {
  max-height: 60px;
}

/* Search Icon */
.search-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 1.2rem;
  z-index: 10;
}

/* Search input padding fix */
.tracking-header input[type="text"] {
  padding-left: 48px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#BtnTrack:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}
/* Card styling */
  .info-card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }
  .info-card .card-body {
    display: flex;
    align-items: center;
  }
  .info-card .fa {
    margin-right: 0.75rem;
  }

  /* Gradient truck icon */
  .truck-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #378F6E, #66C1B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
  }

  .truck-icone {
  font-size: 110px;
  /* Gradient background */
  background: white;
  /* Clip background to text */
  -webkit-background-clip: text;
  background-clip: text;
  /* Make text fill transparent so gradient shows */
  -webkit-text-fill-color: transparent;
  color: transparent;
}
