@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --textPrimary: #FFFFFF;
  --textSecondary: #E0E4FF;
  --bodybg: #171430;
  --secondarybg: #181738;
  --gradient_bg_secondary: linear-gradient(to right bottom, hsl(245.58deg 52.3% 46.12% / 18%), hsl(218.3deg 97.24% 28.43% / 34%));
  --colored_gradient: linear-gradient(to right bottom, #00419C, #148EF0);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  overflow: hidden auto;
  background: #171821;
  color: var(--textPrimary);
  font: 400 1.6rem 'Inter', sans-serif;
}

img {
  width: 100%;
}

h2 {
  margin-bottom: 0;
}

a {
  color: var(--textPrimary);
  text-decoration: none !important;
}

a:hover {
  color: var(--textPrimary);
}

p {
  margin-bottom: 0;
}

ul {
  padding-left: 0;
  list-style-type: none;
}

/* data table */
.data-table {
  width: 100%;
  font-size: 1.75rem;
}

.data-table thead {
  color: #fff;
  background: var(--colored_gradient);
}

.data-table td, .data-table th {
  white-space: nowrap;
  min-width: fit-content;
  padding: 10px 20px 10px 0px;
  font-size: 1.75rem;
}

.data-table td {
  padding: 10px;
  font-weight: 500;
  background: transparent;
  white-space: nowrap;
  min-width: fit-content;
  text-align: center;
}

.data-table th {
  padding: 15px 5px;
  text-align: center;
}


.data-table.lg td {
  min-width: 300px;
}

.data-table th:first-child,
.data-table td:first-child {
  padding-left: 20px;
}

.data-table tr:not(:last-child) {
  border-bottom: 1px solid #403A72;
}

/* header */
#header {
  top: 0;
  z-index: 1024;
  position: sticky;
  transition: all 0.3s ease;
}

#header.shadow {
  background: #1d1940;
}

.nav-bar {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  max-width: 14rem;
}

.nav-links {
  gap: 2rem;
  display: flex;
  font-weight: 400;
}

.nav-links a {
  font-weight: 500;
  color: var(--textPrimary);
  font-size: 1.5rem;
  position: relative;
}

.nav-links a::before {
  left: 0;
  bottom: -6px;
  content: '';
  width: 100%;
  height: 1px;
  transform: scale(0);
  position: absolute;
  transition: all 0.4s ease;
  background-color: #fff;
}

.nav-links a > i {
  display: none;
}

.nav-links a:hover::before {
  transform: scale(1);
  transform-origin: center;
}

/* responsive menu toggler */
.nav-toggler {
  width: 4rem;
  height: 4rem;
  display: none;
  cursor: pointer;
  margin-left: 2rem;
  font-size: 2.6rem;
  align-items: center;
  justify-content: center;
  color: #148EF0;
}

@media screen and (max-width: 991.9px) {
  .nav-toggler {
    display: flex;
  }

  .btn_colored_top {
    display: none;
  }
}

/* responsive */
@media screen and (max-width: 991.9px) {
  .nav-links {
    top: 0;
    right: 0;
    width: 280px;
    padding: 4rem;
    height: 100vh;
    position: fixed;
    margin-right: -284px;
    flex-direction: column;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    background: #172246;
  }

  .nav-links a {
    color: #fff;
    font-weight: bold;
  }

  .nav-links a > i {
    display: inline;
  }

  .nav-links.show {
    margin-right: 0;
  }

  .backdrop-filter {
    top: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    background: hsl(216deg 77% 15% / 50%);
  }

  .backdrop-filter.show {
    opacity: 1;
    display: block;
  }
}

@media screen and (max-width: 375.9px) {
  .nav-links {
    max-width: 240px;
  }
}

/* hero */
#hero {
  padding: 5rem 0;
  overflow: hidden;
  margin-top: -8rem;
  height: 100vh;
  width: 100%;
  /* background: url('../img/onebg.jpg ') center no-repeat; */
  background-size: cover;
}

@media screen and (max-width: 541.9px){
  #hero {
    background-position: revert;
  }
}

#hero .row {
  min-height: 85vh;
  align-items: center;
}

.hero-title {
  font-weight: 600;
  margin-bottom: .35rem;
  text-transform: capitalize;
  font-size: calc(2.65rem + 2vw);
}

.hero-subtitle {
  font-weight: 300;
  margin-bottom: 2.5rem;
  font-size: calc(1.3rem + 0.35vw);
  color: var(--textSecondary);
}

.crypto_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}

.crypto {
  width: 50px;
  margin: 0px 10px 20px 10px;
}

.form-input, .form-input:focus-visible {
    padding: 15px 14px;
    color: #fff;
    background: hsl(223.87deg 34.29% 42.53% / 15%);
    border-radius: 12px;
    border: 2px solid #1187e8;
    margin-bottom: 10px;
    outline: none;
    width: 400px;
    text-align: center;
}

.form-input::-webkit-input-placeholder { 
  color: #E0E4FF;
}
.form-input:-ms-input-placeholder { 
  color: #E0E4FF;
}
.form-input::-ms-input-placeholder { 
  color: #E0E4FF;
}

.hero_form_btn {
  width: 400px;
  padding: 10px 0px;
  display: inline-block;
  justify-content: center;
  align-items: center;
  background: var(--colored_gradient);
  color: #fff;
  font-weight: bold;
  border-radius: 12px;
  font-size: 1.75rem;
  border: 2px solid transparent;
  transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hero_form_btn:hover {
  background: linear-gradient(to right bottom, #0960db, #06589b);
  border: 2px solid #148EF0;
  color: #fff;
}

@media screen and (max-width: 426.9px) {
  .form-input {
    width: 90%;
  }
  .hero_form_btn {
    width: 90%;
  }
}

/* features */
#features {
  padding: 5rem 0;
}

.feature_section_intro  {
  margin-bottom: 3rem;
}

.fs_title {
  font-weight: 100;
  font-size: 2.5rem;
  text-align: center;
}

.features_content {
  display: flex;
  align-items: center;
}

.feature_card {
    padding: 20px;
    background: linear-gradient(to right bottom, hsl(232.62deg 10.13% 25.64% / 7%), hsl(225.82deg 61.8% 17.45%));
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-wrap: nowrap;
    border-radius: 15px;
}

.feature_card > img {
  width: 110px;
  margin-bottom: 10px;
}

.feature_card h3 {
  font-weight: 600;
  margin: 5px 0px;
  font-size: 1.8rem;
}

.feature_card p {
  font-weight: 100;
  font-size: 1.4rem;
  color: var(--textSecondary);
}

.fc_right {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .feature_card {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .feature_card > img {
    margin-bottom: 0px;
    margin-right: 10px;
  }

  .fc_right {
    margin-top: 0px;
  }
}

@media screen and (max-width: 468px) {

  .feature_card {
    padding: 10px 5px;
  }

  .feature_card > img {
    width: 80px;
  }
}

/* payment_proof  */
#payment_proof {
  padding: 5rem 0;
  /* background: var(--secondarybg); */
}

.pp_title {
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
}

.ppt_light {
  font-weight: 100;
}

.payment_icon {
  width: 20px;
  margin-right: 10px;
}

/* faqs */
#faqs {
  padding: 5rem 0;
}

.faqs_section_title {
  font-weight: 300;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--textPrimary);
}

.accordion-item {
  border: 0;
  overflow: hidden;
  color: var(--textWhite) !important;
  background: linear-gradient(to right bottom, hsl(232.62deg 10.13% 25.64% / 7%), hsl(225.82deg 61.8% 17.45%));
  border-radius: 1rem !important;
  box-shadow: 3px 9px 11px 0px rgb(3 0 10 / 17%);
}

.accordion-button:not(.collapsed),
.accordion-button {
  border: 0;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 2rem 3rem;
  box-shadow: 0 0 1rem hsla(250, 80%, 10%, 0.35);
  background: linear-gradient(to right bottom, hsl(232.62deg 10.13% 25.64% / 7%), hsl(225.82deg 61.8% 17.45%));
  color: var(--textWhite) !important;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button .icon {
  font-size: 2.6rem;
  margin-right: 1rem;
}

.accordion-body {
    border-top: 0;
    padding: 2rem 3rem;
    font-size: 1.3rem;
    font-weight: 100;
}

.accordion-header {
  position: relative;
}

.accordion-button .float {
  right: 1.6rem;
  max-width: 5rem;
  position: absolute;
}

.accordion-button::after {
  width: 2rem;
  height: 2rem;
  background: url(../img/arrow_down.svg) center no-repeat;
  background-size: contain;
  transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
  background: url(../img/arrow_up.svg) center no-repeat;
  background-size: contain;
  transform: rotate(-360deg);
}

.faq_icon {
  width: 20px;
  margin-right: 20px;
}

/* footer */
#footer {
  padding: 1.5rem 0rem;
  color: #fff;
  background-color: #1d1940;
  border-top: 2px solid #1d1940;
}
.hero-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-login-wrap{
      width: 80%;
    margin-left: auto;
    min-height: 40rem;
    padding: 42px 28px;
    border-radius: 1.2rem;
    background: linear-gradient(to bottom, hsla(218, 100%, 65%, 0.25), hsla(0, 0%, 0%, 0));
    animation: 600ms zoomIn backwards ease-out;
    animation-delay: 700ms;
}
.hero-glow{
    top: -20rem;
    left: -28rem;
    z-index: -1;
    opacity: 0.6;
    max-width: 80rem;
    position: absolute;
}

/* -------feature card css -------  */
#features {
  padding: 100px 0;
  
}

.fs_title {
  color: white;
  font-size: 40px;
  font-weight: 600;
}

.features_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.features_col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature_box {
  background: rgba(255, 255, 255, 0.06);
  padding: 18px 40px;
  font-size: 20px;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 0 20px #00000040;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.09);
  transition: 0.3s ease;
}

.feature_box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px #00aaff50;
}

.highlight {
  color: #00c1ff;
  font-weight: 600;
}

.center_img {
  width: 280px;
  animation: float 3s infinite ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.feature-glow{
    top: 154%;
    left: 50%;
    width: 61%;
    z-index: -1;
    position: absolute;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}
#feature-section {
  padding: 100px 0;
  background: #0d0f18;
  text-align: center;
}

.feature-title {
  color: #fff;
  font-size: 30px;
  opacity: 0.8;
}

.feature-subtitle {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
}

.features-grid {
  max-width: 850px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #161b2b;
  padding: 18px 26px;
  border-radius: 14px;
  box-shadow: 0px 0px 25px #00000040;
  transition: 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 30px #0099ff40;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: #1e2435;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon img {
  width: 40px;
  filter: drop-shadow(0 0 4px #00c6ff);
}

.feature-item p {
  opacity: .8;
  color: #ddd;
  margin: 0;
  font-size: 16px;
}

.feature-item h4 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features_wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .center_img {
    width: 220px;
  }
}

@media (max-width: 576px) {
  .feature_box {
    font-size: 16px;
    padding: 14px 22px;
  }

  .fs_title {
    font-size: 30px;
  }
}

.cta-card {
    width: 100%;
    max-width: 1100px;
    margin: 80px auto;
    padding: 40px 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: linear-gradient(90deg, #3a82ff, #19cfff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cta-card h2 {
    font-size: 32px;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.cta-card strong {
    font-weight: 800;
}

.cta-btn {
    background: #fff;
    color: #111;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    opacity: 0.85;
}
.earning-glow{
    top: -15rem;
    left: -25rem;
    z-index: -1;
    width: 55rem;
    position: absolute;
}


/* -------feature card css -------  */


/* Huge screen */
@media (max-width: 1400px) { 

 }

/* Laptop */
@media (max-width: 1024px) { 
  .hero-login-wrap{
    width: 99%;
    padding: 42px 5px;
   
  }
  .feature-glow{
    width: 110%;
  }
 }

/* Tablet */
@media (max-width: 768px) { 
.hero-login-wrap{
    width: 99%;
    padding: 42px 5px;
    margin-right: 30px;
  }
 }

/* Mobile */
@media (max-width: 480px) { 
   #hero {
    padding: 12rem 0;
  }

  #hero .row {
    gap: 8rem;
  }
  .hero-title ~ p {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .crypto{
    width: 30px;
  }
  .hero-login-wrap{
    width: 99%;
    padding: 42px 5px;
  }
 }
