			@keyframes pulseHighlight {
				  0%, 100% { 
					box-shadow: 0 0 0 0 rgba(72, 219, 251, 0); 
					transform: scale(1);
					filter: brightness(1);
				  }
				  50% { 
					box-shadow: 0 0 15px 5px rgba(72, 219, 251, 0.7); 
					transform: scale(1.05);
					filter: brightness(1.2);
				  }
				}

				.bot-container {
				  display: flex;
				  flex-wrap: wrap;
				  justify-content: center;
				  gap: 10px;
				}

				.bot-item {
				  width: 110px;
				  text-align: center;
				}

				.bot-image {
				  width: 100px;
				  height: 150px;
				  object-fit: contain;
				  background: white;
				  border-radius: 10px;
				  transition: all 0.3s ease;
				}

				.bot-image-1 {
				  animation: pulseHighlight 10s infinite;
				  animation-delay: 0s;
				}

				.bot-image-2 {
				  animation: pulseHighlight 10s infinite;
				  animation-delay: 2s;
				}

				.bot-image-3 {
				  animation: pulseHighlight 10s infinite;
				  animation-delay: 4s;
				}

				.bot-image-4 {
				  animation: pulseHighlight 10s infinite;
				  animation-delay: 6s;
				}

				.bot-image-5 {
				  animation: pulseHighlight 10s infinite;
				  animation-delay: 8s;
				}

				.bot-text {
				  color: white;
				  margin-top: 10px;
				  width: 100px;
				  margin-left: auto;
				  margin-right: auto;
				  font-size: smaller;
				}