  body {
      font-family: 'Chakra Petch';
      color: #111827;
      background-color: #000 !important;

  }


  .border-gradient-custom {
      border-style: solid;
      border-image-source:
          linear-gradient(180deg, rgba(157, 162, 171, 0.8) 0%, rgba(63, 65, 69, 0.8) 100%),
          radial-gradient(70.77% 79.76% at 36.62% 0%, #FFFFFF 0%, rgba(0, 0, 0, 0) 100%);
      border-image-slice: 1;
  }


  /* Custom neon glow effect for the dollar sign */
  .neon-glow {
      text-shadow: 0 0 5px #a3ff00, 0 0 10px #a3ff00, 0 0 20px #a3ff00, 0 0 40px #a3ff00, 0 0 80px #a3ff00;
  }

  /* Custom shadow for the central card */
  .card-shadow {
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 0, 0, 0.2);
  }

  /* Styling for the mobile menu button */
  .hamburger-line {
      transition: all 0.3s ease-in-out;
  }

  .hamburger.open .hamburger-line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
  }

  .hamburger.open .hamburger-line:nth-child(2) {
      opacity: 0;
  }

  .hamburger.open .hamburger-line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
  }

  /* Custom clip-path for cut corners */
  .card-cut-tr {
      clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  }

  .card-cut-tl {
      clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
  }

  .accent-text {
      color: #DCFD34;
  }

  .accent-bg {
      background-color: #DCFD34;

  }

  .para-color {
      color: #9DA2AB;
  }

  /* Reusable class for the glowing glassmorphism cards */
  .glass-card {
      background-color: rgba(22, 22, 22, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 1.5rem;
      /* rounded-3xl */
      transition: all 0.3s ease;
      box-shadow: 0 0 50px rgba(163, 230, 53, 0.2);
  }

  .glass-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 10px 70px rgba(163, 230, 53, 0.3);
      border-color: rgba(163, 230, 53, 0.5);
  }

  /* Style for the title buttons */
  .section-title-button {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      /* space-x-3 */
      background-color: #111111;
      padding: 0.75rem 1.5rem;
      /* py-3 px-6 */
      border-radius: 9999px;
      /* rounded-full */
      border: 1px solid #333;
      font-weight: 600;
      /* font-semibold */
      font-size: 1.125rem;
      /* text-lg */
  }

  .section-title-button .arrow-icon {
      background-color: #A3E635;
      /* lime-400 */
      color: #111;
      border-radius: 9999px;
      padding: 0.25rem;
      /* p-1 */
  }