.bg-lilac{
    background-color: #cb69a6 !important;
  }
  .bg-purple{
    background-color: #683388 !important;
  }
  .bg-light-blue{
    background-color: #02aebc !important;
  }
  .bg-yellow{
    background-color: #fff212 !important;
  }
  
  .text-lilac{
    color: #cb69a6 !important;
  }
  .text-purple{
    color: #683388 !important;
  }
  .text-light-blue{
    color: #02aebc !important;
  }
  .text-yellow{
    color: #fff212 !important;
  }
  
  .border-none{
    border: none !important;
  }
  
  .bounce {
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .glow{
    animation: glow 2s infinite;
  }
  
  @keyframes glow {
    0% { opacity: 1; }
    50% { opacity: 0.1; }
    100% { opacity: 1; }
  }

  .zoom{
    animation: zoom 2s infinite;
  }
  
  @keyframes zoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }


  .topmain{
    padding-top: 160px;
  }