
.ambulance-image {
    position: absolute;
    bottom: 0;
    right: -400px; /* Start off-screen on the right */
    animation: driveRightToLeft 10s linear infinite; /* slower animation */
    z-index: 2;
  }
  
  .ambulance-image img {
    width: 300px;
    max-width: 90%;
  }
  
  /* Animation to drive right to left */
  @keyframes driveRightToLeft {
    0% {
      right: -400px;
      transform: scale(1);
    }
    50% {
      transform: scale(1.05); /* optional zoom for effect */
    }
    100% {
      right: 100vw; /* Move completely to the left */
      transform: scale(1);
    }
  }
 
  