.amberoo-architecture {
  background: linear-gradient(135deg, #f4f6ff, #eef1ff);
  position: relative;
}

/* Left Content */
.section-title {
  font-size: 32px;
  line-height: 1.3;
}

.section-desc {
  color: #666;
  font-size: 15px;
}

/* Card Wrapper */
.architecture-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card */
.architecture-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid #eaeaea;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* Header */
.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-box {
  width: 48px;
  height: 48px;
  background: #6c63ff;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s ease;
}

.architecture-card h5 {
  margin: 0;
  font-weight: 600;
}

/* Hidden Content */
.card-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  margin-top: 0;
}

.card-content p {
  font-size: 14px;
  color: #555;
  margin-top: 15px;
  margin-bottom: 6px;
}

.card-content span {
  font-size: 13px;
  font-weight: 500;
  color: #6c63ff;
}

/* Active State */
.architecture-card.active {
  border-color: #6c63ff;
  box-shadow: 0 12px 30px rgba(108, 99, 255, 0.15);
}

.architecture-card.active .card-content {
  max-height: 200px;
  opacity: 1;
}

.architecture-card.active .icon-box {
  background: #4f46e5;
}

/* Hover Effect (Desktop Only) */
@media (min-width: 992px) {
  .architecture-card:hover {
    transform: translateY(-4px);
  }
}


img.motion {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 2s infinite  alternate;
}

@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); }
}
