.container .text-end h5 {
	color: #ff6600;
}

/* app section homepage */
.app-section {
  padding: 20px;
}

.app-section .app-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.app-section .app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
}

.app-section .app-content {
  max-width: 500px;
  text-align: center;
}

.app-section .text-dark {
  color: #454545;
}

.app-section .text-orange {
  color: #fa7722;
}

.app-section .google-play-btn {
  width: 180px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.app-section .google-play-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-section .app-image {
  opacity: 0;
  animation: slideLeft 0.8s ease-out forwards;
}

.app-section .app-content {
  opacity: 0;
  animation: slideRight 0.8s ease-out forwards;
  animation-delay: 0.15s;
}

.app-section .google-play-btn {
  opacity: 0;
  animation: slideUp 0.7s ease-out forwards;
  animation-delay: 0.35s;
}