/* Ensure no background on icon */
.courier-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
    text-align: center;
  }
  
  .courier-icon {
    /* Removed background */
    margin-bottom: 1px;
    animation: moveTruck 5s linear infinite; /* Animation for the truck */
  }
  
  .courier-icon i {
    font-size: 5rem; /* Bigger truck icon */
    color: #7b3130; /* Use your secondary color for the icon */
  }
  
  .courier-text {
    max-width: 90%;
    color: #333;
  }
  
  /* Road design at the bottom */
.road {
    width: 100%;
    height: 20px;
    background: #333; /* Dark road color */
    /* position: absolute; */
    bottom: 0;
    z-index: -1; /* Keeps the road behind the icon and text */
    border-top: 3px dashed #e5af68; /* Dashed line in the road for effect */
  }

  .tile {
    background: linear-gradient(145deg, #7b3130, #e5af68); /* Subtle gradient from #7b3130 to #e5af68 */
    padding: 20px;
    font-size: 1rem;
    border-radius: 15px; /* Rounded corners for the tile */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: left;
    margin-top: 20px;
    max-width: 600px;
    margin: 0 auto; /* Center the tile */
    color: #fff; /* White text color for better contrast */
  }
  
  /* Add padding to the text */
  .tile p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    line-height: 1.6;
    color: #fff; /* Ensuring text is white to contrast with the gradient */
  }
  
  .courier-title {
    font-family: 'Montserrat', sans-serif;
    margin-top: 40px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 0;
    text-align: center;
  }

  /* Keyframes for the truck animation (moving left to right) */
  @keyframes moveTruck {
    0% {
      transform: translateX(-100%); /* Starts from off-screen to the left */
    }
    100% {
      transform: translateX(100%); /* Moves to off-screen to the right */
    }
  }
  
@media screen and (min-width: 768px) {

  .courier-title {
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
  }

}