* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {
  background-color: black;
  color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse ul li a {
    font-weight: 600;
    color: white;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #00d015;
}

.navbar-brand {
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.navbar {
    background-color: black;
    padding: 1rem 2rem;
    opacity: 75%;
}

.navbar-collapse ul li a{
    color: white;
}

.navbar-collapse ul li a:hover {
    color: #00d015;
}

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

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    color: white;
}

.dropdown.show .dropdown-toggle {
    color: white;
}

.dropdown-menu {
    background-color: black;
}

.snake-border {
  position: relative;
  display: inline-block;
  padding: 2px; /* border thickness */
  border-radius: 10px;
  background: transparent;
}

.snake-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent, #00f2fe, #4facfe, transparent);
  background-size: 300% 100%;
  background-repeat: no-repeat;
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: snake 3s linear infinite;
  z-index: -1;
}

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

.login-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  background-color: #000;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.login-btn:hover {
    background-color: #00d015;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 208, 21, 0.4); /* Green Glow */
}

.getstarted-btn {
    background: linear-gradient(90deg, #6a11cb, #ff6a00); /* Purple to Orange Gradient */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none; /* In case it's an <a> tag */
    display: inline-block;
}
.getstarted-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4); /* Orange Glow */
    color: white;
}

.hero-section {
    background: #000;
    background-image: url('images/grids.png');
    background-size: cover;
    background-position: center;
    height: 100%;
    color: white;
}

.hero-col2 h3 {
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2;
}

.hero-col2 h3 span {
    color: #8236fd;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2;
}

.hero-col2 p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #c3c6c6;
}

.hero-btn {
    background-color: rgb(13, 12, 12);
    color: white;
    border-left: 2px solid white;
    font-size: 1rem;
    font-weight: 600;
}

.hero-btn:hover {
    background-color: ;
    color: #00d015;
    border-left: 2px solid #00d015;
}

@media (max-width: 768px) {
    .hero-col2 h3 {
        font-size: 1.8rem;
    }
    .hero-col2 p {
        font-size: 1rem;
    }
    .hero-col2 h3 span {
    color: #8236fd;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.2;
    }
    .hero-btn {
    background-color: rgb(13, 12, 12);
    color: white;
    border-left: 2px solid white;
    font-size: 0.8rem;
    font-weight: 600;
    }

    .hero-btn:hover {
        background-color: ;
        color: #00d015;
        border-left: 2px solid #00d015;
    }
}

.section2 {
    background-color: black;
    color: white;
}

.section2-heading {
    font-weight: 600;
    font-size: 78px;
    line-height: 1.2;
}

.grad-head {
    background: linear-gradient(90deg, #6a11cb, #ff6a00); /* You can change these colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 600;
    font-size: 78px;
    line-height: 1.2;
}

.section2-col1 {
    color: #c3c6c6;
    font-size: 1.2rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section2-heading {
        font-size: 32px;
        font-weight: 700;
    }
    .grad-head {
        font-size: 32px;
        font-weight: 700;
    }
    .section2-col1 {
        font-size: 1rem;
    }
}

.section3 {
    background-color: black;
    color: white;
}

.line {
    width: 20%;
    height: 3px;
    background-color: white;
    margin: 20px 0;
}

.section3-p1 {
    font-size: 26px;
    font-weight: 600;
    color: white;
}

.section3-heading {
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
}

.grad-head2 {
    background: linear-gradient(90deg, #6a11cb, #ff6a00); /* You can change these colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section3-heading {
        font-size: 32px;
        font-weight: 700;
    }
    .grad-head2 {
        font-size: 32px;
        font-weight: 700;
    }
    .section3-p1 {
        font-size: 1rem;
    }
}

.section4, .section4-sub {
    background-color: black;
    color: white;
}

.section4-heading {
    font-weight: 600;
    font-size: 48px;
}
/* 
.section4-row {
    border-top: 1px solid #ed6d4a;
} */

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

.line2 {
    width: 30%;
    height: 3px;
    background: linear-gradient(90deg, #ed6d4a, #2575fc, #6a11cb);
    background-size: 200% auto;
    animation: gradientMove 4s ease-in-out infinite;
}

.section4-p1 {
    color: #ed6d4a;
    font-weight: 700;
    font-size: 30px;
}

.section4-sub-lines {
    position: absolute;
}

.section4-row-col1 {
    border-right: 1px solid #363737;
}

.section4-sub {
    position: relative;
    padding: 20px;
}

/* .section4-row {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, #6a11cb, #2575fc, #6a11cb);
    background-size: 200% auto;
    animation: gradientMove 4s ease-in-out infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 200% center;
  }
  50% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
} */

@media (max-width: 768px) {
    .section4-heading {
        font-size: 32px;
        font-weight: 700;
    }
    .section4-p1 {
        font-size: 1rem;
    }
    .section4-row {
    border-top: none;
    }
    
}

.section5 {
    background-color: black;
    color: white;
}

.section6 {
    background-color: black;
    color: white;
}

.section6-container {
    border: 1px solid #262828;
    padding: 50px;
    border-radius: 16px;
    position: relative;
}

.section6-row {
    background-color: #0c0c0d;
    border: 1px solid #262828;
    padding: 20px;
    border-radius: 16px;
}

.section6-p1 {
    background-color: #00d015;
    color: white;
    width: fit-content;
    padding: 5px 8px;
    border-radius: 8px;
    font-weight: 600;
}

.section5-h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section5-h1 {
        font-size: 32px;
        font-weight: 700;
    }
}

.section6-h1 {
    font-size: 48px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .section6-h1 {
        font-size: 32px;
    }
  
}

.section7 {
    background-color: black;
    color: white;
}

.section7-col1 {
    padding: 50px;
    border: 1px solid #262828;
    border-radius: 16px;
}

.section7-h1 {
    font-weight: 800;
    font-size: 48px;
}

@media (max-width: 768px) {
    .section7-h1 {
        font-size: 32px;
        font-weight: 700;
    }
}

.section7-col2 {
    padding: 30px 0;
    border: 1px solid #262828;
    border-radius: 16px;
}

.flag-carousel-container {
  width: 100%;
  overflow: hidden;
  background-color: #000;
  padding: 20px 0;
}

.flag-carousel {
  display: flex;
  gap: 20px;
  animation: scroll-flags 12s ease-in-out infinite alternate;
}

.flag-carousel img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background-color: #111;
  padding: 18px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

@keyframes scroll-flags {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-40%); /* Adjust based on content width */
  }
}

/* flag2 */

.flag-carousel2 {
  display: flex;
  gap: 20px;
  animation: scroll-flags2 16s ease-in-out infinite alternate;
}

.flag-carousel2 img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background-color: #111;
  padding: 18px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

@keyframes scroll-flags2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-40%); /* Adjust based on content width */
  }
}

/* flag3 */

.flag-carousel3 {
  display: flex;
  gap: 20px;
  animation: scroll-flags 14s ease-in-out infinite alternate;
}

.flag-carousel3 img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background-color: #111;
  padding: 18px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

@keyframes scroll-flags {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-40%); /* Adjust based on content width */
  }
}

.section7-p2 {
    padding: 38px;
}

.section7-p2 p {
    background-color: #111;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
    color: white;
}

.section7-p2 h3 {
   background: linear-gradient(90deg, #6a11cb, #ff6a00); /* You can change these colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
}

.section8 {
    background-color: black;
    color: white;
}

.section8 h1 {
    font-weight: 800;
    font-size: 48px;
}

@media (max-width: 768px) {
    .section8 h1 {
        font-size: 32px;
        font-weight: 700;
    }
}

/* section9 */
.pricing-header {
  position: relative;
  background-color: #0b0b0f;
  padding: 100px 20px 60px;
  text-align: center;
  color: white;
  overflow: hidden;
}

.curved-top-gradient {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 400px;
  background: radial-gradient(circle at center, transparent 50%, rgba(128, 0, 255, 0.4) 80%, transparent 100%);
  border-top: 8px solid;
  border-image: linear-gradient(to right, #6a11cb, #2575fc) 1;
  border-radius: 50% / 100% 100% 0 0;
  animation: glowMove 8s linear infinite;
}

@keyframes glowMove {
  0% {
    border-image-source: linear-gradient(to right, #6a11cb, #2575fc);
  }
  50% {
    border-image-source: linear-gradient(to right, #2575fc, #ff5f6d);
  }
  100% {
    border-image-source: linear-gradient(to right, #6a11cb, #2575fc);
  }
}

.pricing-content h1 {
  font-size: 48px;
  font-weight: 800;
}

.gradient-text {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, #8e2de2, #4a00e0, #ff512f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .pricing-content h1 {
        font-size: 32px;
        font-weight: 700;
    }
    .gradient-text {
        font-size: 32px;
        font-weight: 700;
    }
}

/* tabs */
.tabs-cover {
      font-family: 'Poppins', sans-serif;
      background-color: black;
      color: white;
    }

    .tabs {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 0 30px 50px 30px;
      padding-top: 20px;
    }

    .tab {
      color: #aaa;
      padding: 8px 16px;
      border: 1px solid #333;
      border-radius: 20px;
      cursor: pointer;
    }

    .tab.active {
      background: #1a1c3a;
      color: #fff;
    }

    .plans-container {
      display: flex;
      justify-content: center;
      gap: 40px;
      padding: 0 30px 80px;
      flex-wrap: wrap;
    }

    .plan-card {
      background: linear-gradient(#0b0c23, #0b0c23) padding-box,
                  linear-gradient(to right, #4b0082, #00ffff, #4b0082) border-box;
      border: 1px solid transparent;
      border-radius: 20px;
      width: 300px;
      padding: 30px 20px;
      text-align: center;
      display: none;
    }

    .plan-title {
      color: #00ffcc;
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .plan-subtitle {
      font-size: 0.95rem;
      margin-bottom: 20px;
    }

    .pips-range {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .plan-details {
      text-align: left;
      padding-left: 20px;
      margin-bottom: 25px;
    }

    .plan-details li {
      list-style: none;
      margin-bottom: 10px;
    }

    .plan-details span {
      font-weight: bold;
      background: linear-gradient(to right, #ff00ff, #00ffff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .purchase-btn {
      background-color: #00ff66;
      color: black;
      padding: 12px 24px;
      border: none;
      border-radius: 30px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .purchase-btn:hover {
      background-color: #00cc55;
    }

    .section10 {
     background: radial-gradient(circle at center, #210533, #000000);
      color: white;
    }

.section10 h1 {
    font-weight: 800;
    font-size: 48px;
}

@media (max-width: 768px) {
    .section10 h1 {
        font-size: 32px;
        font-weight: 700;
    }
}

.section10-col {
    background-color: #111;
    border: 1px solid #262828;
    border-radius: 10px;
}

.section10-h1 {
    font-weight: 800;
    font-size: 28px;
    color: #ed6d4a;
}

.section11 {
    background-color: black;
    color: white;
}

.section11-col h1 {
    font-weight: 800;
    font-size: 48px;
}

@media (max-width: 768px) {
    .section11-col h1 {
        font-size: 32px;
        font-weight: 700;
    }
}

.section13 {
      margin: 0;
      background: black;
      font-family: 'Poppins', sans-serif;
      color: #fff;
    }

    .reviews-section {
      padding: 60px 20px;
      text-align: center;
      background: radial-gradient(circle at center, #10011a, #000000);
    }

    .reviews-section h4 {
      color: #ff704d;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .reviews-section h2 {
      color: white;
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 40px;
    }

    @media (max-width: 768px) {
      .reviews-section h2 {
        font-size: 30px;
        font-weight: 700;
      }
    }

    .swiper {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .swiper-slide {
      background: #131426;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 0 15px rgba(0,0,0,0.3);
      height: auto;
    }

    .review-text {
      font-size: 0.95rem;
      margin-bottom: 20px;
      text-align: left;
    }

    .review-author {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 10px;
      text-align: left;
    }

    .stars {
      color: gold;
      font-size: 1.1rem;
      text-align: left;
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: #00ffcc;
    }

    @media (max-width: 768px) {
      .swiper-slide {
        padding: 20px;
      }
    }

    .section14 {
      background: linear-gradient(to right, #02021b, #1e2020, #200c01) padding-box,
                  linear-gradient(to left, #691aa2, #203b3b, #4d2007) border-box;
      color: white;
    }
    
    .section14-col {
      background: linear-gradient(#1e1f21, #0b0c23) padding-box,
                  linear-gradient(to right, #4b0082, #283636, #371a0b) border-box;
      border: 1px solid #262828;
      border-radius: 16px;
    }

    .section14-col h1 {
       font-weight: 800;
        font-size: 48px;
    }

    .section15 {
      background-color: black;
      color: white;
    }

    .section15 h3 {
      font-weight: 600;
      font-size: 24px
    }

    @media (max-width: 768px) {
      .section14-col h1 {
        font-size: 26px;
        font-weight: 700;
      }
      .section15 h3 {
        font-size: 18px;
        font-weight: 600;
      }
      .section14-col {
        font-size: 26px;
        font-weight: 700;
      }
    }

    .section15 .grad-head3 {
      background: linear-gradient(90deg, #6a11cb, #ff6a00); /* You can change these colors */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      font-weight: 600;
      font-size: 24px;
    }

.brands-carousel-container {
  width: 100%;
  overflow: hidden;
  background-color: #000;
  padding: 20px 0;
}

.brands-carousel {
  display: flex;
  gap: 20px;
  animation: scroll-flags 12s ease-in-out infinite alternate;
}

.brands-carousel img {
  width: 100%;
  height: 60px;
  border-radius: 28px;
  background-color: #111;
  padding: 17px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

@keyframes scroll-flags {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-40%); /* Adjust based on content width */
  }
}

.brands-carousel-container {
  width: 100%;
  overflow: hidden;
  background-color: #000;
  padding: 20px 0;
}

.brands-carousel2 {
  display: flex;
  gap: 20px;
  animation: scroll-brands 12s ease-in-out infinite alternate;
}

.brands-carousel2 img {
  width: 100%;
  height: 60px;
  border-radius: 28px;
  background-color: #111;
  padding: 17px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

@keyframes scroll-brands {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-40%); /* Adjust based on content width */
  }
}

footer {
    background-color: black;
    color: white;
    border-top: 1px solid #262828;
}

.footer-row2{
  border-left: 1px solid #262828;
}

footer h1 {
    font-weight: 800;
    font-size: 48px;
}

@media (max-width: 768px) {
    footer h1 {
        font-size: 32px;
        font-weight: 700;
    }
}

footer p {
    font-size: 16px;
    line-height: 1.5;
    color: #c3c6c6;
    font-weight: 700;
}

footer h5 {
  background: linear-gradient(90deg, #6a11cb, #f5924b); /* You can change these colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 700;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: #ed6d4a;
    translate: 7px 0px;
    transition: all 300ms ease-in-out;
}

.copyright {
  border-top: 1px solid #262828;
}

/* ====about==== */
.about_sec1 h1 {
  font-size: 48px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .about_sec1 h1 {
    font-size: 32px;
    font-weight: 700;
  }
}

.about_sec1-p {
  background-color: #1e1f21;
  width: fit-content;
  justify-self: center;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  color: white;
}

.about_sec1-p a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}
.about_sec1-p a:hover {
  color: #00d015;
  text-decoration: none;
}

.about {
  background-color: #1e1f21;
  border-radius: 14px;
}

.about h2 {
  font-weight: 700;
}

.about_sec2-col {
  background-color: #1e1f21;
  border-radius: 14px;
  border: 1px solid #363737;
}

.about_sec3-row {
  border: 1px solid #363737;
  border-radius: 14px;
}

.about_sec3-col p {
  border-bottom: 1px solid #363737;
  line-height: 50px;
}

.about_sec3-col2 svg {
  gap: 70px;
}

.about_sec4 h1 {
  font-weight: 800;
  font-size: 48px;
}

@media (max-width: 768px) {
  .about_sec4 h1 {
    font-size: 32px;
    font-weight: 700;
  }
}

.about_sec5-row {
  background-image: url('images/cta-4-bg.png');
  border: 1px solid #363737;
  border-radius: 14px;
}

.about_sec5-row h1 {
  font-weight: 800;
  font-size: 48px;
}

@media (max-width: 768px) {
  .about_sec5-row h1 {
    font-size: 32px;
    font-weight: 700;
  }
}

/* =====what you can trade===== */
.about_sub-row {
  background-color: #1e1f21;
  border: 1px solid #363737;
  border-radius: 14px;
}

.about2 {
  border: 1px solid #363737;
  border-radius: 14px;
}

.future h2 {
  font-weight: 700;
}

/* =====contact us===== */
.about_sec2-col svg {
  color: #ed6d4a;
}