#hero {
    min-height: 100vh;
    padding: 50px 0;
}


.container-track-it {
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
}

body{
    padding-top:20px;
}

.b-track {
  background: url('https://i.postimg.cc/c471PfZM/Whats-App-Image-2025-04-14-at-10-08-24.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Keeps the background static */
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0;
  color: white; /* Ensures text is readable */
}

.b-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
  z-index: -1;
}

.transbox {
  background: rgba(255, 255, 255, 0.15); /* Light transparent box */
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px); /* Glass effect */
}

h1, p, ul, form {
  position: relative;
  z-index: 2;
}

.btn-get-quote {
  background: #ff6600;
  color: white;
  padding: 12px 25px;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-get-quote:hover {
  background: #cc5500;
}
