    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: #111;
      background: linear-gradient(180deg, #ffffff, #f8fbff);
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }

    /* ====== HEADER ====== */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      position: sticky;
      top: 0;
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(10px);
      z-index: 1000;
    }

    .logo {
      font-size: 26px;
      font-weight: 700;
      color: #2c6fff;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 30px;
    }

    nav a {
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover { color: #2c6fff; }

    .btn {
      background: #2c6fff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      transition: 0.3s;
    }

    .btn:hover { background: #1a55d6; }

    /* ====== HERO ====== */
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 80px 10%;
      position: relative;
      overflow: hidden;
    }

    .hero-text {
      flex: 1 1 400px;
      max-width: 550px;
      z-index: 2;
    }

    .hero-text h1 {
      font-size: 50px;
      color: #002d72;
      margin-bottom: 20px;
      animation: fadeInUp 1s ease-out forwards;
    }

    .hero-text p {
      color: #333;
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .hero-text .btn {
      font-size: 18px;
      padding: 12px 28px;
    }

    .hero-image {
      flex: 1 1 400px;
      text-align: right;
      position: relative;
      z-index: 1;
    }

    .hero-image img {
      width: 90%;
      max-width: 500px;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Floating Crypto Icons */
    .floating-icons img {
      position: absolute;
      width: 40px;
      opacity: 0.3;
      animation: floatIcons 8s linear infinite;
    }

    @keyframes floatIcons {
      0% { transform: translateY(0) rotate(0deg); }
      100% { transform: translateY(-120vh) rotate(360deg); }
    }

    /* ====== FEATURES ====== */
    .features {
      text-align: center;
      padding: 100px 10%;
      background: #f9fcff;
    }

    .features h2 {
      font-size: 36px;
      margin-bottom: 50px;
      color: #002d72;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }

    .feature {
      background: #fff;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }

    .feature:hover {
      transform: translateY(-10px);
    }

    .feature img {
      width: 60px;
      margin-bottom: 20px;
    }

    .feature h3 {
      color: #2c6fff;
      margin-bottom: 10px;
    }

    .feature p {
      color: #444;
      line-height: 1.5;
    }


    /* how work */
    /* ====== HOW IT WORKS (Timeline Style) ====== */
.how {
  padding: 100px 10%;
  background: linear-gradient(180deg, #f8fbff, #e8f0ff);
  position: relative;
  overflow: hidden;
}

/* Header */
.how-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
  z-index: 1;
  position: relative;
}

.how-header h2 {
  font-size: 40px;
  color: #002d72;
  margin-bottom: 10px;
}

.how-header p {
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

/* Timeline container */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 30px;
  border-left: 3px solid #2c6fff20;
}

/* Glowing vertical line animation */
.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #2c6fff, #66a0ff);
  animation: glowLine 5s ease-in-out infinite alternate;
}

@keyframes glowLine {
  0% { opacity: 0.6; filter: drop-shadow(0 0 5px #2c6fff); }
  100% { opacity: 1; filter: drop-shadow(0 0 15px #2c6fff); }
}

/* Each Step */
.step {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(44, 111, 255, 0.15);
  margin-right: 30px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.icon-box img {
  width: 35px;
  height: 35px;
}

.step-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.step-content h3 {
  color: #2c6fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.step-content p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* Hover & Glow */
.step:hover .icon-box {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(44, 111, 255, 0.4);
}
.step:hover .step-content {
  box-shadow: 0 15px 35px rgba(44, 111, 255, 0.2);
  transform: translateY(-4px);
}

/* Fade-in Animation */
[data-animate] {
  transition: all 0.8s ease-out;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Illustration */
.how-illustration {
  text-align: center;
  margin-top: 100px;
}
.how-illustration img {
  width: 80%;
  max-width: 800px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline {
    border-left: none;
    padding-left: 0;
  }
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .icon-box {
    margin: 0 auto 20px;
  }
  .step-content {
    padding: 20px;
    max-width: 90%;
  }
  .how-header h2 {
    font-size: 30px;
  }
  .how-header p {
    font-size: 16px;
  }
}

    /* ====== CTA ====== */
    .cta {
      text-align: center;
      background: #2c6fff;
      color: #fff;
      padding: 80px 10%;
    }

    .cta h2 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .cta p {
      font-size: 18px;
      margin-bottom: 30px;
    }

    .cta .btn {
      background: #fff;
      color: #2c6fff;
      font-weight: 600;
    }

    .cta .btn:hover {
      background: #e8eeff;
    }
 

    p{
      font-size: 20px !important;
    }
    /* ====== RESPONSIVE ====== */
    @media (max-width: 768px) {
      header { padding: 20px 30px; }
      nav ul { display: none; }
      .hero { flex-direction: column; text-align: center; padding: 25px 4%;}
      .hero-text h1 {font-size: 32px;}
      .hero-image img { width: 80%; }
    .features {padding: 25px 4%;}
    .features h2 {font-size: 30px;}
    .how {padding: 25px 4%;}
    }
    .faqs {
  background: #f9fcff;
  padding: 100px 10%;
  position: relative;
}

.faqs-header {
  text-align: center;
  margin-bottom: 60px;
}

.faqs-header h2 {
  font-size: 40px;
  color: #002d72;
  margin-bottom: 15px;
}

.faqs-header p {
  color: #555;
  font-size: 20px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* FAQ Items */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(44,111,255,0.1);
}

.faq-question {
  background: #eaf1ff;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  color: #002d72;
  position: relative;
  font-size: 20px;
  transition: background 0.3s;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 25px;
  top: 18px;
  font-size: 20px;
  color: #2c6fff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  background: #dbe9ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #444;
  line-height: 1.7;
  background: #fff;
  font-size: 20px;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 18px 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .faqs {
    padding: 25px 4%;
  }
  .faqs-header h2 {
    font-size: 30px;
  }
  .faqs-header p {
    font-size: 16px;
  }
  .faq-question {
    font-size: 16px;
  }
  .faq-answer {
    font-size: 15px;
  }
}

/* ====== USER REVIEWS ====== */
.reviews {
  padding: 100px 10%;
  background: linear-gradient(180deg, #f7fbff, #e3efff);
  text-align: center;
}

.reviews h2 {
  font-size: 36px;
  color: #002d72;
  margin-bottom: 50px;
  font-weight: 700;
}

.review-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

.review-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 45, 114, 0.15);
  flex: 1 1 300px;
  max-width: 340px;
  padding: 30px 20px;
  transition: all 0.4s ease;
  animation: floatCard 5s infinite ease-in-out;
}

.review-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 45, 114, 0.2);
}

.review-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #0066ff;
  margin-bottom: 15px;
  object-fit: cover;
}

.review-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #003b8e;
}

.stars {
  color: #ffb400;
  font-size: 20px;
  margin-bottom: 15px;
}

.review-card p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* Animation for floating cards */
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .reviews {
    padding: 25px 4%;
  }
  .reviews h2 {
    font-size: 30px;
  }
  .review-container {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    max-width: 90%;
  }
.how-illustration img {
    width: 99%;
}
p{
  font-size: 18px !important;
}
}


/* ===== FOOTER SECTION ===== */
.footer {
  background: #002d72;
  color: #fff;
  padding: 80px 10% 40px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 40px;
}

.footer-about h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-about p {
  line-height: 1.7;
  font-size: 15px;
  color: #dbe8ff;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-legal ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-legal ul li a {
  text-decoration: none;
  color: #dbe8ff;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
  color: #4ac3ff;
}

.footer-contact p {
  font-size: 15px;
  line-height: 1.7;
  color: #dbe8ff;
}

.footer-contact a {
  color: #4ac3ff;
  text-decoration: none;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
}

.footer-social img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
  filter: brightness(0.8) invert(0.8) sepia(1) hue-rotate(180deg);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  font-size: 14px;
  color: #c9dbff;
  letter-spacing: 0.5px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer {
    padding: 60px 5% 30px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-about p {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}
