*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI' ;
}
html{
  scroll-behavior: smooth;
}

.lista{
  margin-left: 200px;
}

.circle{
  display: flex;
  position: absolute;
  margin-top: 30px;
  margin-left: 300px;
  
  height: 300px;
  width: 300px;
  border-radius: 50%;
  background-color: white;
}

nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);

  

}

nav ul {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: space-around;
  list-style: none;
  text-decoration: none;
  
}

nav ul li a {
  font-weight: 400;
  font-size: 1.2em;
}

a{
  text-decoration: none;
  color: #000;
  font-size: medium;
}


.quote-btn {
      position: relative;
      display: inline-block;
      padding: 12px 24px;
      font-size: 16px;
      color: white;
      background-color: black;
      border: none;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
    }

    .quote-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background-color: #282dad;
      z-index: 0;
      transition: left 0.5s ease;
    }

    .quote-btn:hover::before {
      left: 0;
    }

    .quote-btn span {
      position: relative;
      z-index: 1;
      display: block;
      text-align: center;
    }



.quote-section{
  padding: 80px 20px;
  text-align: center;
}

.quote-section .container{
  max-width: 800px;
  margin: 0 auto;
}

.quote-section h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.quote-section p{
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.main-text{
  margin-left: 40px;
}

.hero-section{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  height: 100vh;
  overflow: hidden;
}

.left{
  flex: 1;
  padding: 20px;
  max-width: 50%;
}
.right{
  flex: 1;
  position: relative;
  height: 400px;
}


.left h1{
  font-size: 32px;
  margin-bottom: 20px;
}


.img1{
  flex: 1;
  position: relative;
  height: 400px;

}

.container-img{
  width: 100%;
  position: absolute;
  /* right: -100px; */
  animation: dropAndBounce 2s ease-out forwards;
  
}


.track-input , .track-btn{
  height: 40px;
  width: 250px;
  font-size: medium;
}
.track-btn{
  background-color: black;
  color: white;
}
.track-input{
  text-align: center;
}


.logistics{
  display: flex;
  flex-direction: column;
  margin-top: -80px;
  height: 500px;
  width: auto;
  background-color: #18192e;
  text-align: center;

}

.logistics-heading{
  margin-top: 10px;
  color: #fff;
  font: 3.5em sans-serif;
}

.checked-container{
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}


.checked-container ul{
  margin-top: 70px;
  list-style: none;
  padding: 0;
  display: flex;
  gap: 500px;
  justify-content: center;
}
.list{
  font-size: 1.4rem;
}

#contact{
  display: flex;
  margin-left: 200px;
  margin-top: 50px;

}
.contact-btn{
  padding: 10px;
  margin-right: 8px;
}
#contact .fa-solid{
  margin-top: 10px;
  margin-left: 50px;
}

.ser-heading{
  text-align: center;
  font-size: 2em;
  margin-top: 10px;
}

.services{
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  margin: 50px 30px ;
}


.services img {
  left: 80px;
  top: 100px;
  opacity: 0.2;
  transition: opacity 0.5s ease, transform 0.4s ease;
}

.services:hover img {
  opacity: 1;
  transform: translateX(20px);
  
}

#mission{
  display: flex;
  justify-content: space-between;
  margin: 50px;

}

.mission-left{
  margin-left:  50px;
  
}

.mission-content{
  display: flex;
  margin-top: 50px;
  text-align: center;
  justify-content: space-between;
}

.content1{
  background-color: rgb(181, 181, 181);
  border-radius: 10px;
  margin-right: 10px;
  padding: 20px;
}
.mission-heading{
  text-align: center;
}
#mission-img{
  margin-left: -50px;
  width: 650px;
  height: 500px;
}

.mission-btn{
  margin-left: 150px;
}

.req-quote{
  display: flex;
  background-color: #1e2b50;
  height: auto;
  width: auto;

}

.req-img{
  height: 100%;
  color: #fff;
}

.container-req-img{
  margin-left: -150px;
  width: 75%;
}
.container-box{
  width: 30%;
  margin: -20px -60px;
}



.form-container h1 {
  margin-top: 20%;

}

form {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  background-color:#1e2b50;
  padding: 40px;
  text-align: left;
}

input{

 background: transparent;
    border: none;
    border-bottom: 2px #1e2b50;
    color: white;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    outline: none;
}
select {
    background: transparent;
    border: none;
    border-bottom: 2px #1e2b50;
    color: gray;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    outline: none;

}

.full-width {
  grid-column: span 2;
}

button {
  padding: 10px;
  font-size: 1em;
  background-color:#282dad;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;

  margin-left: 18px;
}

button:hover {
  background-color: black;
}


.how-it-works {
  background-color: #1e2b50;
  margin-top: -0px;
  text-align: center;
  width: auto;
  padding-bottom: 20px;
  color: white;
}

.how-it-works h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.steps {
  margin-left: 30px;
  display: flex;
  position: relative;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  background-color: #1e2b50;
  margin-bottom: 20px;
}

.step {
  background-color: #657bba;
  padding: 30px;
  border-radius: 10px;
  max-width: 250px;
  text-align: left;
  position: relative;

}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #2c3e70;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1em;
}

.step h2 {
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95em;
  color: #ccc;
}




.footer {
  background-color: #121d3a;
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 20px;
}

.footer-column {
  flex: 1 1 200px;
  margin: 10px 20px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}
.a{
  margin-left: -10px;
}
.b{
  margin-left: -50px;
}
.c{
  margin-left: -10px;

}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-logo {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-contact p,
.footer-social p {
  margin: 8px 0;
  color: #ccc;
}

.footer-social a {
  margin-right: 10px;
  color: #ccc;
  font-size: 1.2em;
  text-decoration: none;
}

.footer-social a:hover {
  color: white;
}

.menu-toggle {
  display: none;
}

.ready-ship{
  text-align: center;
  font-size: 80px;
}
.ready-ship-btn{
  margin: 20px 43%;
  background-color: #121d3a;
  color: white;
  border-radius: 10px;
  padding: 20px;
}



@media screen and (max-width: 768px) {

  nav ul {
      display: none;
      flex-direction: column;
      background-color: #fff;
      position: absolute;
      top: 70px;
      right: 0;
      width: 100%;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
      display: flex;
  }

  .menu-toggle {
      display: block;
      cursor: pointer;
      font-size: 24px;
      color: #000;
  }

  .quote-btn {
      /* display: none; */
  }

  nav {
      position: relative;
  }


  .hero-section {
    flex-direction: column;
    padding: 20px;
    height: auto;
  }

  .left, .right {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .track-input, .track-btn {
    width: 90%;
    margin-bottom: 10px;
  }

  .logistics-heading {
    font-size: 2em;
    text-align: center;
    margin: 0;
  }

  .log-checked ul {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  #contact {
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
  }

  #contact .fa-solid {
    margin: 10px 0 0 0;
  }

  .services {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  

  

  .req-quote {
    flex-direction: column;
    padding: 20px;
  }

  .form-container h1 {

    margin-top: 30px;
  }

  form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .full-width, button {
    grid-column: span 1;
    margin-left: 0;
  }

  .how-it-works .steps {
    flex-direction: column;
    align-items: center;
  }

  .footer {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    margin: 20px 0;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {

  nav {
    padding: 10px 20px;
  }

  .left h1 {
    font-size: 24px;
  }

  .logistics-heading {
    font-size: 1.8em;
  }

  .step {
    padding: 20px;
    max-width: 90%;
  }

  .step h2 {
    font-size: 1em;
  }

  .step p {
    font-size: 0.9em;
  }

  .container-img, .container-req-img, .container-box {
    position: static;
    width: 100%;
    margin: 0 auto;
  }
}


@keyframes dropAndBounce {
  0% {top:-900px;}
  50%{top:-90px;}
  100% {top:-100px;}
}
.logo {
  height: 40px;
}

.company1 {
  height: 50px;
  padding-right: 2%;

}
.company2 {
  height: 50px;
  padding-right: 4%;

}
.company3 {
  height: 50px;
  padding-right: 5%;

}
.company4 {
  height: 50px;
  padding: auto;

}

.footer-logo{
  height: 40px;

}

.arrow{
  height: 40px;
  margin-top: 40px;
  
}
.fottermap{
  margin-right: 50%;
  margin-left: 5%;
}
.designedby{
  margin: 10px 43%;
  background-color:white;
  color:#121d3a;
  border-radius: 10px;
  padding: 15px;
  
}
.designbyblock{
  align-items:stretch;
}

.track-btn {
  position: relative;
      display: inline-block;
      padding: 12px 24px;
      font-size: 16px;
      color: white;
      background-color: black;
      border: none;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
}

.track-btn:hover {
  background-color: #282dad; 
}

.quote-heading {
  color: white;
}

.full-width {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
  }

  label {
    margin-bottom: 5px;
    font-weight: 500;
  }    