.whitepaper-section {
    background: #000;
    color: #fff;
    background-image: url('/images/cardentbg.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
   
    padding-top: 120px !important;

    overflow-x: hidden;
  }
  /* Glass Intro Box */
.intro-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(255, 237, 0, 0.3);
}

/* Overlay */
.content-wrapper {
  max-height: 100vh;   /* limit height */
  overflow-y: auto;    /* make it scrollable */
  padding-right: 1rem;
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #FFED00 #000;
}

/* Chrome, Edge, Safari */
.content-wrapper::-webkit-scrollbar {
  width: 10px;   /* scrollbar width */
}

.content-wrapper::-webkit-scrollbar-track {
  background: #000;   /* black background */
}

.content-wrapper::-webkit-scrollbar-thumb {
  background-color: #FFED00;  /* yellow thumb */
  border-radius: 6px;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #FFED00, #FFD700);
  border: none;
  color: black;
}
.btn-primary i { margin-left: 5px; }
.btn-primary:hover{
  color: #000;
}
.btn-outline-light { border: 1px solid #fff; color: #fff; }
.btn-outline-light i { margin-left: 5px; }

/* TOC Box */
.toc-box {
  background: linear-gradient(135deg, rgba(60, 60, 10, 0.85), rgba(20, 20, 5, 0.85));
  backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 28px 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(255, 237, 0, 0.35);
  transition: all 0.3s ease;
}
.toc-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 237, 0, 0.5);
}

/* Title */
.toc-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff8cc;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}
.toc-title i {
  font-size: 1.1rem;
  color: #000;
  background: linear-gradient(135deg, #FFED00, #FFD700);
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(255, 237, 0, 0.5);
}

/* List */
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc-list li {
  margin-bottom: 14px;
}

/* TOC Links */
.toc-link {
  color: #fff6b3;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: 14px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}
.toc-link i {
  font-size: 0.9rem;
  color: #FFED00;
  transition: all 0.3s ease;
}

/* Hover & Active */
.toc-link:hover,
.toc-link.active {
  background: linear-gradient(135deg, #FFED00, #FFD700);
  color: #000;
  box-shadow: 0 6px 20px rgba(255, 237, 0, 0.45);
}
.toc-link:hover i,
.toc-link.active i {
  color: #000;
  transform: translateX(4px);
}

/* Active glowing bar */
.toc-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #fff9b0, #FFED00);
  box-shadow: 0 0 12px rgba(255, 237, 0, 0.6);
}

/* Glass Cards for sections */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  position: relative;
  border: 1px solid rgba(255, 237, 0, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(255, 237, 0, 0.25);
}

/* Floating Section Numbers */
.section-floating-number {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #FFED00, #FFD700);
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(255, 237, 0, 0.5);
}

@media (max-width:768px){
  .section-floating-number {
    position: absolute;
    top: -15px;
    right: 0px;
  }
}

/* Section Headings */
.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff5a0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Token Cards inside sections */
.token-card-square {
  width: 150px;
  height: 150px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FFED00, #FFD700);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 237, 0, 0.5);
  transition: all 0.3s ease;
  text-align: center;
  padding: 15px;
}
.token-card-square i {
  margin-bottom: 10px;
  color: #000;
}
.token-card-square:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 237, 0, 0.7);
}
.token-card-square .token-label {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 5px;
  background: rgba(255, 255, 255, 0.35);
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}






 /* Wrapper */
.vision-mission-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Connecting line between Vision & Mission */
.vm-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 50px);
  height: 2px;
  background: linear-gradient(90deg, #fff8dc, #FFED00, #ffd700);
  z-index: 0;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Vision & Mission Cards */
.vision-mission-card {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(255, 237, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 237, 0, 0.6);
}

/* Background gradient inside card */
.vm-bg-gradient {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: linear-gradient(
    135deg,
    rgba(255, 237, 0, 0.35),
    rgba(255, 215, 0, 0.25),
    rgba(255, 255, 0, 0.2)
  );
  transform: rotate(-10deg);
  z-index: 0;
  border-radius: 25px;
  filter: blur(35px);
}

/* Icon */
.vm-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFED00;
  font-size: 1.5rem;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(255, 237, 0, 0.5);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.vision-mission-card:hover .vm-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 237, 0, 0.7);
}

/* Title */
.vm-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff8dc;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #ffed00, #ffd700, #fff8dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

/* Paragraph */
.vision-mission-card p {
  color: #f9f9e6;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
  .vision-mission-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  /* Make connector vertical instead of horizontal */
  .vm-connector {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #fff8dc, #FFED00, #ffd700);
  }

  .vision-mission-card {
    flex: 1 1 100%;
    width: 100%;
    max-width: 500px;
    text-align: center;
    align-items: center;
  }
}















.problem-card {
  background: linear-gradient(135deg, rgba(255, 237, 0, 0.1), rgba(255, 215, 0, 0.05));
  border-radius: 20px;
  padding: 25px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(255, 237, 0, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 237, 0, 0.4);
}

/* Icon Circle */
.pc-icon-pill {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFED00, #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.8rem;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(255, 237, 0, 0.4);
}

/* Title */
.pc-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff8dc;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.07);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 237, 0, 0.25);
}

/* List */
.pc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pc-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  box-shadow: 0 0 12px rgba(255, 237, 0, 0.15);
}

.pc-list li:hover {
  background: rgba(255, 237, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 237, 0, 0.3);
  transform: scale(1.03);
}

/* Icon before each list item */
.pc-list li::before {
  content: "\f00c"; /* FA Check */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFED00, #FFD700);
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 237, 0, 0.4);
}









/* Solution Cards */
.solution-card {
  background: linear-gradient(135deg, rgba(60, 60, 20, 0.45), rgba(30, 30, 10, 0.25));
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  color: #fff;
  min-width: 250px;
  max-width: 280px;
  flex: 1;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,237,0,0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255,237,0,0.25);
  border-color: rgba(255,237,0,0.6);
}

.sc-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFED00, #FFD700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 15px;
  color: #000;
  box-shadow: 0 4px 15px rgba(255,215,0,0.45);
}

.sc-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff4a3;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.08);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
}

.sc-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ddd;
  margin: 0;
}

/* Token Specifications Cards */
.spec-card {
  background: linear-gradient(135deg, rgba(255,237,0,0.15), rgba(255,193,7,0.1));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px 20px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  color: #fff;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(255,237,0,0.25);
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(255,237,0,0.35);
}

.spec-card h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff38b;
  margin-bottom: 6px;
}

.spec-card p {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* Distribution Box */
.distribution-box {
  background: linear-gradient(135deg, rgba(40,40,10,0.6), rgba(20,20,0,0.45));
  border: 1px solid rgba(255,237,0,0.25);
  border-radius: 18px;
  padding: 25px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(255,237,0,0.25);
}

.distribution-box h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff6b3;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.distribution-list{
  padding-left: 0px !important;
}

.distribution-list li {
  background: rgba(255,255,255,0.07);
  border-radius: 50px;
  padding: 10px 18px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
  transition: all 0.2s ease;
 margin-top: 5px;

}

.distribution-list li:hover {
  background: rgba(255,237,0,0.25);
}

.distribution-list .percent {
  font-weight: 700;
  color: #FFED00;
}

/* Chart Placeholder */
.chart-placeholder {
  width: 100%;
  height: 300px;
  border-radius: 18px;
  color: rgba(255,255,255,0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  flex: 1;
  min-width: 500px;
  text-align: center;
  /* background: linear-gradient(135deg, rgba(60,60,20,0.2), rgba(20,20,5,0.2));
  box-shadow: inset 0 0 25px rgba(255,237,0,0.1); */
}

.chart-placeholder i {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #FFED00;
}

.chart-placeholder img {
  max-width: 100%;
  border-radius: 16px;
}
  












/* Grid Layout: 2 by 2 */
.utility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media (max-width: 768px) {
  .utility-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility Cards */
.utility-card {
  border-radius: 20px;
  background: linear-gradient(135deg, #FFED00, #FFD700, #FFB347);
  color: #000;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 28px rgba(255, 215, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.utility-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 38px rgba(255, 215, 0, 0.55);
}

/* Utility Icon */
.utility-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #aaffb0;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Headings */
.utility-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.utility-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
}

/* Content */
.utility-content h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.utility-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
}

/* ---------------- Roadmap ---------------- */
/* Vertical connecting line */
.roadmap-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25%;
  width: 4px;
  background: linear-gradient(180deg, #FFED00, #FFD700, #FFB347);
  z-index: 1;
  border-radius: 4px;
  transform: translateX(-50%);
}

/* Each step */
.roadmap-step {
  text-align: center;
  position: relative;
  max-width: 320px;
  margin: 40px 0;
  z-index: 2;
}

/* Circle icons */
.roadmap-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FFED00, #FFD700, #FFB347);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
}

/* Optional: add spacing between line and cards if needed */
.roadmap-content {
  background: linear-gradient(135deg, rgba(40, 40, 0, 0.85), rgba(80, 60, 0, 0.75));
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
  color: #fff;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}


/* Responsive */
@media (max-width: 768px) {
  .roadmap-timeline {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  /* Vertical line */
  .roadmap-timeline::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FFED00, #FFD700, #FFB347);
  }

  .roadmap-step {
    max-width: 100%;
    padding: 0;
  }

  .roadmap-circle {
    margin-bottom: 15px;
  }

  .roadmap-content {
    height: auto;
    text-align: center;
  }
}
