@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #0d1117;
  overflow-x: hidden;
  scrollbar-width: none;
}

/* Variables */

:root {
  --primary-color:#38bdf8;
  --primary-bg:#38bdf84d;
  --secondary-color: #2ecc71;
  --text-color: #333;
  --white-clr:#fff;

  --font-family: "Inter", sans-serif;

  --font-small: 12px;
  --font-medium: 17px;
  --font-responsive: 30px;
  --font-large: 48px;

  --font-light: 300;
  --font-normal: 400;
  --font-bold: 800;
}

.bg_animate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.grid_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 223, 163, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 223, 163, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}
.clr_shadow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 15s ease-in-out infinite;
}
.shadow_1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #ec4899, #ec4899, #37bff3);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}
.shadow_2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #00ffa3, #0abcf9);
  bottom: 20%;
  left: -50px;
  animation-delay: -5s;
}
.shadow_3 {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #6366f1, #6366f1);
  bottom: -50px;
  right: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.navbar-toggler{
border:none;
}

.navbar-toggler i{
font-size:22px;
color:#fff;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

/* header */
.nav_header {
  padding: 12px 0;
  position: fixed;
  width: 100%;
  z-index: 2;
}
.nav_header.scrolled {
  background: linear-gradient(145deg, #1b2330, #030a14);
  border-bottom: 1px solid #1f2937;
  backdrop-filter: blur(10px);
}

.navbar {
}

.navbar-brand {
  color: var(--white-clr);
  font-size: 25px;
  font-weight: 600;
}

.navbar-brand img {
  width: 130px;
}

.nav-link {
  font-family: var(--font-family);
  color: var(--white-clr);
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  padding: 7px 18px !important;
}
.nav-link.active {
  background: linear-gradient(135deg, #2ee6a652, var(--primary-color));
  color: var(--white-clr) !important;
  transition: 0.3s;
}
.nav-link:focus, .nav-link:hover {
    color: #2ee6a6;
}

.main_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main_btn a {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 10px;
  color: var(--white-clr);
  font-size: var(--font-medium);
  font-weight: 600;
  transition: all 0.5s ease;
  font-family: var(--font-family);
}

.login_btn {
  background: none;
  border: 1px solid #2ee6a6;
  color: #2ee6a6;
}

.sign_btn {
  background: linear-gradient(135deg, #2ee6a6, var(--primary-color));
  color: #000 !important;
}

.login_btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.main_btn a:hover {
  transform: translateY(-4px);
}

.offcanvas{
  background: linear-gradient(145deg,#1b2330,#030a14);
  color:var(--white-clr);
}

.offcanvas .nav-link{
  padding:15px !important;
  border-radius:12px;
  margin-bottom:10px;
  background:#0f172a;
  font-family: var(--font-family);
}

.offcanvas .nav-link.active{
  background:#2ee5a9;
  color:var(--primary-color);
}

/* heading_main */

.heading_main {
  text-align: center;
  margin-bottom: 50px;
}

.heading_main span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding: 8px 20px;
  color: var(--white-clr);
  border: 1px solid var(--primary-color);
  background:var(--primary-bg);
  border-radius: 50px;
  font-family: var(--font-family);
}

.heading_main h1 {
  font-size: var(--font-large);
  font-weight:var(--font-bold);
  color: var(--white-clr);
  margin-bottom: 16px;
  line-height: 1.2;
  margin-top: 20px;
  font-family: var(--font-family);
}

.heading_main h1 span {
  color: var(--primary-color);
  border: none;
  background: none;
  border-radius: 0px;
  padding: 0;
  font-size: var(--font-large);
  font-weight: 900;
  font-family: var(--font-family);
  text-transform: capitalize;
}

.heading_main p {
  color: #94a3b8;
  font-size:var(--font-medium);
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-family);
}

/* banner_sec */

.banner_sec {
  padding: 50px 0;
  padding-top: 140px;
}

.banner_title {
}

.banner_title span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding: 8px 20px;
  color: var(--white-clr);
  border: 1px solid var(--primary-color);
  background: var(--primary-bg);
  border-radius: 50px;
  font-family: var(--font-family);
}

.banner_title span i {
  color: var(--white-clr);
}

.banner_title h1 {
  font-size: var(--font-large);
  font-weight: var(--font-bold);
  color: var(--white-clr);
  margin-bottom: 30px;
  margin-top: 30px;
  font-family: var(--font-family);
}

.banner_title h1 span {
  font-size: var(--font-large);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  font-family: var(--font-family);
  text-transform: capitalize;
}

.banner_title p {
  color: #94a3b8;
  font-size: var(--font-medium);
  font-family: var(--font-family);
}

.banner_value {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 30px;
  font-family: var(--font-family);
}

.val_1 {
}

.val_1 h4 {
  font-size: 35px;
  font-weight: var(--font-bold);
  color:var(--white-clr);
  font-family: var(--font-family);
}

.val_1 p {
  color: #94a3b8;
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-family);
}

.trade-card {
  position: relative;
  background: linear-gradient(135deg, #0d1b2a, #091321);
  padding: 40px;
  border-radius: 30px;
  color: var(--white-clr);
  /* overflow: hidden; */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.trade-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.btc-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-family);
}
.btc-title i {
  font-size: 24px;
  color: #f7931a;
  font-family: var(--font-family);
}

.profit {
  background: #163c32;
  padding: 10px 18px;
  border-radius: 30px;
  color: #19e6a3;
  font-weight: 600;
  font-family: var(--font-family);
}

.price {
  font-size: 60px;
  font-weight: 700;
  margin: 20px 0 0;
  font-family: var(--font-family);
}

.gain {
  color: #19e6a3;
  font-size: 22px;
  margin-bottom: 30px;
  font-family: var(--font-family);
}

.graph {
  margin-top: 20px;
}

.line {
  fill: none;
  stroke: #18f2c2;
  stroke-width: 4;
  stroke-linecap: round;
  font-family: var(--font-family);
  stroke-dasharray: var(--font-bold);
  stroke-dashoffset: var(--font-bold);

  animation: lineMove 4s ease forwards;
}

@keyframes lineMove {
  to {
    stroke-dashoffset: 0;
  }
}

.roi-card,
.eth-card,
.ai-card {
  position: absolute;
  background: #0e1b2e;
  padding: 18px 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float 4s ease-in-out infinite;
  font-family: var(--font-family);
}

.roi-card {
  left: -40px;
  top: 220px;
}

.eth-card {
  right: -30px;
  top: 140px;
  animation-delay: 1s;
}

.ai-card {
  right: 120px;
  bottom: 120px;
  animation-delay: 2s;
}

.roi-card p,
.eth-card p,
.ai-card p {
  margin: 0;
  color: #9fb3c8;
  font-family: var(--font-family);
}

.roi-card h5,
.eth-card h5,
.ai-card h5 {
  margin: 5px 0 0;
  color: #19e6a3;
  font-family: var(--font-family);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.trade-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.buy {
  flex: 1;
  background: #19e6a3;
  border: none;
  padding: 16px;
  border-radius: 15px;
  font-size: var(--font-medium);
  font-weight: 600;
  font-family: var(--font-family);
}

.sell {
  flex: 1;
  background: #ef4444;
  border: none;
  padding: 16px;
  border-radius: 15px;
  font-size: var(--font-medium);
  font-weight: 600;
  color:var(--white-clr);
  font-family: var(--font-family);
}

/* cry_banner */

.cry_banner {
  background: linear-gradient(145deg, #1b2330, #030a14);
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cry_content {
  display: flex;
  gap: 60px;
  animation: cry_anim 30s linear infinite;
}
@keyframes cry_anim {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
.cry_item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.cry_item i,
.cry_item .coin-icon {
  font-size: 20px;
  color: #94a3b8;
  font-family: var(--font-family);
}
.cry_item span:nth-child(2) {
  font-weight: 600;
  color: var(--white-clr);
  font-family: var(--font-family);
}
.cry_item .prices {
  color: #94a3b8;
  font-family: var(--font-family);
}
.cry_item .change {
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 12px;
  color: var(--white-clr);
  font-family: var(--font-family);
}
.cry_item .change.positive {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}
.cry_item .change.negative {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* feature_sec */

.feature_sec {
  padding: 50px 0;
}

.feature_card {
  background: linear-gradient(145deg, #1b2330, #030a14);
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 44px;
  transition: all 0.5s ease;
  text-align: center;
  margin-bottom: 30px;
  height:300px;
}

.feature_card:hover {
  transform: translateY(-6px);
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, #1b2330, #030a14) padding-box,
    linear-gradient(135deg, #2ee6a6, var(--primary-color)) border-box;
}

.feature_card:hover .feature_icon i {
  background: var(--primary-color);
  transform: scale(1.1);
  color: var(--white-clr);
  font-family: var(--font-family);
}

.feature_icon {
  margin-bottom: 15px;
}

.feature_icon i {
  background: var(--primary-bg);
  border-radius: 12px;
  padding: 15px;
  font-size: 32px;
  color: var(--primary-color);
  transition: all 0.5s ease;
  font-family: var(--font-family);
}

.feature_card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white-clr);
  margin-bottom: 12px;
  font-family: var(--font-family);
}

.feature_card p {
  line-height: 1.7;
  color: #94a3b8;
  font-family: var(--font-family);
}

/* process_sec */

.process_sec {
  padding: 50px 0;
  background: #111827;
}

.trading-style1__content {
    position: relative;
    display: block;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.5s ease;
}
.trading-style1__content:hover{
  transform: translateY(10px);
}
.trading-style1__content:hover .trading-style1__content-icon {
    transform: scale(1.05) rotateY(180deg);
} 
.trading-style1__content-title {
    position: relative;
    display: block;
    padding: 19px 35px 19px;
}
.trading-style1__content-title h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: var(--font-bold);
}
.trading-style1__content-text {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(145deg, #1b2330, #030a14);
    padding: 28px 50px 70px;
}
.trading-style1__content-text p {
    line-height: 26px;
    color: var(--white-clr);
}
.trading-style1__content-text-overlay {
    position: absolute;
    left: 26px;
    bottom: -15px;
}
.trading-style1__content-text-overlay h2 {
    color: #2fe6a6;
    font-size: 50px;
    line-height: 1.0em;
    opacity: 0.3;
    font-weight: 800;
}
.trading-style1__content-btn {
    position: relative;
    display: block;
    line-height: 0;
    padding: 18px 35px 18px;
}
.trading-style1__content-icon {
    position: absolute;
    right: 35px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 80px;
    font-size: 40px;
    line-height: 0;
    transition: all 400ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}
.trading-style1__content-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: -1;
}


/* plan_sec */

.plan_sec {
  padding: 50px 0;
}

.plan_card {
  background: linear-gradient(145deg, #1b2330, #030a14);
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 50px;
  transition: all 0.5s ease;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.plan_card:hover {
  border-color: var(--primary-color);
}

.plan_icon {
  background: var(--primary-color);
  border-radius: 50%;
  width: 75px;
  height: 75px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

.plan_icon i {
  font-size: 32px;
  color: var(--white-clr);
  transition: all 0.5s ease;
  font-family: var(--font-family);
}

.plan_card span {
  background: var(--primary-bg);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 25px;
  font-family: var(--font-family);
}

.plan_pri h6 {
  color: #94a3b8;
  font-size: 22px;
  font-family: var(--font-family);
  /* vertical-align: top; */
}

.plan_pri h6 span {
  background: none;
  padding: 0;
  border-radius: 0px;
  color: var(--white-clr);
  font-size: 45px;
  font-weight: var(--font-bold);
  font-family: var(--font-family);
}

.plan_pri2 h6 {
  font-size: 25px;
  font-weight: 700;
  color: #39bdf8;
  font-family: var(--font-family);
}

.plan_pri2 p {
  color: #94a3b8;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-family);
}

.plan_info {
  margin-bottom: 20px;
}

.plan_info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.plan_info ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color:var(--white-clr);
  font-family: var(--font-family);
}

.plan_info ul li i {
  color: #39bdf8;
  font-size: 14px;
  font-family: var(--font-family);
}

.plan_btn {
  justify-content: center;
}

/* card_value_sec */

.card_value_sec {
  width: 100%;
  padding: 50px 0;
  background: #111827;
}

.stat-card {
  background: linear-gradient(145deg, #1b2330, #030a14);
  border-radius: 18px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #1f2937;
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: var(--primary-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #39bdf8;
}

.stat-text h2 {
  color: var(--white-clr);
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-family);
}

.stat-text p {
  color: #94a3b8;
  margin: 0;
  font-size: 15px;
  font-family: var(--font-family);
}

/* earning_sec */

.earning_sec {
  padding: 50px 0;
}

.earning_card {
  background: linear-gradient(145deg, #1b2330, #030a14);
  border-radius: 18px;
  padding: 40px;
  border: 1px solid #1f2937;
  transition: 0.3s;
  text-align: center;
  height: 265px;
}

.earning_card:hover {
  border-color: #39bdf8;
}

.earning_card h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-clr);
  margin-bottom: 20px;
  font-family: var(--font-family);
}

.earning_card h6 i {
  color: #39bdf8;
  font-family: var(--font-family);
}

.earning_card h4 {
  font-size: 40px;
  font-weight: var(--font-bold);
  color: #39bdf8;
  font-family: var(--font-family);
}

.earning_card h3 {
  background: #050d1b;
  padding: 10px;
  border-radius: 10px;
  color: var(--white-clr);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-family);
}

.earning_card h3 span {
  color: var(--primary-color);
  font-family: var(--font-family);
}

.earning_card p {
  color: #94a3b8;
  margin: 0;
  font-size: 16px;
  font-family: var(--font-family);
}

/* review_sec */

.review_sec {
  padding: 50px 0;
  background: #111827;
}

.review_card {
  background: linear-gradient(145deg, #1b2330, #030a14);
  border-radius: 18px;
  padding: 40px;
  border: 1px solid #1f2937;
  transition: 0.3s;
}

.review_card:hover {
  border-color: #39bdf8;
}

.review_card span {
}

.review_card span i {
  color: #fbbf23;
  font-family: var(--font-family);
}

.review_card p {
  margin: 15px 0;
  font-size:var(--font-medium);
  color: #d1d5db;
  font-weight: 400;
  font-style: italic;
  font-family: var(--font-family);
}

.review_info {
  display: flex;
  gap: 10px;
}

.review_img img {
  width: 50px;
  border-radius: 50px;
  border: 2px solid #39bdf8;
}

.info_review h6 {
  color: var(--white-clr);
  font-family: var(--font-family);
}

.info_review p {
  margin: 0;
  font-size: 15px;
  color: #94a3b8;
  font-weight: 400;
  font-family: var(--font-family);
}

/* faq_sec */

.faq_sec {
  padding: 50px 0;
}

.accordion-item {
  background: linear-gradient(145deg, #1b2330, #030a14);
  border: none;
  border-radius: 15px !important;
  margin-bottom: 20px;
  overflow: hidden;
}

.accordion-button {
  background: linear-gradient(145deg, #1b2330, #030a14);
  color: var(--white-clr);
  font-size: var(--font-medium);
  padding: 20px 25px;
  box-shadow: none;
  border-radius: 15px !important;
  font-family: var(--font-family);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(145deg, #1b2330, #030a14);
  color:var(--white-clr);
  border: 1px solid #39bdf8;
  box-shadow: 0 0 10px rgba(24, 242, 194, 0.3);
}

.accordion-body {
  background: linear-gradient(145deg, #1b2330, #030a14);
  color: #a6b0c3;
  padding: 20px 25px;
  font-family: var(--font-family);
  /* border-top:1px solid rgba(255,255,255,0.05); */
}

.accordion-button::after {
  filter: invert(1);
}

/* earning2_sec */

.earning2_sec {
  padding: 70px 0;
  background: #111827;
  text-align: center;
}

.earning2_content h1 {
  font-size: var(--font-large);
  font-weight: var(--font-bold);
  color: var(--white-clr);
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: var(--font-family);
}

.earning2_content h1 span {
  color: var(--primary-color);
  border: none;
  background: none;
  border-radius: none;
  padding: 0;
  font-size: var(--font-large);
  font-weight: 900;
  font-family: var(--font-family);
}

.earning2_content p {
  margin-bottom: 25px;
  font-size: 15px;
  color: #94a3b8;
  font-weight: 400;
  font-family: var(--font-family);
}

.earning_btn {
  justify-content: center;
}

/* footer */

.footer {
  background: #020c1b;
  color: #a7b3c2;
  padding: 80px 0 30px;
}

.footer_row {
  justify-content: center;
}
.footer_info img {
  width: 160px;
  margin-bottom: 10px;
}
.footer h5 {
  color:var(--white-clr);
  margin-bottom: 20px;
  font-family: var(--font-family);
}

.footer p {
  line-height: 1.7;
  font-family: var(--font-family);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: #a7b3c2;
  text-decoration: none;
  transition: 0.3s;
  font-family: var(--font-family);
}

.footer ul li a:hover {
  color: var(--primary-color);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #0b1a2c;
  border-radius: 10px;
  margin-right: 10px;
  color: var(--white-clr);
  text-decoration: none;
  transition: 0.3s;
  font-family: var(--font-family);
}

.social-icons a:hover {
  background: var(--primary-color);
  color: #000;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 40px 0;
}

.copyright p {
  margin-bottom: 5px;
  color: #9aa6b2;
  font-family: var(--font-family);
}

.copyright span {
  font-size: 14px;
  color: #6f7a87;
  font-family: var(--font-family);
}
