 
 :root{
    --dark-blue: #02000D;
      --Nebula: #120A2A;
      --violate: #8334FF;
      --violate-light: #E0C6FE;
      --blue:#3A1DAD;
      --blue-v1:#6E45F2;
      --blue-v2:#6538FF;
      --blue-v3:#BEA2FF;
 }
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #02000D, #1c1040);
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  font-family: 'Figtree', sans-serif;
  
}


    /* Loader Overlay */
    #loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: linear-gradient(135deg, #02000D, #1c1040);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s ease;
    }

    .pl {
      width: 6em;
      height: 6em;
    }

    .pl__ring {
      animation: ringA 2s linear infinite;
    }

    .pl__ring--a { stroke: #f3d1ff; }
    .pl__ring--b { animation-name: ringB; stroke: #c173ff; }
    .pl__ring--c { animation-name: ringC; stroke: #8b3dff; }
    .pl__ring--d { animation-name: ringD; stroke: #5e2eff; }

    /* Main Website (hidden by default) */
    #main-content {
      display: none;
      background: white;
      min-height: 100vh;
      padding: 2rem;
    }

    /* Keyframes for animations */
    @keyframes ringA {
      from, 4% { stroke-dasharray: 0 660; stroke-width: 20; stroke-dashoffset: -330; }
      12% { stroke-dasharray: 60 600; stroke-width: 30; stroke-dashoffset: -335; }
      32% { stroke-dasharray: 60 600; stroke-width: 30; stroke-dashoffset: -595; }
      40%, 54% { stroke-dasharray: 0 660; stroke-width: 20; stroke-dashoffset: -660; }
      62% { stroke-dasharray: 60 600; stroke-width: 30; stroke-dashoffset: -665; }
      82% { stroke-dasharray: 60 600; stroke-width: 30; stroke-dashoffset: -925; }
      90%, to { stroke-dasharray: 0 660; stroke-width: 20; stroke-dashoffset: -990; }
    }

    @keyframes ringB {
      from, 12% { stroke-dasharray: 0 220; stroke-width: 20; stroke-dashoffset: -110; }
      20% { stroke-dasharray: 20 200; stroke-width: 30; stroke-dashoffset: -115; }
      40% { stroke-dasharray: 20 200; stroke-width: 30; stroke-dashoffset: -195; }
      48%, 62% { stroke-dasharray: 0 220; stroke-width: 20; stroke-dashoffset: -220; }
      70% { stroke-dasharray: 20 200; stroke-width: 30; stroke-dashoffset: -225; }
      90% { stroke-dasharray: 20 200; stroke-width: 30; stroke-dashoffset: -305; }
      98%, to { stroke-dasharray: 0 220; stroke-width: 20; stroke-dashoffset: -330; }
    }

    @keyframes ringC {
      from { stroke-dasharray: 0 440; stroke-width: 20; stroke-dashoffset: 0; }
      8% { stroke-dasharray: 40 400; stroke-width: 30; stroke-dashoffset: -5; }
      28% { stroke-dasharray: 40 400; stroke-width: 30; stroke-dashoffset: -175; }
      36%, 58% { stroke-dasharray: 0 440; stroke-width: 20; stroke-dashoffset: -220; }
      66% { stroke-dasharray: 40 400; stroke-width: 30; stroke-dashoffset: -225; }
      86% { stroke-dasharray: 40 400; stroke-width: 30; stroke-dashoffset: -395; }
      94%, to { stroke-dasharray: 0 440; stroke-width: 20; stroke-dashoffset: -440; }
    }

    @keyframes ringD {
      from, 8% { stroke-dasharray: 0 440; stroke-width: 20; stroke-dashoffset: 0; }
      16% { stroke-dasharray: 40 400; stroke-width: 30; stroke-dashoffset: -5; }
      36% { stroke-dasharray: 40 400; stroke-width: 30; stroke-dashoffset: -175; }
      44%, 50% { stroke-dasharray: 0 440; stroke-width: 20; stroke-dashoffset: -220; }
      58% { stroke-dasharray: 40 400; stroke-width: 30; stroke-dashoffset: -225; }
      78% { stroke-dasharray: 40 400; stroke-width: 30; stroke-dashoffset: -395; }
      86%, to { stroke-dasharray: 0 440; stroke-width: 20; stroke-dashoffset: -440; }
    }

.logo {
  display: flex;
  align-items: center;
}


.logo img {
  height: 30px;
  width: auto;
}
.logo-2{
  display: none;
}
    .navigation{
       padding-top: 20px;
    }
   .navbar {
    background: rgba(255, 255, 255, 0.1); /* translucent white */
    backdrop-filter: blur(12px);           /* frosted glass effect */
    -webkit-backdrop-filter: blur(12px);   /* Safari support */
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1); /* optional glow/shadow */
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 40px;
    width: 90%;
    margin: auto;
    position: relative;
    z-index: 1000;
  }

    .navbar-top {
      display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      z-index: 1001;
    }

    .menu-toggle div {
      width: 25px;
      height: 3px;
      background-color:var(--violate-light);
      margin: 4px 0;
      transition: 0.4s;
    }

    .menu-toggle.open div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.open div:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.open div:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      /* background: rgba(255, 255, 255, 0.1);
      border: 1px solid #E0C6FE;
      border-radius: 20px;
      backdrop-filter: blur(10px); */
      padding: 12px 20px;

    }

    .nav-links a {
      color: #BEA2FF;
      text-decoration: none;
      font-weight: lighter;
      transition: 0.3s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #fff;
    }

    .nav-links .flag {
      width: 24px;
      height: auto;
    }

    .auth-buttons {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 5px; 
    }

    .auth-buttons a {
      padding: 8px 20px;
      border-radius: 20px;
      transition: 0.3s;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
    }

    .auth-buttons a.login-btn {
      background-color: transparent;
      border: 1px solid #6E45F2;
      color: #E0C6FE;
    }

    .auth-buttons a.login-btn:hover {
      background-color: #6E45F2;
      color: white;
    }

    .auth-buttons a.signup-btn {
      background-color: #8334FF;
      border: none;
      color: white;
    }

    .auth-buttons a.signup-btn:hover {
      background-color: #6E45F2;
    }

    .overlay {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 999;
    }
    .mobile-auth {
      display: none;
    }
    .desktop-auth {
      display: flex;
    }


/* Dropdown Container */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* Dropdown Button */
.dropbtn {
  background: none;
  border: none;
  color: #BEA2FF;
  font: inherit;
  cursor: pointer;
  padding: 10px 0;
  font-size: 16px;
  font-weight: lighter;
  transition: color 0.3s ease;
}


/* Dropdown Content */
.dropdown-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 110%;
  left: 0;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  min-width: 180px;
  border-radius: 12px;
  padding: 10px 0;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;

}

/* Show dropdown with transition */
.dropdown:hover .dropdown-content,
.dropdown.show .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-content a {
   padding: 12px 20px;
  display: block;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease, padding-left 0.3s ease;
  border-radius: 8px;
}

.dropdown-content a:hover {
  color:#BEA2FF ;
  padding-left: 26px;
} 

/* Hover for desktop */
@media (hover: hover) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* Show when active on mobile */
.dropdown.show .dropdown-content {
  display: flex;
}

/* When screen ≤ 1024px, show menu version */
@media (max-width: 1024px) {
        .logo{
        display: block;
        width: 150px;
      }
      .logo-2{
        display: none;
        width: 40px;
      }
      .menu-toggle {
        display: flex;
      }
        .nav-links {
        display: none;
        flex-direction: column;
        text-align: left; 
        align-items: start;
        position: absolute;
        top: 15px;
        right: 0;
        background-color: #120A2A;
        padding: 20px;
        gap: 10px;
        flex-wrap: wrap;
        border-radius: 8px 0 0 8px;
        z-index: 1000;
        width:100%;
        border:  none;


      }
  .mobile-auth {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 16px;
    justify-content: space-between;
    
  }

  .mobile-auth a {
    flex: 1; /* Make both buttons equal width */
    text-align: center;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;

  }
  

  .desktop-auth {
    display: none;
  }
  .nav-links.active {
        margin-top: 50px;
        display: flex;
        animation: slideIn 0.3s ease;
      }

      .auth-buttons {
        justify-content: flex-end;
        width: 90%;
        margin-top: 12px;
        margin: auto;
      }

      .auth-buttons a {
      padding: 9px 10px;
      border-radius: 8px;
      transition: 0.3s;
      font-weight: 500;
      text-align: center;
      height: 40px;
      text-decoration: none;
    }


      @keyframes slideIn {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0); }
      }
}

/* On desktop, keep them aligned right */
@media (min-width: 1025px) {
  .desktop-auth {
    display: flex;
    gap: 12px;
    align-items: center;
    
  }

  .desktop-auth a {
    padding: 8px 20px;
    font-weight: 500;
  }
}

    /* Hero Background */
.hero-bg {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(131, 52, 255, 0.2), transparent 40%) #02000D;
  overflow: hidden;
  z-index: 0;
}

/* Container */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  padding: 40px 20px;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Content */
.hero-container .content {
  flex: 1;
  min-width: 280px;
  color: white;
}

.content h1,
.content h2 {
  margin: 0;
  text-align: left;
}

.content h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  animation: fadeIn 1.5s ease-in forwards;
  opacity: 0;
}

.content h2.typewriter {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  margin: 10px 0 0;
  background: linear-gradient(90deg, #8334FF, #E0C6FE, #6E45F2, #6538FF, #BEA2FF);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  animation:
    smoothWrite 2s ease-out forwards,
    gradientMove 5s linear infinite;
  animation-delay: 0.6s, 2.6s;
}

.content p {
  font-size: 1.1rem;
  color: #f1f1f1;
  margin-top: 20px;
  animation: riseUp 1s ease-out forwards;
  animation-delay: 2.7s;
  opacity: 0;
  transform: translateY(40px);
}

/* CTA Buttons */
.get {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  animation: riseUp 1s ease-out forwards;
  animation-delay: 3s;
  opacity: 0;
  transform: translateY(40px);
}

.btn-1, .btn-2 {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.6s;
  text-decoration: none;
  box-shadow: 0px 0px 60px #28174f;
}

.btn-1 {
  background: transparent;
  color: #eee;
  border: 1px solid #6E45F2;
}
.btn-1:hover {
  background: linear-gradient(270deg, rgba(24, 2, 78, 0.681), rgba(115, 31, 232, 0.873));
  color: #000;
  border: none;
}

.btn-2 {
  background: #6E45F2;
  color: #fff;
  border: none;
}
.btn-2:hover {
  background: linear-gradient(270deg, rgba(24, 2, 78, 0.681), rgba(115, 31, 232, 0.873));
  color: #000;
}

/* Image Section */
.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  animation: fadeIn 1.5s ease-in forwards;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(2,0,13,0.6), rgba(131,52,255,0.4));
  z-index: -1;
}

/* Animations */
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes smoothWrite {
  0% { clip-path: inset(0 100% 0 0); opacity: 0; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-bg {
    padding: 3rem 2rem;
  }
}
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .content h1,
  .content h2,
  .content p {
    text-align: center;
  }
  .hero-image-wrapper {
    display: none;
  }
  .get {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .btn-1, .btn-2 {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  .content p {
    font-size: 0.95rem;
  }
}




/* counter section */

.stats-wrapper {
      padding: 40px 20px;
      border-radius: 30px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
      max-width: 1600px;
      width: 95%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
      margin: auto;
      margin-top: 30px;
    }


.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-box {
  flex: 1 1 160px;
  max-width: 190px;
  min-width: 140px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: center;
}
.stat-box:nth-child(1){
  max-width: 50px;
}
.stat-box:nth-child(9){
  max-width: 230px;

}


.stat-box h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fbfafb;
  margin-top: 10px;
}


.stat-box p {
  margin-top: 14px;
  margin-left: 10px;
  text-align: left;
  font-size: 1.0rem;
  color: #bbbbbb;
}



.divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  height: 60px;
}


@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    align-items: center;
    gap: 24px;

  }
   .counter{
    text-align: center;
    
  }

  .divider {
    display: none;
  }
}

@media (max-width: 540px) {
  .stat-box {
    flex: 0 0 48%;         /* Take 48% width of row */
    max-width: 48%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .stat-box h2 {
    font-size: 2rem;
    text-align: center;
  }

  .stat-box p {
    font-size: 0.95rem;
    margin-left: 0;
    text-align: center;
  }

  .divider {
    display: none;
  }
}

@media (max-width: 480px){
  .stats-section {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .stat-box {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .counter{
    text-align: center;
  }
   .stat-box h2{
     font-size: 2rem;
   }
   .stat-box p{
       font-size: 0.95rem;
   }
  .stat-box h2,
  .stat-box p {
    text-align: center;
    
  }

  .divider {
    display: none;
  }  
}



/* card */
.award-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: auto;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
  animation: glowShadow 4s ease-in-out infinite;
}

@keyframes glowShadow {
  0% {
    box-shadow: -10px 0 10px #6c1af0, -20px 0 20px #8334FF;
  }
  50% {
    box-shadow: 10px 0 20px #640feec4, 20px 0 40px #6E45F2;
  }
  100% {
    box-shadow: -10px 0 10px #6c1af0, -20px 0 20px #8334FF;
  }
}

.trophy {
      flex: 1 1 300px;
      text-align: center;
      padding: 20px;
  width: 30%;
    }

    .trophy img {
      width: 100%;
      max-width: 280px;
      animation: float 4s ease-in-out infinite;
      margin: auto;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    .trophy-animate {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.4s ease-out;
}

.trophy-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

.award-text {
      flex: 1 1 400px;
      padding: 20px 30px;
      color: #ccc;

    }

 .award-text h1 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #fff;
    }

    .award-text h1 span {
    background: linear-gradient(90deg, #8334FF, #E0C6FE, #6E45F2); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

    .award-text h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 20px 0 10px;
      color: #aaa;
    }

    .award-text p {
      font-size: 1rem;
      color: #999;
      max-width: 600px;
    }


    .animate-text {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-out;
}

.animate-text.animate {
  opacity: 1;
  transform: translateX(0);
}

    @media (max-width: 768px) {
      .award-card {
        flex-direction: column;
        text-align: center;
      }

      .award-text {
        padding: 20px;
        text-align: left;
      }

      .award-text h1 {
        font-size: 2rem;
      }

      .award-text h2 {
        font-size: 1.2rem;
      }
      .trophy {
      flex: 1 1 300px;
      text-align: center;
      padding: 20px;
      width: 80%;

    }

    }

    
/* why banner */


    .why_banner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 60px 20px;
      gap: 40px;
      max-width: 1400px;
      margin: auto;
    }

    .left {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
    }

    .tagline {
      text-transform: uppercase;
      color: #aaa;
      font-size: 0.8rem;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .heading {
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.2;
    }

    .funduinfx {
      background: linear-gradient(90deg, #8334FF, #E0C6FE, #6E45F2); 
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .gray-text {
      color: #bbb;
    }



    .feature {
      margin-top: 40px;
      display: flex;
      align-items: flex-start;
      gap: 50px;
    }
    .feature h4{
      font-size: 1.4rem;
      margin-bottom: 10px;

    }
    .icon-box {
      width: 56px;
      height: 56px;
      min-width: 56px;
      background-color: #120A2A;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 20px rgba(131, 52, 255, 0.4);
      animation: glowShadow 4s ease-in-out infinite;
    }

    .icon {
      width: 25px;
      height: 25px;

    }

    .purple { color: #6E45F2; }
    .pink { color: #8334FF; }
    .light { color: #E0C6FE; }

    .right {
      flex: 1;
      /* min-width: 200px; */
      max-width: 450px;
      height: 500px;
      

    }

    .chart-box {
      background: #120A2A;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 0 20px rgba(131, 52, 255, 0.2);
      width: 100%; 
      height: 400px;
      margin-top: 50px;
     
    }

    .chart-box h2 {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .bar-chart {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      height: 200px;
      margin-bottom: 20px;
    }

    .bar {
      width: 20px;
      border-radius: 10px;
      background-color: var(--clr);
    }

    .bar1 { height: 30%; --clr: #8334FF; }
    .bar2 { height: 60%; --clr: #E0C6FE; }
    .bar3 { height: 90%; --clr: #3A1DA5; }
    .bar4 { height: 70%; --clr: #6E45F2; }
    .bar5 { height: 65%; --clr: #6538FF; }
    .bar6 { height: 55%; --clr: #BEA2FF; }

    .legend {
      display: flex;
      justify-content: center;
      gap: 20px;
      font-size: 0.8rem;
      color: #eee;
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      box-shadow: 0 0 6px currentColor;
    }

    .step1 { color: #6E45F2; }
    .step2 { color: #E0C6FE; }

    @keyframes glowShadow {
      0% { box-shadow: 0 0 10px #6c1af0, 0 0 20px #8334FF; }
      50% { box-shadow: 0 0 20px #640feec4, 0 0 40px #6E45F2; }
      100% { box-shadow: 0 0 10px #6c1af0, 0 0 20px #8334FF; }
    }

    @media (max-width: 768px) {
      .why_banner {
        flex-direction: column;
        padding: 40px 20px;
      }
       .right{
        width: 100%;
       }
      .heading {
        font-size: 2.3rem;
      }

      .chart-box {
        width: 100%;
        margin-left: 0;
      }

      .bar {
        width: 16px;
      }
      .feature h4{
      font-size: 1.2rem;
      
    }
    }


    /* how section */

    .container {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      padding: 2rem;
      max-width: 1600px;
      margin: auto;
       text-align: center;
    }
        .container h1 {
      font-size: 3rem;
      font-weight: 700;
      color: #fcfbfb;
    
     
      
    }
    .icon-bar {
      width: 350px;
      height: 64px;
      border-radius: 16px;
      background: linear-gradient(to right, #6c2cf8 0%, rgba(18,7,43,0) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }


    .container h1 span {
      background: linear-gradient(to right,  #8334FF, #E0C6FE, #6E45F2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .container p {
      max-width: 700px;
      margin: 20px auto;
      font-size: 1.1rem;
      line-height: 1.6;
      color: #ccc;
    }
    .how-btn{
      margin-bottom: 30px;
       display: flex;
      justify-content: center;
      text-align: center;
      align-items: center;

    }
      .step-section {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-left: 40px;
      margin-right: 40px;
      
    }
    .step-section .card{
      background: #120a2a;
    }
    .cta-button {
      margin-top: 30px;
      background: #6c2cf8;
      /* border:  1px solid #6E45F2; */
      /* border: none; */
      color: #060606;
      font-weight: 600;
      padding: 14px 32px;
      font-size: 1rem;
      border-radius: 16px;
      cursor: pointer;
      width: 20%;
      transition: transform 0.3s ease;
       display: inline-block;
       text-decoration: none;
    }

    .cta-button:hover {
      transform: scale(1.05);
    }
    @media (max-width: 768px) {
      .how-it-works h1 {
        font-size: 2.2rem;
      }

      .how-it-works p {
        font-size: 1rem;
        padding: 0 10px;
      }
      .cta-button{
        font-weight: 500;
      padding: 14px 32px;
      font-size: 0.6rem;
      width: 40%;
      }
    }




    /* Desktop styles */
@media (min-width: 768px) {
  .step-section {
    flex-direction: row;
    justify-content: space-between;
  }

  .card {
    width: 100%;
    max-width: 90%;
  }
  .icon-bar {
        width: 100%;
        justify-content: flex-start;
        padding-left: 16px;
      }
}
@media (max-width: 600px) {
     

      .icon-bar {
        width: 100%;
        justify-content: flex-start;
        padding-left: 16px;
      }
    }

/* ✅ Mobile-friendly card layout */
@media (max-width: 767px) {
  .step-section {
    flex-direction: column;
    gap: 1.5rem;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 80px;
  }

  .card {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    font-size: 0.95rem;
  }

  .card h2 {
    font-size: 1.3rem;
  }

  .card .label {
    font-size: 1.1rem;
  }

  .card .desc {
    font-size: 0.95rem;
  }

  .cta-button {
    width: 80%;
    font-size: 0.9rem;
    padding: 12px 20px;
  }
}


    .card {
      background-color:#210b46;
      padding: 2rem;
      border-radius: 20px;
      flex: 1;
      /* box-shadow: 0 0 20px rgba(131, 52, 255, 0.1); */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.4s ease;
      box-shadow: 0 0 0 transparent;
       border: 1px solid rgba(131, 52, 255, 0.1);
       cursor: pointer;
    }

    .card h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      /* background: linear-gradient(to right, #E0C6FE, #8334FF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; */
      color: #fff;
      margin-top: 20px;
      

    }

    .card p {
      color: #ccc;
      margin: 1rem 0;
      text-align: left;
    }

    .label {
      font-size: 1.25rem;
      color:  #E0C6FE;
      margin-top: 1rem;
      text-align: left;
    }

    .desc {
      font-size: 1rem;
      color: white;
      text-align: left;
    }

    .wave-chart {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(to bottom, #20124a, transparent);
}

.wave-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave1, .wave2 {
  fill: none;
  stroke-width: 4;
  animation: waveMove 6s infinite linear;
}

.wave1 {
  stroke: #8334FF;
  stroke-width: 4;
  animation-delay: 0s;
  stroke-dasharray: 6;
}

.wave2 {
  stroke: #E0C6FE;
  stroke-width: 3;
  animation-delay: 3s;
  stroke-dasharray: 3;
  stroke-linecap: round;
  opacity: 0.8;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



    .balance-card {
      background-color: #0f0f1e;
      padding: 1.5rem;
      border-radius: 20px;
      margin-top: 1rem;
      text-align: center;
      box-shadow: 0 4px 20px rgba(131, 52, 255, 0.2);
    }

    .balance-card h3 {
      font-size: 2rem;
      margin: 0.5rem 0;
      color: white;
    }

    .slider-bar {
      height: 6px;
      width: 100%;
      background: linear-gradient(to right, #8334FF, #E0C6FE);
      border-radius: 4px;
      margin: 1rem 0;
      position: relative;
    }

    .slider-bar::after {
      content: '';
      position: absolute;
      top: -4px;
      left: 80%;
      width: 14px;
      height: 14px;
      background: white;
      border-radius: 50%;
      border: 2px solid #8334FF;
    }




/* Hover effect */
.card:hover {
  background: rgba(18, 10, 42, 0.9);
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(131, 52, 255, 0.25), 0 0 8px #8334FF;
  border: 1px solid #8334FF;
}
.card:hover h2 {
  color: #BEA2FF;
}

.card:hover svg path {
  stroke-width: 5;
}
/* Initial states */
.animate-up {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease-out;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease-out;
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}



      /* footer */

    .footer {
      

      background: linear-gradient(to right, #060025, #1c0f43);
      padding: 60px 40px 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      color: white;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }

    .footer .column {
      flex: 1 1 20px;
      margin: 20px;
    }
     .footer .footer-column {
      flex: 1 1 20px;
      margin: 20px;
    }

    .footer-logo {
      display: flex;
      flex-direction: column;
    }

    .footer-logo img {
      width: 200px;
      margin-bottom: 15px;
    }

    .footer h4 {
      color: #E0C6FE;
      margin-bottom: 15px;
      font-size: 20px;
      text-transform: uppercase;
    }

    .footer a {
      color: #BEA2FF;
      text-decoration: none;
      font-size: 16px;
      margin-bottom: 10px;
      display: inline-block;
      
    }

    .footer a:hover {
      color: #8334FF;
    }

    .icon-links, .payment-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 15px;
    }

    .icon-links a,
    .payment-links a {
      display: inline-block;
      width: 26px;
      height: 26px;
    }

    .icon-links img,
    .payment-links img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .chat-button {
      background: #ffffff;
      color: #000;
      border-radius: 20px;
      padding: 10px 20px;
      display: inline-flex;
      align-items: center;
      font-weight: bold;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
      cursor: pointer;
      margin-top: 10px;
      text-decoration: none;
    }

    .chat-button:hover {
      background: #E0C6FE;
    }

    @media (max-width: 768px) {
      .footer {
        flex-direction: column;
        align-items: flex-start;
      }

    }




/* affiliate hero section */


.affiliate-section {
  
  padding: 80px 20px;
  text-align: center;
  color: white;
  
}

.affiliate-content h1 {
  padding-top: 50px;
  font-size: 3.8rem;
  font-weight: 700;
  color: white;
   opacity: 0;
    transform: translateY(40px);
    animation: riseUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

    @keyframes riseUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

.affiliate-content h1 span {
  background: linear-gradient(to right, #8334FF, #E0C6FE, #6E45F2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.affiliate-content p {
  font-size: 1.1rem;
  color: #fcfbfd;
  margin: 20px 0;
  line-height: 1.6;
  opacity: 0;
    transform: translateY(40px);
    animation: riseUp 1s ease-out forwards;
    animation-delay: 0.7s;
}

    @keyframes riseUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

.joined-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
opacity: 0;
    transform: translateY(40px);
    animation: riseUp 1s ease-out forwards;
    animation-delay: 0.9s;
}

    @keyframes riseUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

.avatars {
  display: flex;
}

.avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  background: #fff;
}

.avatars img:first-child {
  margin-left: 0;
}

.joined-info span {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.cta-bttn-2 {
  margin-top: 30px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(100, 100, 100, 0.422);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #8334FF, #E0C6FE, #6E45F2);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
    transform: translateY(40px);
    animation: riseUp 1s ease-out forwards;
    animation-delay: 1s;
}

    @keyframes riseUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

.cta-bttn-2:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(131, 52, 255, 0.3);
}
.affiliate-content p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 20px auto 0;
}

/* Responsive */
@media (max-width: 768px) {
  .affiliate-content h1 {
    font-size: 2rem;
  }
  .cta-bttn-2 {
    width: 100%;
    max-width: 300px;
  }
.affiliate-content p {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .about-heading {
    font-size: 1.8rem;
  }

  .affiliate-content p {
    font-size: 0.95rem;
    max-width: 100%;
  }
}
/* affiliate commission */

    .levels {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 80px;
      margin-left: 20px;
      margin-right: 20px;
    }

    .card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-top: 2px solid #333;
      border-radius: 16px;
      padding: 30px;
      width: 260px;
      text-align: center;
      box-shadow: 0 0 10px rgba(131, 52, 255, 0.1);
      margin-bottom: 90px;
    }

    .level-badge {
      display: inline-block;
      padding: 6px 16px;
      border: 1px solid #BEA2FF;
      border-radius: 12px;
      background: linear-gradient(to right, #8334FF, #E0C6FE, #6E45F2);
      color: white;
      font-size: 0.9rem;
      margin-bottom: 20px;
      background-clip: padding-box;
    }

    .percentage {
      font-size: 2rem;
      font-weight: 700;
      background: linear-gradient(to right, #8334FF, #E0C6FE, #6E45F2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .commission {
      font-size: 1.8rem;
      font-weight: 700;
      background: linear-gradient(to right, #8334FF, #E0C6FE, #6E45F2);
      -webkit-background-clip: text;
      -webkit-text-stroke: 1px #BEA2FF;
      color: transparent;
      margin-bottom: 16px;
    }

    .desc {
      font-size: 1rem;
      color: #fff;
    }

    @media (max-width: 768px) {
       .card {
    width: 100%;
    margin: 0 auto;
  }

  .levels {
    width: 90%;
    display: flex;               
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

}
.affi-heading h1{
  font-size: 3rem;
  color: #fff;
}
@media (max-width: 768px) {
  .affi-heading h1{
    font-size: 2.3rem;
  }

  .commission-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .commission-heading {
    font-size: 1.7rem;
  }

  .commission-subtitle {
    font-size: 0.95rem;
  }
}


/* Fade-down animation for heading and subtitle */
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide-in from left animation for cards */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Add animation classes */
.fade-down {
  opacity: 0;
  transform: translateY(-40px);
}
.animate-fade-down {
  opacity: 0;
  animation: fadeDown 1s ease forwards;
}

.animate-slide-left {
  opacity: 0;
  animation: slideInLeft 1s ease forwards;
}


/* aff refer */



.container-refer {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
      position: relative;
      /* gap: 60px; */


    }

    .rewards-refer {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      max-width: 1200px;
      width: 100%;
      gap: 40px;
        transition: transform 0.3s ease;

      
    }
    .refer-heading{
      font-size: 3rem;
      color: #fff;
    }
    .refer-heading span{
      background: linear-gradient(to right, #b1b1b1 40%, #555555 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .reward-refer {
      width: 280px;
      text-align: start;
  
    }
    .reward-refer:nth-child(1){
      margin-left: -400px;
    }
    .reward-refer:nth-child(2){

      margin-right: -400px;
    }

    .reward-refer h2 {
      font-size: 2rem;
      font-weight: 600;
      color:  #02000D;
      -webkit-text-stroke: 0.8px var(--blue-v3);
    }

    .reward-refer p {
      color: #ccc;
      font-size: 16px;
    }

    
    .center-box {
      background: #060d1f;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 0 30px rgba(131, 52, 255, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin: 30px 0;
      width: 400px;
    }

    .avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #6538FF;
      overflow: hidden;
      border: 2px solid #E0C6FE;
    }

    .center-box .entry {
      display: flex;
      align-items: center;
      gap: 15px;
      background: #0e1830;
      border-radius: 12px;
      padding: 10px 15px;
      width: 100%;
      max-width: 300px;
      color: #ccc;
    }

    .floating-icons {
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
      z-index: 0;
    }
     
    .floating-icons img {
      position: absolute;
      width: 60px;
      height: 60px;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
      background: linear-gradient(135deg, #8334FF, #6E45F2, rgb(38, 25, 78));
      border-radius: 50%;
      filter: drop-shadow(0 0 10px #6E45F2);
    }


    .icon1 { top: 10%; left: 50%; transform: translateX(-50%); }
    .icon2 { top: 45%; left: 30%; }
    .icon3 { top: 45%; right: 30%; }
    .icon4 { bottom: 10%; left: 50%; transform: translateX(-50%); }

    @media (max-width: 768px) {
      .refer-heading{
        font-size: 2.3rem;
      }
      .rewards-refer {
        flex-direction: column;
        align-items: center;

      }
      .center-box,.floating-icons img {
        display: none;
      }
       .reward-refer:nth-child(1){
      
      margin-left: -0;

    }
     .reward-refer:nth-child(2){

      margin-right: -0;
    }
    }
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Initial states */
.fade-down, .animate-left, .animate-right {
  opacity: 0;
}

.fade-down.show {
  animation: fadeDown 1s ease-out forwards;
}

.animate-left.show {
  animation: slideInLeft 1s ease-out forwards;
}

.animate-right.show {
  animation: slideInRight 1s ease-out forwards;
}


.refer-1{
  background: var(--Nebula);
  padding-top: 60px;
  padding-bottom: 60px;
}

/* aff works */
.works-section{
  max-width: 1500px;
  margin: 40px;
  margin: auto;
  position: relative;
  padding: 10px;


}
.affiliated-work{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  padding:  20px;
  box-sizing: border-box;
  gap: 40px;


}

.works-img {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.works-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.works-content {
  flex: 1;
  max-width: 400px;
  text-align: end;

}
.works-content h2{
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}
.works-content p{
  font-size: 1rem;
  font-weight: 400;
  color: #ccc;
}




.affiliated-work-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  padding:  20px;
  box-sizing: border-box;
  gap: 40px;
}

 .works-img-2 {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

 .works-img-2 img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.works-content-2 {
  flex: 1;
  max-width: 400px;
  text-align: start;
  padding: 20px;

}

.works-content-2 h2{
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}
.works-content-2 p{
  font-size: 1rem;
  font-weight: 400;
  color: #ccc;
}

.step-circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  transform: translate(-50%, -50%);
  background: #110d22;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #4630ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 0 30px #6c5ff780;
  z-index: 2;
}






@media (max-width: 768px) {
  .affiliated-work-2,.affiliated-work {
    flex-direction: column;
  }

  .step-circle {
   display: none;
  }

  .works-content-2,.works-content {
    text-align: start;
  }
}



/* Hidden by default */
.animate-top,
.animate-left,
.animate-right {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-left {
  transform: translateX(-50px);
}

.animate-right {
  transform: translateX(50px);
}

/* Visible on scroll */
.animate-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* aff faq */


section.faq-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 60px 40px;
      gap: 30px;
      max-width: 1400px;
      margin:auto;
      margin-top: 100px;

    }

    .faq-left {
      flex: 1 1 300px;
      max-width: 500px;


    }

    .faq-left h1 {
      font-size: 3rem;
      font-weight: bold;
      margin: 0;
      color: #fff;
    }

    .faq-left h2 {
      font-size: 2.2rem;
      font-weight: 700;
      background: linear-gradient(to right, #b1b1b1 40%, #555555 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      margin: 10px 0 20px;
    }

    .faq-left p {
      font-size: 1rem;
      color: #ccc;
    }

    .faq-left .faq-btn {
      margin-top: 30px;
      padding: 14px 30px;
      border: 2px solid var(--blue-v3);
      /* background: linear-gradient(145deg, #7b2ff7, #f107a3); or your --accent */
      color: #fdfdfe;
      border-radius: 10px;
      font-weight: bold;
      text-decoration: none;
      display: inline-block;
      transition: 0.3s ease;
    }

    .faq-left .faq-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(123, 47, 247, 0.3);
    }

    .faq-right {
      flex: 1 1 500px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      border: 1px solid var(--blue);
      background: var(--Nebula);
      padding: 40px;
      border-radius: 20px;
    }

    .faq-item {
      background: var(--card-dark);
      padding: 20px;
      border-radius: 10px;
      color: white;
      font-size: 1.3rem;
      font-weight: 600;
      cursor: pointer;
      opacity: 0;
      transform: translateY(50px);
      transition: 0.8s ease;
      background: var(--dark-blue);
    }

    .faq-item.animate-visible {
      opacity: 1;
      transform: translateY(0);
    }

.faq-item::after {
  content: '▶';
  float: right;
  font-size: 1rem;
  color: #ccc;
  transition: transform 0.3s ease;
}

.faq-item.active::after {
  transform: rotate(90deg); /* makes the arrow point down */
}

    .faq-answer-1 {
      display: none;
      padding: 10px 20px;
      background-color:var(--dark-blue);
      border-left: 3px solid var(--blue-v3);
      border-radius: 0 0 10px 10px;
      font-size: 1rem;
      color: #bbb;
      margin-top: -10px;
      margin-bottom: 10px;
      animation: fadeSlide 0.5s ease;
    }

    .faq-answer-1.show {
      display: block;
    }


    @keyframes fadeSlide {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      section.faq-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .faq-right {
        width: 100%;
      }
      .faq-left h1 {
      font-size: 2.3rem;
      font-weight: bold;
      margin: 0;
      color: #fff;
    }
    .faq-left h2{
      text-align: center;
      font-size: 1.3rem;
    }
    .faq-left p {
      text-align: center;
    }
    .faq-item{
      font-size: 0.9rem;
    }
    .faq-answer-1{
      font-size: 0.6rem;
    }
    }





/* aff community */
 .join-section {
      padding: 60px 20px;
      text-align: center;
      margin-top: 70px;
      /* background-color: #0b0c1b; */
    }

    .join-section h2 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 60px;
      color: #fff;
    }

    .join-section span {
      color: #999;
    }

    .card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 1400px;
      gap: 30px;
      margin-top: 20px;
       background: 
        linear-gradient(#0b0c1b, #0b0c1b) padding-box,
        linear-gradient(135deg, #6a5acd, #9254fd) border-box;
      border: 2px solid transparent;
      padding: 50px;
      border-radius: 20px;
      margin: auto;
    }

    .join-card {
      background-color: rgba(255, 255, 255, 0.05); /* glassy effect */
      backdrop-filter: blur(12px);
      border-radius: 20px;
      padding: 30px;
      flex: 1 1 280px;
      max-width: 390px;
      text-align: left;
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }

    .join-card:hover {
      /* border-color: #6a5acd; */
       transform: scale(1.05);
    }

    .join-card h3 {
      font-size: 1.5rem;
      margin-top: 20px;
      margin-bottom: 10px;
        font-weight: 600;
      color: #fff;
    }

    .join-card p {
      color: #ccc;
      font-size: 0.95rem;
      margin-bottom: 20px;
    
    }

    .join-btn {
      display: inline-block;
      padding: 12px 20px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      background: linear-gradient(45deg, #6a5acd, #1e90ff);
      color: white;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .join-btn:hover {
      opacity: 0.85;
    }

    .join-icon {
      font-size: 2rem;
    }

    /* Responsive Text */
    @media (max-width: 768px) {
      .join-section h2 {
        font-size: 2.3rem;
        text-align: center;

      }
      .card-container{
        flex-direction: column;
        border: none;
        width: 100%;
        margin: auto;
      }

    }








/* merchandise  */

.container-3 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 20px;
  /* background:url('assests/shirt-bg.png'); */
  overflow: hidden;
}

.content {
  z-index: 2;
  max-width: 800px;

}

.hoodie {
  width: 300px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;

}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.headline {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;

}

.highlight {
  background: linear-gradient(90deg, #8334FF, #E0C6FE, #3A1DA5, #6E45F2, #6538FF, #BEA2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subheadline {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 5px;
}

.description {
  font-size: 1rem;
  margin-top: 20px;
  color: #E0C6FE;
}

.chat-bubble {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: #02000D;
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 0 20px rgba(102, 56, 255, 0.3);
}

.chat-icon {
  background: linear-gradient(135deg, #6E45F2, #BEA2FF);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-icon::before {
  content: '💬';
  font-size: 18px;
}

.notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
}



/* journey */

    .assessment-container {
      max-width: 1600px;
      margin: auto;
      text-align: center;
      margin-bottom: 30px;
      margin-top: 80px;

    }

    .assessment-title {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      /* animation: fadeDown 1s ease forwards; */
    }
    .assessment-title,
    .assessment-sub,
    .assessment-card {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }
    .assessment-title.visible,
    .assessment-sub.visible,
    .assessment-card.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .journey{
       background: linear-gradient(to right, #b1b1b1 40%, #555555 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }
    .assessment-img{
      margin: auto;
    }
    .assessment-img img{
      margin: auto;
      width: 50px;
    }
    .assessment-sub {
      font-size: 1.2rem;
      color: #ccc;
      margin-bottom: 1.5rem;
      /* animation: fadeDown 1.2s ease forwards; */
    }
    .as-btn{
      margin-bottom: 30px;
      display: flex;
      justify-content: center;
      text-align: center;
      align-items: center;
      gap: 20px;
    }
    .assessment-btn{
      padding: 15px 25px;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;

    }
        .asm1 {
      background: linear-gradient(to right, #8334FF, #d5b3fd);
      color: rgb(6, 6, 6);
    }

    .asm2{
      background: transparent;
      border: 1.5px solid #8334FF;
      color:#8334FF;
    }

    .btn:hover {
      transform: scale(1.05);
    }

     .assessment-btn.active {
        background: #6E45F2;
        color: white;
      }
    .pathway,.gateway{
      color: #ffffff;
    }
    .assessment-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
    }
    .assessment-title,
    .assessment-sub {
      opacity: 0;
      transform: translateY(-20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
}

    .assessment-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px 20px 0 0;
      padding: 2rem;
      width: 450px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      backdrop-filter: blur(10px);
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.2s ease, transform 0.8s ease;
      position: relative;
      overflow: hidden;
    }
    
    .assessment-card.visible {
      opacity: 1;
      transform: translateX(0);
    }
    .assessment-card:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(131, 52, 255, 0.5);
        border: 1px solid rgba(131, 52, 255, 0.5);

    }
    
    

    .assessment-card h3 {
      font-size: 1.6rem;
      background: linear-gradient(to right, #E0C6FE, #8334FF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1rem;
      animation: fadeDown 1.3s ease forwards;
    }
    .assessment-h3{
      font-size: 1.2rem;
      color: #adadad;
      margin-bottom: 1rem;
      animation: fadeDown 1.3s ease forwards;
    }
    
    .assessment-card p {
      font-size: 1rem;
      color: #ddd;
      line-height: 1.6;
      animation: fadeDown 1.4s ease forwards;
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideIn {
      from { opacity: 0; transform: translateX(-40px); }
      to { opacity: 1; transform: translateX(0); }
    }


    @media (max-width: 768px) {
      .assessment-container{
        margin: 20px;
      }
      .assessment-cards {
        flex-direction: column;
        align-items: center;
      }

      .assessment-card {
        width: 100%;
        max-width: 90%;
      }

      .assessment-title {
        font-size: 2rem;
        text-align: center;
      }
      .assessment-sub{
        font-size: 0.8rem;

      }
    }


    /* challenge */


     .challengen-btn{
      margin-bottom: 30px;
       display: flex;
      justify-content: center;
      text-align: center;
      align-items: center;


    }
    .ch-button {
      margin-top: 30px;
      background: linear-gradient(to right, #8334FF, #E0C6FE, #6E45F2);
      border: none;
      color: #02000D;
      font-weight: 600;
      padding: 14px 32px;
      font-size: 1rem;
      border-radius: 8px;
      cursor: pointer;
      width: 15%;
      transition: transform 0.3s ease;
      display: inline-block;
      margin-right: 20px;

    }

    .ch-button:hover {
      transform: scale(1.05);}


  .price-btn {
    background: linear-gradient(90deg, #8334FF, #E0C6FE, #3A1DA5);
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    color: black;
    margin-top: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.3s ease;
  }
  .price-btn:hover {
    transform: scale(1.05);
  }

  /* Scroll Animation */
  .animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }
  .animate-up.show {
    opacity: 1;
    transform: translateY(0);
  }

  .pay{
    margin: auto;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
  }
  .paysnap{
    color: #ccc;
  }
   .pricing-grid-mobile {
  display: none;
}
  /* Responsive Buttons & Layout */
  @media (max-width: 768px) {
    .price-btn {
      padding: 8px 16px;
      font-size: 0.85rem;
    }
    #pricing-table h2 {
      font-size: 1.8rem !important;
    }
    .pricing-row {
      
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pricing-row-1 .pricing-cell{
      display: none;

    }
    .pricing-row .pricing-cell{
      display: none;
    }
      .pay{
    margin: auto;
    text-align: center;
    font-size: 0.6rem;
    
  }
   .challengen-btn .ch-button{
    width: 100%;

   }
   .pricing-grid-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
  }

  .pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 10px;
    text-align: center;
    color: white;
    box-shadow: 0 0 10px rgba(0, 255, 100, 0.1);
  }

  .pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #8334FF;
    line-height: 1.4;
  }

  .price-btn {
    padding: 10px 18px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #8334FF, #E0C6FE, #6E45F2);
    color: #000;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  }


/* pricing section */
    .pricing-container-1 {
      padding: 2rem;
      max-width: 1200px;
      margin: auto;
    }

    .tabs-wrapper {
      border-radius: 16px;
      padding: 1rem;
      backdrop-filter: blur(12px);
      margin-bottom: 7rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .tab-1, .tab-2, .tab-3 {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 30px;
      padding: 10px;
      margin: 0.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .tab-button {
      padding: 0.6rem 1.2rem;
      border-radius: 30px;
      background: #6d6d6d0c;
      color: white;
      border: none;
      cursor: pointer;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    .tab-button.active {
      background: #6c2cf8;
      font-weight: bold;
    }

    .merged-table {
      background: rgba(36, 36, 36, 0.3);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 5rem 1.5rem 2rem;
      color: #fff;
      position: relative;
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s ease;
    }
    
     /* Step 1: Highlight 2nd column (Fundin Account) */
      .highlight-step-1 td:nth-child(2),
      .highlight-step-1 th:nth-child(2),
      .highlight-step-3 th:nth-child(2),
      .highlight-step-4 th:nth-child(2),
      .highlight-step-3 td:nth-child(2),
      .highlight-step-4 td:nth-child(2) {
        background: rgba(255, 255, 255, 0.05);
        
      }
      

      /* Step 2: Highlight 2nd (Rookie) and 4th (Fundin Account) columns */
      .highlight-step-2 td:nth-child(2),
      .highlight-step-2 td:nth-child(4),
      .highlight-step-2 th:nth-child(2),
      .highlight-step-2 th:nth-child(4) {
        background: rgba(255, 255, 255, 0.05);
       
      }
      .highlight-step-1 th:nth-child(2),
      .highlight-step-3 th:nth-child(2),
      .highlight-step-4 th:nth-child(2) {
        border-top-left-radius: 22px;
        border-top-right-radius: 22px;
      }

      .highlight-step-2 th:nth-child(2), .highlight-step-2 th:nth-child(4){
        border-top-left-radius: 22px;
        border-top-right-radius: 22px;
      }

    .merged-table.show {
      opacity: 1;
      transform: translateY(0);
    }

    .floating-card {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      background: linear-gradient(135deg, #7f3df3, #6933d3);
      border-radius: 24px;
      padding: 1.8rem 1.2rem;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      width: 90%;
      max-width: 500px;
      transition: all 0.5s ease;
    }

    .floating-card h2 {
      font-size: 1.8rem;
      margin-bottom: 0.4rem;
    }

    .floating-card p.subtitle {
      font-size: 0.85rem;
      margin-bottom: 0.9rem;
      opacity: 0.9;
    }

    .reward {
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      background: rgba(255, 255, 255, 0.15);
      padding: 0.4rem 1rem;
      border-radius: 999px;
      width: fit-content;
      font-weight: bold;
    }

    .reward .dot {
      width: 10px;
      height: 10px;
      background: black;
      border-radius: 50%;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 2rem;
    }

    th, td {
      padding: 0.8rem 1rem;
      text-align: center;
    }

    td:first-child {
      text-align: left;
    }

    .header-circle {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 26px;
      height: 26px;
      font-size: 13px;
      background: rgba(53, 53, 53, 0.5);
      color: white;
      border-radius: 50%;
      font-weight: 600;
      margin: 0 auto 5px;
    }
    .extra-info-box {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
      }

      .merged-table.show + .extra-info-box {
        opacity: 1;
        transform: translateY(0);
      }

    .extra-info {
      background: rgba(36, 36, 36, 0.3);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 1.5rem 2rem;
      display: flex;
      gap: 1.5rem;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 1000px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      flex-wrap: wrap;
      color: #fff;
    }

    .extra-info .label {
      color: #ccc;
      font-weight: normal;
    }

    .extra-info .value {
      font-weight: bold;
      font-size: 1.5rem;
    }

    .extra-info .button {
      background: linear-gradient(135deg, #7f3df3, #6933d3);
      border: none;
      padding: 0.7rem 1.5rem;
      border-radius: 10px;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
    }
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

@media (max-width: 768px){
  .floating-card h2{
    text-align: center;
  }
}







  /* platform */
.plat{
   background: linear-gradient(to right, #b1b1b1 40%, #555555 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
}
p.subheading {
      text-align: center;
      margin-top: 0.5rem;
      font-size: 1rem;
      color: #aaa;
    }

    .features {
      display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 24px; /* spacing between items */
    max-width: 1100px; /* center the whole row */
    margin: auto;
    padding: 40px 20px;
      }

    .features.show {
      opacity: 1;
      transform: translateY(0);
    }

    .feature-box {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      align-items: center;
      gap: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.4s ease;
      cursor: pointer;
      color: #fff;
    }
    .feature-box:hover {
      transform: translateY(-5px) scale(1.03);
      box-shadow: 0 8px 20px rgba(131, 52, 255, 0.5), 0 0 15px rgba(51, 0, 255, 0.2);
            /* box-shadow: 0 0 20px rgba(131, 52, 255, 0.5); */

      background: rgba(255, 255, 255, 0.05);
    }

    .icon {
      width: 50px;
      height: 50px;
      background: var(--accent-gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #000;
    }

    .feature-text {
      font-size: 1.1rem;
      font-weight: 500;
      color: #fbfbfb;
    }
    .feature-box .icon svg {
  width: 320px;
  height: 32px;
}

    @media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}




    /* Reward */
.reward-section {
  /* background: linear-gradient(180deg, #02000D, #120A2A); */
  color: #fff;
  padding: 60px 20px;
  margin-top: 80px;
}
.reward-subtext {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #cccccc;
  text-align: center;
   margin-bottom: 50px;
}
.reward-heading {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: white;
  text-align: center;
 
}
.reward-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.reward-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  /* border: 2px solid transparent; */
  padding: 2rem;

  position: relative;
  box-shadow: 0 0 0 transparent;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  
}

.reward-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(140, 82, 255, 0.3);
  background: linear-gradient(135deg, #8334ff, #120a2a);

}

/* Glow Border using :before pseudo-element */
/* .reward-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8334ff, #120a2a);
  z-index: -1;
  opacity: 0;
  border-radius: 16px;
  transition: opacity 0.4s ease;
}

.reward-card:hover::before {
  opacity: 1;
} */


.reward-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.reward-card ul {
  list-style: none;
  padding-left: 0;
}

.reward-card ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  line-height: 1.4;
}

.reward-icon {
  position: absolute;
  top: -18px;
  left: -18px;
  background: linear-gradient(145deg, #4e54c8, #8f94fb);
  padding: 10px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 0 10px #4e54c8;
}

/* Scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .reward-card {
    padding: 1.5rem;
  }

  .reward-icon {
    font-size: 18px;
  }
}



/* scaling plan */
 .scaling-section {
      display: flex;
      flex-wrap: wrap;
      padding: 6px 10%;
      align-items: center;
      min-height: 50vh;
      justify-content: space-between;

    }

    .text-content-scaling {
      flex: 1 1 400px;
      max-width: 850px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 1s ease;
    }

    .text-content-scaling h2 {
      font-size: 2.0rem;
      font-weight: 500;
      background: linear-gradient(to right, #8334FF, #E0C6FE, #6E45F2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .text-content-scaling p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #ccc;
    }

    .stats-scaling {
      flex: 1 1 250px;
      display: flex;
      flex-direction: column;
      gap: 60px;
      align-items:end;
      opacity: 0;
      transform: translateY(30px);
      transition: all 1s ease;
    }

    .stat-block {
      display: flex;
      align-items: baseline;
      gap: 15px;
      width: 300px;

    }

    .stat-block h1 {
      font-size: 4rem;
      font-weight: 600;
      background: linear-gradient(to right, #8334FF, #E0C6FE, #6E45F2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      /* text-shadow: 0 0 10px #361b5f; */
    }

    .stat-block span {
      font-size: 1.2rem;
      color: #ddd;
    }

    .visible {
      opacity: 1 !important;
      transform: translateY(0) !important;
    }

    @media (max-width: 768px) {
      .scaling-section {
        flex-direction: column;
        /* gap: 20px; */
        text-align: left;
        margin-top: 20px;
      }

      .stat-block h1{
        font-size: 1.8rem;
      }
      .stats-scaling {
        align-items: center;
      }
      .text-content-scaling p,h2{
      text-align: left;
    }
    .text-content-scaling h2{
      font-size: 1.5rem;
    }
    .text-content-scaling p{
       font-size: 0.8rem;
    }
    .text-content-scaling{
      margin-bottom: -150px;
      text-align: left;
      align-items: flex-start;
    }
    }

    /* key highlights */

    #particles-js {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    .highlights {
      text-align: center;
      padding: 100px 5%;
      position: relative;

    }

    h2.animate-on-scroll,
    p.animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    h2.visible, p.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .highlights h2 {
      font-size: 2.7rem;
      font-weight: 700;
      margin-bottom: 10px;
      /* background: linear-gradient(to right, #8334FF, #BEA2FF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; */
      color: #fff;
    }

    .highlights p {
      font-size: 1.1rem;
      color: #aab4d4;
      margin-bottom: 50px;
    }

    .cards-key {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

.card-key {
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid #6E45F2;
      border-radius: 16px;
      padding: 30px;
      width: 400px;
      min-height: 350px;
      text-align: left;
      backdrop-filter: blur(10px);
      box-shadow: 0 0 15px rgba(129, 101, 255, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      transition-delay: 0s !important;
      transform: translateY(0);
      position: relative;
}

.card-key:hover {
  transform: translateY(-15px);
  /* box-shadow: 0 30px 40px rgba(131, 52, 255, 0.4); */
}



    .card-key h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #fff;
    }

    .card-key ul {
      list-style: none;
      padding: 0;
      color: #fff;
    }

    .card-key ul li {
      margin-bottom: 12px;
      padding-left: 20px;
      position: relative;
      color: #fff;
    }

    .card-key ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #BEA2FF;
    }

    .icon-key {
      width: 50px;
      height: 50px;
      margin-bottom: 20px;
    }

    .icon-key svg {
      fill: none;
      stroke: #BEA2FF;
      stroke-width: 2;
      width: 100%;
      height: 100%;
    }

    @media (max-width: 768px) {
      .cards-key {
        flex-direction: column;
        align-items: center;
      }
      .card-key{
        width: 320px;
        justify-content: center;
      }

      .highlights{
        align-items: center;
      }
      .highlights h2 {
        font-size: 2rem;
        text-align: center;
      }
    }






    /* about us */
    .mission-section {

      padding: 60px 20px;
      max-width: 1400px;
      margin: auto;
    }

    .mission-section h1 {
      font-size: 3rem;
      color: #ffffff;
      margin-bottom: 20px;
      text-align: center;
    }
    .mission-section h2 {
      font-size: 3rem;
      color: #ffffff;
      margin-bottom: 20px;
      text-align: center;
    }

    .mission-highlight-box {
      background: linear-gradient(145deg, #4a00e0, #8e2de2);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin: 0 auto 20px auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mission-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 60px;
    }

    .mission-card {
      text-align: center;
      opacity: 0;
      transition: all 0.8s ease-out;
      will-change: transform, opacity;
    
    }
    .mission-grid .mission-card {
      transform: translateX(-100px);
    }

    /* Core values section: Right to left */
    .mission-core .mission-card {
      transform: translateX(100px);
    }

    /* When visible */
    .mission-card.visible {
      opacity: 1;
      transform: translateX(0);
    }



    .mission-card h3 {
      font-size: 22px;
      margin: 10px 0;
      color: #ffffff;
    }

    .mission-card p {
      font-size: 16px;
      color: #cccccc;
      line-height: 1.6;
      max-width: 500px;
      margin: auto;
      text-align: justify;
    }

    .core-values {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

   @media (max-width: 1024px) {
  .mission-section {
    padding: 40px 15px;
  }

  .mission-section h1 {
    font-size: 2.3rem;

  }
}

@media (max-width: 768px) {
  .mission-section h1 {
    font-size:2.3rem;
    text-align: center;
  }
  .mission-card {
    text-align: center;

  }

  .mission-card h3 {
    font-size: 20px;
  }

  .mission-card p {
    font-size: 15px;
    max-width: 300px;
  }

  .core-values {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .mission-highlight-box {
    width: 35px;
    height: 35px;
  }

  .mission-section h2 {
    font-size: 1.5rem;

  }

  .mission-card h3 {
    font-size: 18px;
  }

  .mission-card p {
    font-size: 14px;
    padding: 0 10px;
     max-width: 300px;
  }
}



    /* Initial state for animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* Trigger class */
.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Slight variation */
.fade-up.animate {
  transform: translateY(0);
}

.slide-up.animate {
  transform: translateY(0);
}


/* about trading */

.Trading {
      text-align: center;
      padding: 2rem 1rem;
      max-width: 1000px;
      margin: auto;
    }

    .Trading h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color:#fff;
    }

    .Trading h1 span {
      background: linear-gradient(90deg, #8334FF, #E0C6FE, #6E45F2); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .Trading p {
      color: #ccc;
      font-size: 2.1rem;
    }

    .Trading-image {
      max-width: 500px;
      /* margin: 2rem auto; */
      margin-bottom: -10px;
      margin-top: 80px;
      position: relative;
      display: inline-block;
      overflow: hidden;
    }
.bottom-blur {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Larger area for stronger effect */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 10), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 10), transparent);
  pointer-events: none;
  /* box-shadow: 0 -40px 60px rgba(0, 0, 0, 9) inset; */
}

    .Trading-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    @media (max-width: 768px) {
      .Trading h1 {
        font-size: 2rem;
      }
    }



  .tools-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.trading-tools h2{
   text-align: center;
  font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 20px;
}

.reliability h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #9ca3af;
}

.trading-tools ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

.trading-tools li {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  color: #ccc;
}

.trading-tools strong {
  color: #ffffff;
}

.reliability p {
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}


/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .trading-tools h2,
  .reliability h2 {
    font-size: 1.5rem;
  }

  .reliability p {
    font-size: 1rem;
  }
  .Trading-image{
    display: none;
  }
}


/* line */
.scroll-indicator {
      position: relative;
      height: 155px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;

    }

    .scroll-line {
      width: 2px;
      height: 100px;
      background: linear-gradient(to bottom, #8a70d6, #7fb4e8);
      opacity: 0.2;
    }

    .scroll-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      /* background: radial-gradient(circle, #8f7bd7 0%, #6aa9e2 100%); */
      box-shadow: 0 0 12px #8f7bd744, 0 0 24px #6aa9e233;
      display: flex;
          border: 2px solid var(--blue-v2);
      justify-content: center;
      align-items: center;
      cursor: pointer;
      animation: softPulse 3s ease-in-out infinite;
    }

    .scroll-icon svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: #7a5de9;
      stroke-width: 2.5;
    }

    .up svg {
      transform: rotate(270deg);
      stroke: #8a70d6; /* dark purple */
    }

    /* .down svg {
      transform: rotate(90deg);
    } */

    @keyframes softPulse {
      0%, 100% {
        box-shadow: 0 0 10px #8f7bd755, 0 0 24px #6aa9e244;
      }
      50% {
        box-shadow: 0 0 15px #8f7bd799, 0 0 30px #6aa9e288;
      }
    }

    /* about choice */
    .choice{
      margin-top: 100px;
      padding: 2rem 1rem;
      margin: auto;

    }
    .choice h1 {
      text-align: center;
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #f0f0f0;
    }

    .choice .subtitle {
      text-align: center;
      color: #ccc;
      font-size: 1.5rem;
      margin-bottom: 40px;
    }

    .cards-choice {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .card-choice {
      flex: 1 1 320px;
      max-width: 650px;
      background: #11121c;
      border: 1.5px solid;
      /* border-image: linear-gradient(135deg, #8a70d6, #6aa9e2) 1; */
      border-radius: 15px;
      border: 1px solid linear-gradient(90deg, #8334FF, #E0C6FE, #6E45F2);
      padding: 30px;
      box-shadow: 0 0 15px #6aa9e233;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card-choice:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 25px #7f79db66;
    }

    .card-choice h2 {
      font-size: 1.8rem;
      color: #f5f5f5;
      margin: 15px 0;
    }

    .card-choice p {
      font-size: 1rem;
      color: #ccc;
      line-height: 1.6;
    }

    .card-choice img {
      width: 45px;
      height: 45px;
    }

    @media (max-width: 768px) {
      .cards-choice {
        flex-direction: column;
        align-items: center;
      }
      .choice h1{
        font-size: 2.3rem;
      }
      .choice .subtitle{
        font-size: 0.9rem;
      }
    }



    /* community about */
    .get-in-touch {
  padding: 50px 20px;
  color: white;
}


     .community {
      padding: 60px 20px;
      border-radius: 60px;
      margin: 30px 20px;
      background: radial-gradient(circle at center, #1a1d34, #0b0d1c);
      text-align: center;
      color: white;
      margin-top: 100px;

    }

    .community h1 {
      font-size: 5.9rem;
      font-weight: 900;
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: 50px;
    }

    .community h1 span {
      display: block;
    }

    .community p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 40px auto;
      color: #ccd2f6;
      margin-bottom: 100px;
    }

    .community .buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .community .btn {
      padding: 15px 25px;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn-start {
      background: linear-gradient(to right, #8a70d6, #6aa9e2);
      color: white;
    }

    .btn-join {
      background: transparent;
      border: 1.5px solid #6aa9e2;
      color: #6aa9e2;
    }

    .btn:hover {
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .community h1 {
        font-size: 3.2rem;
      }

      .community p {
        font-size: 1rem;
        padding: 0 10px;
      }

      .community .btn {
        width: 100%;
        justify-content: center;
      }
    }


    /* get in touch */
    .get-in-touch h2{
      font-size: 3rem;
    }

.form-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(145deg, #11142a, #1a1638);
  border-radius: 20px;
  padding: 40px;
  margin: 60px auto;
  max-width: 1100px;
  gap: 40px;
  box-shadow: 0 0 30px rgba(112, 78, 222, 0.15);
}

.form-box-about {
  flex: 1 1 500px;
  min-width: 300px;
}

.form-box-about h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.form-box-about p {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.name-fields {
  display: flex;
  gap: 20px;

}

.name-fields input {
  flex: 1;
  padding: 10px;
}


input, textarea {
  padding: 14px 16px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #5f4b9d;
  background: #0d1025;
  color: #fff;
  outline: none;

}

input:focus, textarea:focus {
  border-color: #937bff;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-element button {
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, #8334FF, #6E45F2);
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: linear-gradient(to right, #6E45F2, #8334FF);
}

.form-image {
  flex: 1 1 350px;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;

}

.form-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 20px;
  object-fit: cover;
  margin: auto;
}


.animate-on-scroll {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease-out;
  will-change: transform, opacity;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}




@media (max-width: 900px) {
  .get-in-touch h2{
    font-size: 2.3rem;
  }
  .form-container {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
    text-align: center;
  }

  .form-box-about {
    width: 100%;
  }

  .name-fields {
    flex-direction: column;
    gap: 15px;
  }

  .form-image {
    display: none;
  }

  .form-image img {
    max-height: 300px;
  }
}

@media (max-width: 600px) {
  .form-box-about h2 {
    font-size: 1.8rem;
  }

  .form-box-about p {
    font-size: 1rem;
  }

  .form-element button {
    font-size: 1rem;
    padding: 12px;
  }

  input, textarea {
    font-size: 0.95rem;
    padding: 12px;
  }
}

@media (max-width: 400px) {
  .form-box-about h2 {
    font-size: 1.6rem;
  }

  .form-image img {
    max-height: 220px;
  }

  .form-container {
    padding: 20px 15px;
  }
}

/* faqqq */

.search-bar {
      max-width: 800px;
      margin: 30px auto 20px;
      padding: 12px 20px;
      border-radius: 50px;
      border: 1px solid var(--border);
      background: transparent;
      color: white;
      font-size: 1rem;
      display: block;
      width: 90%;
    }

    .faq-container {
      display: flex;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
      padding: 20px;
      flex-wrap: wrap;
    }

    .faq-sidebar {
      flex: 1 1 250px;

    }

    .faq-sidebar .btn {
      display: block;
      padding: 15px 20px;
      margin-bottom: 10px;
      background: var(--secondary-dark);
      border: 1px solid var(--border);
      color: var(--text-light);
      text-decoration: none;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
      padding-left: 40px;
      transform: scale(1);
      text-align: left;
    }

    .faq-sidebar .btn::before {
      content: "";
      position: absolute;
      left: 15px;
      transition: transform 0.3s;
    }

    .faq-sidebar .btn.active::before {
      content: "\00BB";
    }

    .faq-sidebar .btn:hover {
      transform: scale(1.03);
      box-shadow: 0 0 10px rgba(110, 69, 242, 0.5);
    }

    .faq-sidebar .btn.active {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(142, 45, 226, 0.4);
}
    .faq-sidebar .btn.active,
    .faq-sidebar .btn:hover {
      background: var(--active-bg);
      font-weight: bold;
    }

    .faq-content {
      flex: 2 1 600px;
    }

    .faq-tab {
      display: none;
    }

    .faq-tab.active {
      display: block;
    }

    .faq-question {
      background: var(--secondary-dark);
      padding: 20px;
      margin-bottom: 10px;
      border-radius: 8px;
      border: 1px solid var(--border);
      position: relative;
      cursor: pointer;
      transition: 0.3s;
      text-align: left;
      opacity: 0;
      transform: translateY(50px);
    }

    .faq-question:hover {
      background: #1c1d3b;
    }

    .faq-question::after {
      content: "▼";
      position: absolute;
      right: 20px;
      transition: transform 0.3s ease;
    }

    .faq-question.active::after {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height:0;
      overflow: hidden;
      opacity: 0;
      padding: 0 20px;
      background: #1c1d3b;
      border-left: 3px solid #6a11cb;
      border-radius: 0 0 8px 8px;
      margin-top: -10px;
      margin-bottom: 10px;
      transition: max-height 0.6s ease, padding 0.4s ease, opacity 0.4s ease;
      text-align: left;
    }


        .faq-answer h2 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 300;
  margin-top: 20px;
}

.faq-answer ol {
  padding-left: 20px;
}

.faq-answer ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-top: 10px;
}

.faq-answer ul ul {
  list-style-type: circle;
  margin-left: 20px;
  margin-bottom: 10px;
}

.faq-answer strong {
  color: #ffffff;
}
    .faq-question.active + .faq-answer {
      display: block;
       max-height: 5000px;
  opacity: 1;
  padding: 15px 20px;
    }

    @media (max-width: 768px) {
      .faq-container {
        flex-direction: column;
        padding: 20px;
      }

      .search-bar {
        padding: 12px 16px;
        font-size: 1rem;
      }
    }





/* Floating Button */
.chat-floating-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  cursor: pointer;
}

.chat-text-btn {
  background: white;
  color: #111;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  font-family: 'Figtree', sans-serif;
  transition: transform 0.3s ease;
}

.chat-text-btn:hover {
  transform: scale(1.05);
}

.chat-icon-btn {
  /* width: 48px;
  height: 48px; */
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3c00c8, #7d59ff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.chat-icon-btn:hover {
  transform: scale(1.1);
}

.chat-icon-btn svg {
  width: 34px;
  height: 34px;
  fill: white;
}

/* Chat Popup */
.chat-popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 300px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
}

.chat-header {
  background: linear-gradient(135deg, #3c00c8, #7d59ff);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.minimize-btn {
  background: white;
  color: black;
  border: none;
  padding: 5px 10px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 0.8rem;
}

.chat-body {
  padding: 20px;
}

.chat-start {
  margin-top: 10px;
  background: #7d59ff;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

/* Full Chat */
.chat-fullscreen {
  position: fixed;
  bottom: 0;
  right: 20px;
  width: 460px;
  height: 600px;
  margin:auto ;
  background: white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  border-radius: 20px 20px 0 0;
  z-index: 10000;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

.chat-full-header {
  background: linear-gradient(to right, #3c00c8, #7d59ff);
  padding: 16px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.chat-full-header button {
  background: transparent;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

.chat-full-body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.chat-full-body .messages {
  flex: 1;
  background: #f4f4f4;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  overflow-y: auto;
  font-size: 14px;
}

.chat-input-area {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 24px;
  padding: 6px 10px;
  background: #f9f9f9;
}

.chat-input-area input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 6px;
  background: transparent;
  color: #333;
}

.emoji-btn,
.send-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
}

.emoji-picker {
  display: none;
  position: absolute;
  bottom: 80px;
  left: 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  width: 280px;
  max-height: 120px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-size: 1.5rem;
  z-index: 9999;
  white-space: normal;
}

.emoji-picker span {
  cursor: pointer;
  margin: 5px;
  display: inline-block;
}

.powered {
  font-size: 0.75rem;
  text-align: center;
  color: #888;
  padding: 5px;
}

/* arrow  */

.scroll-arrow {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(to bottom, #6d00f2, #0a00c8);
  color: white;
  font-size: 22px;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 9999;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  pointer-events: none; /* Not clickable */
  animation: bounce 1.5s infinite;

}
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}


/*  Responsive   */

/* Medium screens (tablets) */
@media (max-width: 768px) {
  .chat-floating-wrapper {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .chat-text-btn {
    font-size: 0.95rem;
    padding: 8px 16px;
  }

  .chat-icon-btn {
    width: 60px;
    height: 60px;
  }

  .chat-icon-btn svg {
    width: 28px;
    height: 28px;
  }

  .chat-popup {
    width: 90%;
    right: 5%;
    bottom: 90px;
  }

  .chat-fullscreen {
    width: 95%;
    right: 2.5%;
    height: 500px;
  }

  .emoji-picker {
    width: 240px;
    bottom: 70px;
    left: 10px;
  }

  .scroll-arrow {
    font-size: 18px;
    padding: 8px 12px;
    bottom: 20px;
    right: 20px;
  }
}

/* Small screens (phones) */
@media (max-width: 480px) {
  .chat-text-btn {
    font-size: 0.85rem;
    padding: 7px 12px;
  }

  .chat-icon-btn {
    width: 50px;
    height: 50px;
  }

  .chat-icon-btn svg {
    width: 24px;
    height: 24px;
  }

  .chat-popup {
    width: 95%;
    right: 2.5%;
    bottom: 85px;
    border-radius: 16px;
  }

  .chat-fullscreen {
    width: 100%;
    right: 0;
    height: 100%;
    bottom: 0;
    border-radius: 0;
  }

  .chat-full-header {
    font-size: 0.95rem;
    padding: 14px;
  }

  .chat-full-body {
    padding: 16px;
  }

  .chat-full-body .messages {
    font-size: 13px;
    padding: 8px;
  }

  .chat-input-area {
    padding: 4px 8px;
  }

  .chat-input-area input {
    font-size: 0.95rem;
  }

  .emoji-picker {
    width: 90%;
    left: 5%;
    bottom: 70px;
    font-size: 1.3rem;
  }

  .scroll-arrow {
    font-size: 16px;
    padding: 6px 10px;
    bottom: 18px;
    right: 18px;
  }
}



/* loginnnn */

.login-section{

}

    .login-container {
      background: rgba(255, 255, 255, 0.05);
      padding: 40px 30px;
      border-radius: 16px;
      width: 100%;
      max-width: 600px;
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 10px 40px rgba(0,0,0,0.3);
      margin: 60px auto;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeSlideIn 1s ease-out forwards;
      animation-delay: 0.3s;
      z-index: 1;
      position: relative;
    }
      @keyframes fadeSlideIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .login-container:hover {
      box-shadow: 0 0 20px rgba(190, 144, 255, 0.2),
                  0 0 40px rgba(190, 144, 255, 0.15),
                  0 0 60px rgba(190, 144, 255, 0.1);
      transition: box-shadow 0.3s ease;
    }

    .login-heading {
      text-align: center;
      color: #fff;
      margin-bottom: 20px;
      font-weight: 700;
      font-size: 1.9rem;
    }

    .form-control {
      position: relative;
      margin: 20px 0 40px;
      width: 100%;
    }

    .form-control input {
      background-color: transparent;
      border: 0;
      border-bottom: 2px #fff solid;
      display: block;
      width: 100%;
      padding: 15px 0;
      font-size: 18px;
      color: #fff;
    }

    .form-control input:focus,
    .form-control input:valid {
      outline: 0;
      border-bottom-color: rgb(195, 173, 230);
    }

    .form-control label {
      position: absolute;
      top: 15px;
      left: 0;
      pointer-events: none;
    }

    .form-control label span {
      display: inline-block;
      font-size: 18px;
      min-width: 5px;
      color: #fff;
      transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .form-control input:focus + label span,
    .form-control input:valid + label span {
      color: rgb(195, 173, 230);
      transform: translateY(-30px);
    }

    .login-btn-1 {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 12px;
      background: #ffffff;
      color: #4a00e0;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .login-btn-1:hover {
      background: #eee;
    }

    .bottom-text {
      text-align: center;
      margin-top: 20px;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.8);
    }

    .bottom-text a {
      color: #fff;
      text-decoration: underline;
    }

@media (max-width: 768px) {
  .login-container {
    padding: 30px 20px;
    margin: 40px 15px;
  }
    .login-section{
    padding: 80px;
  }

  .login-heading {
    font-size: 1.5rem;
  }

  .form-control input {
    font-size: 16px;
    padding: 12px 0;
  }

  .form-control label span {
    font-size: 16px;
  }

  .login-btn-1 {
    font-size: 0.95rem;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 25px 15px;
    margin: 50px auto;
    border-radius: 12px;

  }
  .login-section{
    padding: 20px;
  }

  .login-heading {
    font-size: 1.3rem;
  }

  .form-control input {
    font-size: 15px;
  }

  .form-control label span {
    font-size: 15px;
  }

  .login-btn-1 {
    font-size: 0.9rem;
    padding: 10px;
  }

  .bottom-text {
    font-size: 0.8rem;
  }
}


      .signUp {
      background: rgba(255, 255, 255, 0.05);
      padding: 40px 30px;
      border-radius: 16px;
      width: 100%;
      max-width: 700px;
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 10px 40px rgba(0,0,0,0.3);
      margin: auto;
      margin: 60px auto;

    }
    .signUp .form-control {

      margin: 5px 0 15px;
      

    }
    .error-msg{
      color: #eee;
    }
    
    @media (max-width: 480px) {
      .signUp {
        padding: 30px 20px;
      }
    }



    /* terms and contents */


  .terms{
    margin-bottom: 50px;
  }  
    .terms h2 {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin: 40px 20px;
  color: #fff;
  margin-top: 70px;
}

.terms-content {
  padding: 20px 10%;
  max-width: 1600px;
  margin: auto;
}

.terms-content h3 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #fff;
}
.terms-content h4{
  font-size: 1.5rem;
  font-weight: 600;
  color:#fff;
}

.terms-content p {
  font-size: 1.2rem;
  color: #cccccc;
}

.terms-content ul {
  padding-left: 20px;
  margin-top: 10px;
  color: #cccccc;
}

.terms-content ul li {
  margin-bottom: 10px;
  list-style-type: circle;
}

.terms-content strong {
  color: #fff;
}

/* ✅ Responsive Tweaks */
@media (max-width: 1024px) {
  .terms h2 {
    font-size: 2.5rem;
    margin: 40px 10px;
  }

  .terms-content {
    padding: 20px 6%;
  }

  .terms-content h3 {
    font-size: 1.4rem;
  }

  .terms-content p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .terms h2 {
    font-size: 2rem;
    margin: 30px 10px;
  }

  .terms-content {
    padding: 20px 5%;
  }

  .terms-content h3 {
    font-size: 1.2rem;
  }

  .terms-content p,
  .terms-content ul li {
    font-size: 0.95rem;
  }
}
/* Animation keyframes */
@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-left {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hidden state before scroll */
.animate-on-scroll {
  opacity: 0;
}

/* Visible state */
.animate-visible {
  opacity: 1;
  animation-fill-mode: both;
}

/* Apply specific animations */
.animate-on-scroll.h2-animate.animate-visible {
  animation: fade-down 1s ease forwards;
}

.animate-on-scroll.lr-animate.animate-visible {
  animation: slide-left 1s ease forwards;
}




/* card hover */

.car{
  width: 400px;
  height: 454px;
  background: #171717;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 3px 1px #00000088;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.car .content-card {
  border-radius: 20px 20px 0 0;
  background: #171717;
  width: 396px;
  height: 450px;
  z-index: 1;
  padding: 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.content-card::before {
  opacity: 0;
  transition: opacity 300ms;
  content: " ";
  display: block;
  background: rgba(255, 255, 255, 0.098);
  width: 260px;
  height: 250px;
  position: absolute;
  filter: blur(50px);
}

.car:hover .content-card::before {
  opacity: 1;
}

.car::before {
  opacity: 1;
  content: "";
  position: absolute;
  display: block;
  width: 330px;
  height: 500px;
  transform: rotate(0deg) translateY(50%);
  background: linear-gradient(90deg, #ff2288, transparent);
  transition: opacity 300ms;
  animation: rotation_9018 3000ms infinite linear;
  animation-play-state: paused;
}
.car::after {
  opacity: 1;
  content: "";
  position: absolute;
  display: block;
  width: 330px;
  height: 500px;
  transform: rotate(0deg) translateY(-50%);
  background: linear-gradient(90deg, transparent, #2268ff);
  transition: opacity 300ms;
  animation: rotation_9019 3000ms infinite linear;
  animation-play-state: paused;
}

.car:hover::before {
  opacity: 1;
  animation-play-state: running;
}
.car:hover::after {
  opacity: 1;
  animation-play-state: running;
}

.card:hover .glass {
  opacity: 0;
}

.glass {
  position: absolute;
  content: "";
  display: block;
  width: 300px;
  height: 354px;
  background: #17171733;
  backdrop-filter: blur(50px);
  z-index: 1;
  transition-duration: 0.5s;
}

@keyframes rotation_9018 {
  0% {
    transform: rotate(0deg) translateY(50%);
  }

  100% {
    transform: rotate(360deg) translateY(50%);
  }
}
@keyframes rotation_9019 {
  0% {
    transform: rotate(0deg) translateY(-50%);
  }

  100% {
    transform: rotate(360deg) translateY(-50%);
  }
}

.footer-content {
  max-width: 100%;
  margin: 0 auto;
   padding: 24px 12px 60px 0;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 8px;
  box-sizing: border-box;
}


@media (max-width: 768px) {
  .footer-content {
    padding: 20px 16px;
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
   .footer-content {
    padding: 18px 12px 60px 8px; 
    font-size: 13px;
  }
}

.fade-in {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease-out;
      will-change: transform, opacity;
    }

    .in-view {
      opacity: 1 !important;
      transform: translateY(0) !important;
    }

    .logomark-section {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 100px auto;
      padding: 40px 20px;
      align-items: center;
      justify-content: center;
    }

    .logomark-content h1 {
      font-size: 5.5rem;
      font-weight: 800;
      text-align: center;
      color: #ffffff;
    }

    .brand {
      max-width: 1000px;
      margin: 150px auto;
      padding: 0 20px;
      text-align: center;
    }

    .brand h1 {
      font-size: 2rem;
      margin-bottom: 40px;
      color: #ffffff;

    }

    .brand-logos {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .brand-logo {
      width: 100%;
      max-width: 450px;
      height: 400px;
      border-radius: 20px;
      overflow: hidden;
      background: #696868;
      padding: 40px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .brand-logo:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .brand-logo.light {
      background: #fff;
    }

        
    .left-gradient {
      flex: 0.5;
      min-height: 500px;
      background: linear-gradient(135deg, #f3d1ff, #c173ff, #8b3dff, #5e2eff, #1f00ff);
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
      margin-right: 30px;
      position: relative;
    }
    
    .left-gradient::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    }

    .Logomark {
      flex: 2;
      max-width: 700px;
      padding: 20px;
    }

    .Logomark h1 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #ffffff;

    }

    .Logomark .paragraph {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 40px;
      color: #ffffff;

    }

    .Logomark img {
      max-width: 600px;
      display: block;
      margin-top: 100px;
      margin: 0 auto;
    }

    .color-section {
      max-width: 1000px;
      margin: 120px auto;
      padding: 0 20px;
    }

    .color-section h2 {
      font-size: 2rem;
      margin-bottom: 40px;
      color: #fff;
    }

    .palette {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .color-box {
      width: 280px;
      height: 280px;
      border-radius: 30px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .color-box:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .color-info {
      color: #fff;
      font-size: 0.9rem;
      line-height: 1.4;
    }

    .c1 { background-color: #02000D; }
    .c2 { background-color: #120A2A; }
    .c3 { background: linear-gradient(to right, #8334FF, #E0C6FE); }
    .c4 { background-color: #3A1DA5; }
    .c5 { background-color: #6E45F2; }
    .c6 { background: linear-gradient(to right, #6538FF, #BEA2FF); }

    @media (max-width: 1024px) {
      .logomark-section {
        flex-direction: column;
      }

      .left-gradient {
        width: 100%;
        border-radius: 20px;
        margin-bottom: 30px;
      }

      .Logomark {
        padding: 0;
      }
    }

    @media (max-width: 768px) {
      .logomark-content h1 {
        font-size: 2.2rem;
      }

      .Logomark h1 {
        font-size: 1.8rem;
      }

      .Logomark .paragraph {
        font-size: 1rem;
      }

      .color-box {
        width: 100%;
        max-width: 90%;
      }

      .brand-logo {
        padding: 20px;
      }
      .Logomark img{
        width: 320px;
      }
    }

    .typography {
      margin: auto;
      width: 1000px;
      padding: 60px 20px;
      background: linear-gradient(135deg, rgba(2,0,13,0.8), rgba(18,10,42,0.8));
      border-radius: 20px;
      margin: 100px auto;
    }
    
    .typography h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: #ffffff;
      position: relative;
      display: inline-block;
      text-align: center;
    }
    
    .typography h2::after {
      content: '';
      position: absolute;
      width: 60%;
      height: 4px;
      background: linear-gradient(to right, var(--primary-purple), var(--primary-indigo));
      bottom: -10px;
      left: 20%;
      border-radius: 2px;
    }
    
    .typography-sample {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 60px;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeInUp 1s ease forwards;
      opacity: 0;
      transform: translateY(30px);
    }
    
    .typography-sample:nth-child(1) {
      animation-delay: 0.2s;
    }
    
    .typography-sample:nth-child(2) {
      animation-delay: 0.5s;
    }
    
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .aa-image {
      width: 220px;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
    }
    
    .aa-image:hover {
      transform: scale(1.05);
    }
    
    .font-info {
      flex: 1;
      min-width: 220px;
      max-width: 400px;
    }
    
    .font-info .name {
      font-weight: bold;
      font-size: 1.4rem;
      color: #ffffff;
      margin-bottom: 10px;
      text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    
    .font-info .details {
      font-size: 1rem;
      color: #d1c4e9;
      line-height: 1.6;
    }
    
    @media (max-width: 1024px) {
      .logomark-section {
        flex-direction: column;
      }
      
      .left-gradient {
        width: 100%;
        border-radius: 20px;
        margin-bottom: 30px;
      }
      
      .Logomark {
        padding: 0;
      }
      
      .typography {
        width: 90%;
      }
    }
    
    @media (max-width: 768px) {
      .logomark-content h1 {
        font-size: 2.2rem;
      }
      
      .Logomark h1 {
        font-size: 1.8rem;
      }
      
      .Logomark .paragraph {
        font-size: 1rem;
      }
      
      .color-box {
        width: 100%;
        max-width: 90%;
      }
      
      .brand-logo {
        padding: 20px;
      }
      
      .typography-sample {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      
      .aa-image {
        width: 100%;
        max-width: 200px;
      }
    }
    
    
    
     /* contact */
    .contact-section {
      padding: 60px 20px;
      text-align: center;
    }

    .contact-section h1 {
      font-size: 48px;
      margin-bottom: 40px;
      font-weight: 600;
      background: linear-gradient(to right, #ffffff, var(--blue-v3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .contact-cards {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .contact-card {
       background: linear-gradient(145deg, #11142a, #1a1638);
        border-radius: 20px;
        padding: 40px;
        margin: 60px auto;
        max-width: 1100px;
        gap: 40px;
        box-shadow: 0 0 30px rgba(112, 78, 222, 0.15);
      
      width: 400px;
      box-shadow: 0 0 25px rgba(131, 52, 255, 0.1);
      transition: transform 0.6s ease, opacity 0.6s ease;
      opacity: 0;
      height: 250px;
      cursor: pointer;
    }

    .contact-card:nth-child(1) {
      transform: translateX(-100px);
    }

    .contact-card:nth-child(2) {
      transform: translateX(100px);
    }

    .contact-card:nth-child(3) {
      transform: translateX(-100px);
    }

    .contact-card.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .contact-card:hover {
      opacity: 1;
      transform: translateY(-10px);

    }

    .contact-card svg {
      width: 40px;
      height: 40px;
      margin-bottom: 20px;
      fill: var(--blue-v3);
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-bottom: 30px;
    }

    .contact-card h3 {
      font-size: 24px;
      color: white;
      margin-bottom: 12px;
      font-weight: 500;
    }

    .contact-card p {
      color: #b0b5c3;
      font-size: 16px;
    }

    .highlight {
      background: linear-gradient(to right,  #8334FF, #E0C6FE, #6E45F2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    @media (max-width: 768px) {
      .contact-section h1 {
        font-size: 36px;
      }
      .contact-card {
        width: 100%;
        max-width: 90%;
        transform: translateY(50px);
      }
      .contact-card.visible {
        transform: translateY(0);
      }
      .contact-card:hover {
        transform: translateY(-5px);
      }
    }
    
    
    
    
    
    