
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: #0000;
}

a.nav-link {
color: #ffffffe6;
font-size: 16px;
    z-index: 99;
    position: relative;
}

a.nav-link:hover {
    color: white;
}

ul.navbar-nav {
    gap: 15px;
}

header{
    z-index:9;
    position:relative;
}


.navbar-nav {
  position: relative;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 8px 50px;
}

.navbar-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffffffc7,
    #e0e0e0,
    #ffffff6e,
    transparent
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background-size: 200% 100%;
  animation: borderMove 4s linear infinite;
}

@keyframes borderMove {
  0%   { background-position:   0% 50%; }
  100% { background-position: 200% 50%; }
}

/*Buttons*/
a.header-btn {
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #4C03F0;
  border: 1px solid #ffffff70;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding: 10px 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: capitalize;
  overflow: hidden;
  cursor: pointer;
  justify-content: center;
  text-decoration: none;
}

a.header-btn:hover {
  opacity: .95;
}

a.header-btn .animation {
  border-radius: 100%;
  animation: ripple 0.8s linear infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}


/* Button 1 — solid white */
a.btn1 {
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #ffffff70;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding: 10px 30px;
  color: #111111;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: capitalize;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
a.btn1:hover {
  opacity: .95;
}
a.btn1 .animation {
  border-radius: 100%;
  animation: ripple1 0.8s linear infinite;
}
@keyframes ripple1 {
  0% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0.08), 0 0 0 20px rgba(0,0,0,0.08), 0 0 0 40px rgba(0,0,0,0.08), 0 0 0 60px rgba(0,0,0,0.08);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0,0,0,0.08), 0 0 0 40px rgba(0,0,0,0.08), 0 0 0 60px rgba(0,0,0,0.08), 0 0 0 80px rgba(0,0,0,0);
  }
}

/* Button 2 — glass */
a.btn2 {
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding: 10px 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: capitalize;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
a.btn2:hover {
  opacity: .95;
}
a.btn2 .animation {
  border-radius: 100%;
  animation: ripple2 0.8s linear infinite;
}
@keyframes ripple2 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}

a.btn3 {
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #4C03F0;
  border: 1px solid #ffffff70;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding: 10px 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: capitalize;
  overflow: hidden;
  cursor: pointer;
  justify-content: center;
  text-decoration: none;
}

a.btn3:hover {
  opacity: .95;
}

a.btn3 .animation {
  border-radius: 100%;
  animation: ripple3 0.8s linear infinite;
}

@keyframes ripple3 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}



    

    /* â”€â”€â”€ ANIMATED RADIAL GLOW BACKGROUND â”€â”€â”€ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: hidden;
    }
    section.hero {
    margin-top: -100px;
    padding-top: 200px;
}

    .glow-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(
        ellipse 70% 60% at 50% 60%,
        #4a1b8a 0%,
        #2a0d5e 30%,
        #1a0840 55%,
        #0a0a0a 80%
      );
      animation: pulseGlow 4s ease-in-out infinite;
      z-index: 0;
    }

    @keyframes pulseGlow {
      0%, 100% { opacity: 1;    transform: scale(1);    }
      50%       {opacity: 0.9;transform: scale(1.04);}
    }

    /* Soft secondary inner glow */
    .glow-inner {
      position: absolute;
      width: 520px;
      height: 360px;
      top: 50%; left: 50%;
      transform: translate(-50%, -45%);
      background: radial-gradient(
        ellipse at center,
        rgba(130, 60, 255, 0.35) 0%,
        transparent 70%
      );
      animation: innerPulse 3s ease-in-out infinite alternate;
      pointer-events: none;
      z-index: 0;
    }

    @keyframes innerPulse {
      0%   { opacity: 0.6; transform: translate(-50%, -45%) scale(0.95); }
      100% { opacity: 1;   transform: translate(-50%, -45%) scale(1.08); }
    }

    /* â”€â”€â”€ FLOATING PARTICLES â”€â”€â”€ */
    .particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 1;
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(168, 85, 247, 0.6);
      animation: floatUp linear infinite;
    }

    @keyframes floatUp {
      0%   { transform: translateY(0) scale(1);   opacity: 0.7; }
      100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
    }

    /* â”€â”€â”€ NAV â”€â”€â”€ */
    nav {
      position: relative;
      z-index: 10;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 48px;
    }

    .nav-links {
      display: flex;
      gap: 24px;
      list-style: none;
      background: rgba(255, 255, 255, 0.07);
      border: 0.5px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      padding: 10px 24px;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .nav-links a.active,
    .nav-links a:hover { color: #fff; }

    .nav-btn {
      background: #7c3aed;
      color: #fff;
      border: none;
      border-radius: 999px;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
    }

    .nav-btn:hover { background: #6d28d9; }

    /* â”€â”€â”€ HERO CONTENT â”€â”€â”€ */
    .hero-content {
      position: relative;
      z-index: 10;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: center;
      padding: 40px 24px 80px;
      gap: 22px;
    }

    /* Badge */
    .badge {
      background: rgba(255, 255, 255, 0.08);
      border: 0.5px solid rgba(255, 255, 255, 0.18);
      color: rgba(255, 255, 255, 0.85);
      font-size: 14px;
      padding: 12px 25px;
      border-radius: 999px;
      animation: fadeDown 0.6s ease both;
      font-weight: 400;
      font-size: 18px;
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-14px); }
      to   { opacity: 1; transform: translateY(0);     }
    }

    /* Main heading */
    .hero-heading {
      font-size: clamp(40px, 7vw, 72px);
      font-weight: 300;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -4px;
      animation: fadeUp 0.7s 0.1s ease both;
      font-family: "Parkinsans", sans-serif;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0);    }
    }

    /* â”€â”€â”€ ANIMATED UNDERLINE â”€â”€â”€ */
    .underline-word {
      position: relative;
      display: inline-block;
      font-weight: 500;
    }

    .underline-word::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 4px;
      border-radius: 2px;
      background: linear-gradient(90deg, #a855f7, #7c3aed, #c084fc, #a855f7);
      background-size: 300% 100%;
      transform-origin: left center;

      /* Draw + shimmer */
      animation:
        drawLine 1s   0.65s cubic-bezier(0.4, 0, 0.2, 1) both,
        shimmer  3.5s 1.65s linear infinite;
    }

    /* Second word underline â€” slightly delayed */
    .underline-word-2::after {
      animation:
        drawLine 1s   0.95s cubic-bezier(0.4, 0, 0.2, 1) both,
        shimmer  3.5s 1.95s linear infinite;
    }

    @keyframes drawLine {
      from { transform: scaleX(0); opacity: 0; }
      to   { transform: scaleX(1); opacity: 1; }
    }

    @keyframes shimmer {
      0%   { background-position:   0% 50%; }
      100% { background-position: 300% 50%; }
    }

    /* Sub-heading */
    .hero-sub {
      color: white;
      font-size: 28px;
      font-weight: 400;
      animation: fadeUp 0.7s 0.3s ease both;
    }

    
