 /* --- General Styles --- */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, Helvetica, sans-serif;
      }
      body {
        background: #0b0f1a;
        color: white;
        line-height: 1.6;
       
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      h2,
      h3,
      h4 {
        color: #fff;
      }
      ul {
        list-style: none;
      }
      
      
      /** goggle translator/
      
      

      /* --- Header --- */
      header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 8%;
        background: rgba(0, 0, 0, 0.6);
        position: sticky;
        top: 0;
        z-index: 10;
      }
      header h1 {
        color: #0052ff;
        font-size: 22px;
      }
      nav a {
        margin-left: 20px;
        color: #ddd;
        font-weight: bold;
        transition: color 0.3s;
      }
      nav a:hover {
        color: #66ccff;
      }

      /* --- Hero Section with Animated Background --- */
      .hero {
        min-height: 60vh;
        display: flex;
        align-items: center;
        padding: 0 8%;
        position: relative;
        overflow: hidden;
        background-color: #ffd700;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        background-imag: url("asset_new/img/WhatsAppjpeg"); /* Replace with your image */
        background:linear-gradient(135deg, #0b0033, #0055ff);
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        animation: moveBg 30s linear infinite;
        z-index: 0;
       
      }
      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
       
      }
      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 600px;
      
      }
      .hero-content h1 {
        font-size: 48px;
        margin-bottom: 20px;
        text-align: flex-start;
      }
      .hero-content p {
        color: #ccc;
        margin-bottom: 20px;
      }
      .hero-content ul li {
        margin-bottom: 8px;
      }
      .btn {
        padding: 12px 24px;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        font-size: 14px;
        margin-right: 10px;
        transition: all 0.3s ease;
      }
      .btn-primary {
        background: linear-gradient(90deg, #3399ff, #66ccff);
        color: white;
      }
      .btn-primary:hover {
        transform: translateY(-3px);
        background: linear-gradient(90deg, #66ccff, #3399ff);
      }
      .btn-outline {
        background: transparent;
        border: 1px solid #3399ff;
        color: #3399ff;
      }
      .btn-outline:hover {
        transform: translateY(-3px);
        background: #3399ff;
        color: white;
      }
      
      
      
      
      /* supported coin*/
      #coins {
        padding: 90px 8%;
        background: #0c0f3f; /* dark blue background */
        color: white;
        text-align: center;
      }

      #coins h2 {
       font-size: 34px;
       margin-bottom: 20px;
     }

      #coins .intro {
        max-width: 800px;
        margin: 0 auto 60px;
        color: #cbd5e1; /* lighter text for contrast */
       }

     #coins .coins {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       gap: 40px;
      }

      #coins .coin {
        width: 100px;
        transition: all 0.3s ease;
        cursor: pointer;
      }

     #coins .coin img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
      }

     #coins .coin span {
       display: block;
       font-weight: 600;
       color: white;
     }

     #coins .coin:hover {
      transform: scale(1.1);
     }


      /* --- Stats --- */
      .stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 30px;
        padding: 60px 8%;
        background: #0f1424;
        text-align: center;
      }
      .stat {
        color: #bbb;
        font-size: 14px;
        text-align: center;
      }
      .stat h3 {
        color: #3399ff;
        font-size: 28px;
      }
      .stat p {
        margin-top: 5px;
      }

      /* --- Sections --- */
      .section {
        padding: 70px 8%;
      }
      .section h2 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 36px;
      }
      .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
      }
      .card {
        background: #151b30;
        padding: 30px;
        border-radius: 12px;
      }
      .card h3 {
        color: #3399ff;
        margin-bottom: 10px;
      }
      .card p {
        color: #ccc;
        font-size: 14px;
      }

      /* --- Testimonials --- */
      .testimonial {
        background: #0f1424;
        padding: 70px 8%;
      }
      .testimonial h2 {
        text-align: center;
        margin-bottom: 40px;
      }
      .testimonial-card {
        background: #151b30;
        padding: 25px;
        border-radius: 10px;
      }
      .testimonial-card p {
        color: #ccc;
        margin-bottom: 10px;
      }
      .testimonial-card h4 {
        color: #3399ff;
        margin-top: 5px;
      }




      /* --- Platform / Assets --- */
      .platform {
        padding: 70px 8%;
        text-align: center;
      }
      .platform p {
        color: #ccc;
        max-width: 800px;
        margin: 0 auto 40px;
      }

   
      
      /* ====== FAQ Section ====== */
#faq {
  padding: 80px 6%;
  background: linear-gradient(135deg, #f5f7ff, #eef1ff);
}

#faq h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #1b1f3b;
}

/* ====== FAQ Item ====== */
.faq-item {
  max-width: 850px;
  margin: 0 auto 20px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e6ff;
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.faq-item:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* ====== Question ====== */
.faq-question {
  padding: 22px 25px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1b1f3b;
  cursor: pointer;
  position: relative;
}

/* Plus / Minus Icon */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 25px;
  font-size: 1.5rem;
  color: #3f51ff;
  transition: transform 0.3s ease;
}

/* ====== Answer ====== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  font-size: 0.95rem;
  color: #444a87;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

/* ====== Expand on Hover (No JS) ====== */
.faq-item:hover .faq-answer {
  max-height: 200px;
  padding: 0 25px 22px;
}

.faq-item:hover .faq-question::after {
  content: "−";
}

/* ====== Mobile ====== */
@media (max-width: 768px) {
  #faq {
    padding: 60px 5%;
  }

  #faq h2 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}


      /* --- Community / Footer --- */
      .community {
        padding: 70px 8%;
        text-align: center;
      }
      .community h2 {
        margin-bottom: 30px;
      }
      .community p {
        color: #ccc;
        max-width: 800px;
        margin: auto 0 20px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
      }
      footer {
        /*background: #080b14;*/
        padding: 40px 8%;
        text-align: center;
        color: #aaa;
        font-size: 14px;
      }
      footer a {
        margin: 0 10px;
        color: #aaa;
      }
      footer a:hover {
        color: #66ccff;
      }

      /* --- Placeholder Image Styles --- */
      .image-placeholder {
        text-align: center;
        margin: 30px 0;
      }
      .image-placeholder img {
        max-width: 100%;
        border-radius: 12px;
      }
      .image-placeholder p {
        color: #ccc;
        margin-top: 10px;
        font-size: 14px;
      }

      /* --- Scroll-triggered Animations --- */
      .fade-on-scroll,
      .slide-on-scroll {
        opacity: 0;
        transform: translateY(20px);
        transition: all 1s ease-out;
      }
      .slide-on-scroll {
        transform: translateX(-50px);
      }
      .fade-on-scroll.animate {
        opacity: 1;
        transform: translateY(0);
      }
      .slide-on-scroll.animate {
        opacity: 1;
        transform: translateX(0);
      }

      /* --- Hero Background Animation --- */
      @keyframes moveBg {
        0% {
          background-position: center 0%;
        }
        100% {
          background-position: center 100%;
        }
      }

      /* --- Crypto Ticker --- */
      .crypto-ticker {
        overflow: hidden;
        white-space: nowrap;
        background: #0f1424;
        padding: 15px 0;
      }
      .crypto-track {
        display: inline-block;
        animation: scrollLeft 30s linear infinite;
      }
      .crypto-item {
        display: inline-block;
        margin-right: 50px;
        color: #66ccff;
        font-weight: bold;
        vertical-align: middle;
      }
      .crypto-item img {
        width: 24px;
        height: 24px;
        margin-right: 5px;
        vertical-align: middle;
      }
      @keyframes scrollLeft {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(-100%);
        }
      }

      /* --- Responsive --- */
      @media (max-width: 768px) {
        .hero-content h2 {
          font-size: 36px;
        }
        .mastercard {
          flex-direction: column;
        }
      }
      
      
      /* buy crypto*/
       /* ================= RESET ================= */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, Helvetica, sans-serif;
      }

      body {
        background: #0b0f1a;
        color: #ffffff;
        line-height: 1.6;
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      /* ================= ANIMATED GRADIENT BORDER ================= */
      @keyframes gradientBorder {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }

      .gradient-border {
        position: relative;
        border-radius: 22px;
        padding: 2px;
        background: linear-gradient(270deg, #0052ff, #66ccff, #7f5cff, #00eaff);
        background-size: 600% 600%;
        animation: gradientBorder 8s ease infinite;
      }

      .gradient-border > .inner {
        background: #0f152b;
        border-radius: 20px;
        padding: 60px 6%;
      }

      /* ================= HEADER ================= */
      header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 8%;
        background: rgba(0, 0, 0, 0.7);
        position: sticky;
        top: 0;
        z-index: 10;
        border-bottom: 1px solid rgba(102, 204, 255, 0.25);
      }

      header h1 {
        color: #66ccff;
        font-size: 22px;
      }

      nav a {
        margin-left: 20px;
        color: #ddd;
        font-weight: bold;
      }

      nav a:hover {
        color: #66ccff;
      }

      /* ================= HERO ================= */
      

      .btn {
        padding: 12px 24px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        font-size: 14px;
        margin-right: 10px;
      }

      .btn-primary {
        background: linear-gradient(90deg, #0052ff, #66ccff);
        color: white;
      }

      .btn-outline {
        background: transparent;
        border: 1px solid #66ccff;
        color: #66ccff;
      }

      /* ================= GRID ================= */
      .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
      }

      /* ================= CARDS ================= */
      .card-border {
        padding: 2px;
        border-radius: 18px;
        background: linear-gradient(270deg, #66ccff, #0052ff, #7f5cff);
        background-size: 500% 500%;
        animation: gradientBorder 6s ease infinite;
      }

      .card {
        background: #151b30;
        border-radius: 16px;
        padding: 30px;
        text-align: center;
        height: 100%;
      }

      .card h3 {
        color: #66ccff;
        margin-bottom: 10px;
      }

      .card p {
        color: #ccc;
        font-size: 14px;
      }

      /* ================= IMAGE PLACEHOLDER ================= */
      .image-box {
        height: 180px;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #1a2245, #0f142b);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #66ccff;
        font-weight: bold;
      }

     

      /* ================= DOWNLOAD ================= */
      .download {
        text-align: center;
      }

      .download p {
        color: #ccc;
        max-width: 700px;
        margin: 0 auto 20px;
      }

      
      

      /* ================= RESPONSIVE ================= */
      @media (max-width: 768px) {
        .hero-content h2 {
          font-size: 32px;
        }
      }
      
      
      
      /*how it works*/
      /* ====== Global Reset ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #0c0f3f;
  color: #eaeaf0;
  line-height: 1.6;
}

/* ====== Section Styling ====== */
section {
  padding: 80px 6%;
}

section h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #ffffff;
}

section .intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  color: #b8c0ff;
}

/* ====== Grid Layout ====== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ====== Card Design ====== */
.card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 16px;
  padding: 30px 25px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

/* ====== Card Text ====== */
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.card p {
  font-size: 0.95rem;
  color: #cfd6ff;
}



/* ====== Responsive Tweaks ====== */
@media (max-width: 768px) {
  section {
    padding: 60px 5%;
  }

  section h2 {
    font-size: 2rem;
  }
}

