/* =========================
   NAVBAR (COMMON - REUSABLE)
========================= */

.navbar {
  background: #000 !important;
  padding: 14px 0;
  border-bottom: 1px solid #111;
}

.navbar-brand .logo {
  height: 42px;
  object-fit: contain;
}

/* Nav links */
.navbar-nav .nav-link {
  color: #ddd !important;
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
}

/* underline hover effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ffc107;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* =========================
   SIGN IN BUTTON (NAV)
========================= */

.navbar .btn {
  background: transparent !important;
  color: #ffc107 !important;
  border: 2px solid #ffc107 !important;
  border-radius: 30px;
  padding: 8px 22px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255,193,7,0.4);
}

.navbar .btn:hover {
  background: #ffc107 !important;
  color: #000 !important;
  box-shadow: 0 0 22px rgba(255,193,7,0.9);
  transform: translateY(-2px);
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 15px;
  }

  .navbar-nav .nav-link {
    margin: 8px 0;
  }
}
/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Dark Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
}

/* Content */
.hero-content {
  z-index: 3;
}

/* Buttons */
.btn-trade {
  background: linear-gradient(135deg, #f7931a, #ffae42);
  color: #000;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 0 15px rgba(247, 147, 26, 0.6);
  transition: all 0.3s ease;
}

.btn-trade:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(247,147,26,0.9);
}

/* Invest Button */
.btn-invest {
  background: transparent;
  color: #ffc107;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  border: 2px solid #ffc107;
  transition: all 0.3s ease;
}

.btn-invest:hover {
  background: #ffc107;
  color: #000;
  box-shadow: 0 0 20px rgba(0,255,156,0.8);
  transform: translateY(-3px);
}

/* Hero Image Animation */
.hero-img {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}


/* ================= ABOUT SECTION ================= */
.about-section {
  background: linear-gradient(180deg, #0b0f19, #020617);
}

.about-img {
  max-width: 85%;
  animation: float 4s ease-in-out infinite;
}

.about-features li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #cbd5f5;
}

.about-features i {
  color: #ffc107;
  font-size: 18px;
}

.about-section h4 {
  color: #ffc107;
}

.read-btn {
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-btn:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0,255,156,0.6);
}

/* ================= STEPS SECTION ================= */
.steps-section {
 
  background-color: #020617;
}

.step-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.step-card:hover {
  transform: translateY(-10px);
  /*box-shadow: 0 0 30px rgba(0,255,156,0.3);*/
  box-shadow: 0 0 30px rgb(255, 193, 7);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffc107, #141004);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.step-icon i {
  font-size: 26px;
  color: #000;
}

.steps-section h5 {
  margin-top: 15px;
}

/* ================= PRICING SECTION ================= */
.pricing-clean-section {
  background: #020617;
}

.pricing-clean-title {
  color: #fff;
  font-weight: 700;
}

.pricing-clean-subtitle {
  color: #94a3b8;
  max-width: 600px;
  margin: auto;
}

.pricing-clean-card {
  background: linear-gradient(180deg, #0b1220, #020617);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  color: #fff;
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.pricing-clean-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 35px rgb(255, 193, 7);
}

.pricing-clean-card.active {
  border: 2px solid #ffc107;
  box-shadow: 0 0 40px rgb(255, 193, 7);
}

.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffc107;
  color: #000;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.plan-name {
  color: #94a3b8;
  letter-spacing: 1px;
}

.plan-price {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
  color: #ffc107;
}

.plan-duration {
  font-size: 14px;
  color: #94a3b8;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.plan-features li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #cbd5f5;
}

.plan-btn {
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: 600;
  background: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
  transition: all 0.3s ease;
}

.plan-btn:hover {
  background: #ffc107;
  color: #000;
  box-shadow: 0 0 20px rgba(0,255,156,0.7);
}
/* ================= COMMON VIDEO BACKGROUND ================= */
.section-video,
.transparency-section {
  position: relative;
  overflow: hidden;
  background: #000;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
}

/* ================= BLOCKCHAIN FEATURES ================= */
.blockchain-features-section .container {
  z-index: 3;
}

.features-title {
  font-weight: 700;
  font-size: 36px;
}

.features-subtitle {
  color: #9ca3af;
  max-width: 600px;
  margin: auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 35px 25px;
  color: #fff;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}

/*.feature-card:hover {*/
/*  transform: translateY(-10px);*/
/*  box-shadow: 0 0 30px rgba(0, 255, 156, 0.35);*/
/*}*/
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgb(255, 193, 7);
}


.feature-icon {
  font-size: 38px;
  color: #ffc107;
  margin-bottom: 15px;
}

/* ================= HOW BLOCKCHAIN WORKS ================= */
.blockchain-work-section {
  background: linear-gradient(180deg, #020617, #000);
}

.work-card {
  background: #0b1220;
  border-radius: 18px;
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.work-card:hover {
  transform: translateY(-8px);
 box-shadow: 0 0 25px rgb(255, 193, 7);
}

.work-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffc107, #141004);
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

/* ================= CONTACT SECTION ================= */
#contact {
  background: #000;
}

.contact-box {
  background: #000;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #222;
  transition: all 0.3s ease;
}

.contact-box:hover {
  box-shadow: 0 0 40px rgba(255,255,255,0.15);
}

.contact-img {
  max-height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.form-control {
  background: #000;
  border: 1px solid #444;
  color: #fff;
}

.form-control:focus {
  border-color: #ffc107;
  box-shadow: none;
}

/* ================= TRANSPARENCY ================= */
.transparency-list li {
  margin-bottom: 10px;
  color: #cbd5f5;
}

.transparency-list i {
  color: #ffc107;
}

.transparency-box {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.transparency-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgb(255, 193, 7);
}

.transparency-img {
  max-height: 220px;
  object-fit: contain;
}

/* ================= FOOTER ================= */
.footer-section {
  background: #020617;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffc107;
}

.social-icons a {
  color: #9ca3af;
  font-size: 18px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #ffc107;
}

.footer-line {
  border-color: rgba(255,255,255,0.1);
}

/* ================= SCROLL TOP ================= */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ffc107;
  border: none;
  color: #000;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.scroll-top-btn:hover {
  box-shadow: 0 0 20px rgba(0,255,156,0.8);
}

/* ===== TRANSPARENCY ===== */
.transparency-section {
  min-height: 100vh;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(2px);
}

.transparency-list {
  list-style: none;
  padding: 0;
}

.transparency-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #e0e0e0;
}

.transparency-list i {
  color: #ffc107;
  margin-right: 8px;
}

.verify-btn {
  background: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  transition: all .3s ease;
}

.verify-btn:hover {
  background: #ffc107;
  color: #000;
  box-shadow: 0 0 25px rgba(0,255,156,.7);
}

.transparency-box {
  background: rgba(0,0,0,0.6);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255,255,255,0.05);
}

.transparency-img {
  max-height: 280px;
  border-radius: 12px;
}

/* ===== FOOTER ===== */
.footer-section {
  background: #000;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffc107;
}

.social-icons a {
  color: #aaa;
  margin-right: 12px;
  font-size: 18px;
}

.social-icons a:hover {
  color: #ffc107;
}

.footer-line {
  border-color: #222;
}

.scroll-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #ffc107;
  color: #000;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  display: none;
}

.bg-dark{
    background-color: #020617;
}
.hero-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

.hero-content{
  z-index: 3;
}
.hero-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

.hero-content{
  z-index: 3;
}
