body {
  background: #0b0f14;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
.nav-link{
    color:#fff !important;
}
.navbar {
    z-index: 999999;
}
.navbar-brand img{
    width: 160px;
}

/* COLORS */
.text-neon {
  color: #b6ff00;
}
.btn-neon {
  background: #b6ff00;
  color: #000;
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 600;
}
.btn-neon:hover {
  background: #9ee600;
}

/* HERO */
.hero-section {
  /* padding: 80px 0; */
  position: relative;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* TITLE */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
}

/* USERS */
.users-img {
  height: 42px;
}

/* INFO BOX */
.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 420px;
}
.icon-circle {
  width: 48px;
  height: 48px;
  background: #b6ff00;
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
}

/* PHONES */
.phone-area {
  height: 520px;
}
.phone {
  position: absolute;
  width: 400px;
  animation: float 6s ease-in-out infinite;
}
.phone-main {
right: 80px;
    top: -109px;
    z-index: 2;
}
.phone-secondary {
  right: 0;
  bottom: 0;
  width: 230px;
  animation-delay: 2s;
}

/* ORBIT ANIMATION */
.orbit {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(182,255,0,0.4);
  border-radius: 50%;
  top: 80px;
  right: 40px;
  animation: rotate 20s linear infinite;
}

/* FLOAT */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* ROTATE */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* RESPONSIVE */
@media(max-width:991px) {
  .phone-area {
    margin-top: 60px;
    height: 420px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}



/* GRID BACKGROUND */
.trusted-section {
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* TITLE */
.main-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.text-neon {
  color: #b6ff00;
}

/* GLASS CARDS */
.glass-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  transition: all 0.3s ease;
}

.glass-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

/* HIGHLIGHT CARD */
.highlight-card {
  background: #b6ff00;
  color: #000;
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 0 40px rgba(182,255,0,0.35);
}

.highlight-card h5 {
  font-size: 1.3rem;
  font-weight: 700;
}

.highlight-card p {
  font-size: 0.95rem;
  margin: 15px 0 20px;
}

.learn-link {
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

/* NUMBERS */
.number {
  display: block;
  font-size: 1.1rem;
  color: #b6ff00;
  margin-bottom: 15px;
  font-weight: 600;
}

.number.dark {
  color: #000;
}

/* RESPONSIVE */
@media(max-width: 991px) {
  .main-title {
    font-size: 2rem;
  }
}



/* GRID BACKGROUND */
.platform-section {
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* GRAPH AREA */
.graph-area {
  height: 460px;
}

/* GRAPH LINE */
.graph-line {
  width: 100%;
  height: 220px;
}
.graph-line path {
  fill: none;
  stroke: #b6ff00;
  stroke-width: 2.5;
}
.graph-line circle {
  fill: #b6ff00;
}

/* INFO CARDS */
.info-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 18px;
  width: 230px;
  color: #fff;
}

.info-card h6 {
  color: #b6ff00;
  font-weight: 600;
}

.top-card {
  top: 0;
  left: 30px;
}

.middle-card {
  top: 160px;
  right: 20px;
}

.bottom-card {
  bottom: 0;
  left: 0;
}

.percent {
  color: #b6ff00;
  font-size: 0.85rem;
}

.date-tag {
  background: #b6ff00;
  color: #000;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 6px;
}

/* RIGHT CONTENT */
.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
}

.section-title span {
  color: #b6ff00;
}

.stars {
  color: #b6ff00;
  letter-spacing: 3px;
}

/* BUTTON */
.btn-neon {
  background: #b6ff00;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 26px;
}

.ask-link {
  color: #aaa;
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 991px) {
  .graph-area {
    margin-bottom: 50px;
    height: auto;
  }
  .section-title {
    font-size: 2rem;
  }
  .trad-img, .phone{
      width: 100%;
  }
  .phone-main {
    right: 7px;
     top: -153px;
    z-index: 2;
}



}








/* GRID BACKGROUND */
.portfolio-section {
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* TITLE */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
}
.section-title span {
  color: #b6ff00;
}

.section-subtitle {
  max-width: 760px;
  margin: auto;
  color: #9aa0a6;
  font-size: 0.95rem;
}

/* GLASS CARD */
.glass-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s ease;
}
.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(182,255,0,0.2);
}

/* HIGHLIGHT CARD */
.highlight-card {
  background: #b6ff00;
  color: #000;
  border-radius: 18px;
  padding: 45px 30px;
  height: 100%;
  box-shadow: 0 0 45px rgba(182,255,0,0.4);
  transition: all 0.4s ease;
}
.highlight-card:hover {
  transform: translateY(-12px);
}

/* ICONS */
.icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin: 0 auto 20px;
}

.icon.neon {
  background: #b6ff00;
  color: #000;
}

.icon.dark {
  background: #000;
  color: #b6ff00;
}

/* BUTTON */
.btn-rounded {
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 600;
}

/* TEXT */
h5 {
  font-weight: 600;
  margin-bottom: 15px;
}
p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #fff;
}

/* ANIMATION */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.animate.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media(max-width: 991px) {
  .section-title {
    font-size: 2.2rem;
  }
}




/* GRID BACKGROUND */
.whats-new-section {
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* TITLE */
.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.section-title span {
  color: #b6ff00;
}

.section-desc {
  max-width: 520px;
  color: #9aa0a6;
  font-size: 0.95rem;
}

/* FEATURES */
.feature {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feature h6 {
  font-weight: 600;
  margin-bottom: 6px;
}
.feature p {
  font-size: 0.85rem;
  color: #9aa0a6;
  margin: 0;
}

/* ICON */
.icon {
  width: 44px;
  height: 44px;
  background: #b6ff00;
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* PHONES */
.phone-area {
  height: 520px;
}

/* .phone {
  position: absolute;
  width: 260px;
} */

.phone-front {
  right: 60px;
  top: 20px;
  z-index: 2;
}

.phone-back {
  right: 150px;
  top: 100px;
  opacity: 0.95;
}

/* ORBIT */
.orbit {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(182,255,0,0.4);
  border-radius: 50%;
  top: 60px;
  right: 60px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .phone-area {
    margin-top: 50px;
    height: 420px;
  }
  .section-title {
    font-size: 2rem;
  }
}

/* FOOTER */
.crypto-footer {
    border-top: 1px solid #3c5d02;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
  color: #fff;
}

/* BRAND */
.brand {
  color: #b6ff00;
  font-weight: 700;
  width: 200px;
  margin-bottom: 1rem;
}

/* TITLES */
.footer-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  text-decoration: none;
  color: #9aa0a6;
  font-size: 0.85rem;
}
.footer-links a:hover {
  color: #b6ff00;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.social-icons span {
  width: 34px;
  height: 34px;
  background: #b6ff00;
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
}

/* NEWSLETTER */
.newsletter {
  display: flex;
  background: rgba(255,255,255,0.06);
  border-radius: 30px;
  overflow: hidden;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.85rem;
}
.newsletter input:focus {
  outline: none;
}
.newsletter button {
    background: #b6ff00;
    border: none;
    padding: 10px 6px;
    font-weight: 600;
    font-size: 11px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .newsletter {
    max-width: 100%;
  }
}





/* Unique carousel spacing fix */
.portfolio-owl-carousel .item {
    padding: 10px;
}

/* Maintain card height consistency */
.glass-card,
.highlight-card {
    min-height: 260px;
    border-radius: 16px;
}




/* Expertise Section */
.expertise-section {
    /* background: linear-gradient(135deg, #0b0f1a, #11162a); */
    background: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);;
    color: #ffffff;
}

/* Section Heading */
.section-heading {
    font-size: 28px;
    font-weight: 700;
}

.section-heading span {
    color: #b6ff00;
}

/* Expertise Cards */
.expertise-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.expertise-card:hover {
    transform: translateY(-6px);
    background: rgba(79, 209, 197, 0.15);
    border-color: #b6ff00;
}

/* Partner Cards */
.partner-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.partner-card:hover {
    background: rgba(79, 209, 197, 0.2);
    transform: translateX(6px);
}

/* Partner Note */
.partner-note {
    font-size: 14px;
    color: #b5b9d6;
    line-height: 1.6;
}



@media screen and (max-width: 767px) {
    .orbit {
        position: absolute;
        width: 310px;
        height: 310px;
        border: 1px solid rgba(182, 255, 0, 0.4);
        border-radius: 50%;
        top: 60px;
        right: 30px;
    }
}