#whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    animation: bounce 2s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  #whatsapp-float img {
    width: 50px;
    height: 50px;
  }
  
  /* Bounce animation for normal */
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0); 
    }
    40% {
      transform: translateY(-8px);
    }
    60% {
      transform: translateY(-4px);
    }
  }
  
  /* Hover effect */
  #whatsapp-float:hover {
    transform: scale(1.2);
    animation: hoverBounce 1s infinite;
    box-shadow: 0 0 15px #25D366;
  }
  
  /* Special bounce on hover */
  @keyframes hoverBounce {
    0%, 100% {
      transform: scale(1.2) translateY(0);
    }
    50% {
      transform: scale(1.25) translateY(-5px);
    }
  }
  
  #homepage-block-3 {
			position: relative;
			height: 100vh;
			overflow: hidden;
		}

		.form-taxi-short {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			background: rgba(0, 0, 0, 0.5);
			padding: 40px 30px;
			border-radius: 12px;
			text-align: center;
			color: #fff;
			width: 90%;
			max-width: 700px;
		}

		/* ✅ Mobile View Fix */
		@media (max-width: 990px) {
			.form-taxi-short {
				position: static;
				transform: none;
				margin: 0 auto;
				width: 95%;
				padding: 25px 15px;
				left: 0%;

			}
		}




        #homepage-block-custom {
			position: relative;
			height: 100vh;
			overflow: hidden;
		}

		.form-taxi-short-custom {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			background: rgba(0, 0, 0, 0.5);
			padding: 40px 30px;
			border-radius: 12px;
			text-align: center;
			color: #fff;
			width: 90%;
			max-width: 700px;
		}

		/* ✅ Mobile View Fix */
		@media (max-width: 990px) {
			.form-taxi-short-custom {
				position: static;
				transform: none;
				margin: 0 auto;
				width: 95%;
				padding: 25px 15px;
				left: 0%;
                top: 250%;

			}
            #homepage-block-custom{
                position: relative;
			height: auto;
			overflow: hidden;
            }
		}