::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #1E293B;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #3B82F6, #10B981);
  border-radius: 8px;
}
.capsule {
    background-color: #1f2937;
    color: #fbbf24;
    padding: 8px 16px;
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
  }
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  .float {
    animation: float 3s ease-in-out infinite;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
  }
  .faq-answer.active {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
  }
  .moving-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }
  .moving-box {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    animation: moveBox 20s infinite linear;
  }
  @keyframes moveBox {
    0%,
    100% {
      transform: translate(0, 0);
    }
    25% {
      transform: translate(100%, 100%);
    }
    50% {
      transform: translate(200%, 50%);
    }
    75% {
      transform: translate(100%, -100%);
    }
  }  

.feedback-card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}