@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);
  --bg-dark-1:#0B0F1A;
  --bg-dark-2:#121A2F;

  --primary:#3DA9FC;      /* blue */
  --accent:#FF4ECD;       /* pink */
  --text-main:#FFFFFF;
  --text-soft:#A5B0D0;
  --card-bg:#161F36;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  overflow: hidden auto;
  background: var(--bodybg);
  color: var(--textPrimary);
  font: 400 1.6rem 'Inter', sans-serif;
  /* background: linear-gradient(120deg, #1B0F2E, #2E1A47, #1A2A6C); */
}
body::before{
  content:'';
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(90,140,255,.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(190,80,255,.16), transparent 50%);
  pointer-events:none;
}


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 {
    top: 32px;
    z-index: 99;
    position: sticky;
}
.navbar {
    display: flex;
    z-index: 1024;
    padding: 20px;
    flex-wrap: wrap;
    position: relative;
    border-radius: 12px;
    align-items: center;
    justify-content: space-between;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(14px);
}

.logo {
    gap: 8px;
    display: flex;
    font-size: 22px;
    font-weight: 600;
    align-items: center;
}

.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; /* hidden */
    flex-direction: column;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    background: #172246;
    z-index: 9999;
    display: none;
  }

  .nav-links.show {
    margin-right: 0; /* visible */
  }

  .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;
    display: none;
  }
}

/* hero */
#hero {
  padding: 5rem 0;
  overflow: hidden;
  margin-top: -8rem;
  height: 100vh;
  width: 100%;
  /* background: linear-gradient(120deg, #1B0F2E, #2E1A47, #1A2A6C); */
  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-title span{
  background: linear-gradient(90deg,#3DA9FC,#22F1FF);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.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;
}
 .crypto{
  animation: float 4s ease-in-out infinite;
}

@keyframes float{
  0%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
  100%{transform:translateY(0)}
}


.form-input, .form-input:focus-visible {
    padding: 15px 14px;
    color: #fff;
    background:#0F1629;
    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;
  }
  #two-step .section-title h2{
    font-size:26px;
  }
}

@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: 25px;
  margin-right: 20px;
}

/* footer */
#footer {
  padding: 1.5rem 0rem;
  color: #fff;
  background-color: #1d1940;
  border-top: 2px solid #1d1940;
}

#two-step{
  padding: 90px 0;
  background: linear-gradient(180deg,#0a0720,#100627,#0f082a);
  text-align: center;
}

#two-step .section-title h2{
  color:#ffffff;
  font-weight:800;
  letter-spacing: 1px;
}

#two-step .section-title p{
  color:#d6d6ff;
  font-size:20px;
  margin-top:5px;
  margin-bottom:50px;
}

.two-phase-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
}

/* card */
.phase-card{
  width:320px;
  height:360px;
  padding:30px 20px;

  border-radius:20px;

  background: linear-gradient(140deg,#43124b,#1b1464);

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  box-shadow:0 0 40px rgba(0,0,0,.35);
  transition:.3s;
}

.phase-card img{
  width:180px;
  margin-bottom:25px;
}

.phase-card h3{
  color:white;
  font-weight:800;
  letter-spacing:1px;
}

/* hover effect */
.phase-card:hover{
  transform:translateY(-8px) scale(1.02);
}

/* container center */
.container{
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* SECTION STYLING */
.our-users{
  padding: 80px 0;
  background: transparent; /* आपके site के background पर ही दिखेगा */
  color: #fff;
}

/* heading */
.our-head h2{
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.our-head p{
  text-align: center;
  font-size: 22px;
  margin-bottom: 45px;
  opacity: 0.9;
}

/* main content */
.our-body{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* illustration */
.illustration img{
  width: 440px;
  max-width: 100%;
}

/* cards */
.cards .card{
  background: linear-gradient(120deg,#c534c0,#8245ff,#2d46ff);
  padding: 15px 120px;
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 14px;
  transition: .25s;
  cursor:pointer;
}

.cards .card:hover{
  transform: translateX(6px);
  opacity: .95;
}
/* Tablet */
@media (max-width: 992px){
  .our-body{
    flex-direction: column;
    text-align: center;
  }
  .cards{
    width: 100%;
  }
  .cards .card{
    font-size: 18px;
  }
  .illustration img{
    width: 340px;
    margin-bottom: 35px;
  }
}

/* Mobile */
@media (max-width: 600px){
  .our-head h2{
    font-size: 28px;
  }
  .our-head p{
    font-size: 18px;
  }
  .cards .card{
    font-size: 16px;
    padding: 14px 18px;
  }
  .illustration img{
    width: 260px;
  }
}
