    .no-scrollbar::-webkit-scrollbar {
      display: none;
    }

    .no-scrollbar {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }
  .scrollbar-hide {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }

    @keyframes zoomInOut {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.15);
    }
  }

  .animate-zoom-icon {
    animation: zoomInOut 2s ease-in-out infinite;
  }
    @keyframes spinOnce {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  [data-aos="rotate-icon"] {
    animation: spinOnce 1s ease-in-out;
  }


    @keyframes blink-bg {
    0%, 100% {
      background-color: #dc2626; /* Tailwind red-600 */
    }
    50% {
      background-color: #000000; /* black */
    }
  }

  .animate-blink-bg {
    animation: blink-bg 1.5s infinite;
  }

  


  /* second */
   /* @keyframes blink-bg {
    0%, 100% {
      background-color: #dc2626;
      transform: scale(1);
    }
    50% {
      background-color: #000000; 
      transform: scale(1.05);
    }
  }

  .animate-blink-bg {
    animation: blink-bg 1.4s infinite ease-in-out;
  } */