/* Section */
.coming-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

/* Card Box */
.coming-box {
  text-align: center;
  padding: 50px 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #f5f7ff);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  width: 100%;
  transition: 0.4s;
}

.coming-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */
.coming-icon {
  font-size: 60px;
  margin-bottom: 20px;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Title */
.coming-title {
  font-weight: 700;
  margin-bottom: 15px;
}

/* Desc */
.coming-desc {
  color: #666;
  margin-bottom: 30px;
}

/* Progress Bar */
.coming-progress {
  height: 10px;
  background: #eee;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 30px;
}

.coming-bar {
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, #0d6efd, #4facfe);
  animation: progressAnim 3s infinite alternate;
}

@keyframes progressAnim {
  from {
    width: 50%;
  }
  to {
    width: 85%;
  }
}

/* Button */
.coming-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #0d6efd, #4facfe);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.coming-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(13, 110, 253, 0.4);
}
