* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;

}

html {
  width: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
}


body {
  background: #fff;
  color: #111;
}

/* ================= BACK ================= */

.cm-breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 40px;
  /* image madhiri spacing */
  border-bottom: 1px solid #ececec;
}

/* ===== BACK ICON ===== */
.cm-back-btn {
  color: #444;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
}

.cm-back-btn:hover {
  color: #333;
  /* light dark */
}

/* ===== BREADCRUMB ===== */
.cm-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 17px;
  font-weight: 600;
}

/* LINKS (Home, Services) */
.cm-breadcrumb-link {
  color: #444;
  /* image-la irukura grey */
  text-decoration: none;
  transition: color 0.25s ease;
}

.cm-breadcrumb-link:hover {
  color: #333;
  /* light dark on hover */
}

/* SLASH */
.cm-breadcrumb-sep {
  color: #c2c2c2;
  font-size: 15px;
}

/* CURRENT PAGE */
.cm-breadcrumb-active {
  color: #1f6bff;
  /* exact blue tone */
  font-weight: 600;
}

/* Next section */
.whitepaper-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #059669 0%, #047857 45%, #065f5b 100%);
}

.whitepaper-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #047857;
}

.icon-box i {
  font-size: 34px;
}

.whitepaper-container h1 {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.whitepaper-container h2 {
  font-size: 30px;
  font-weight: 600;
  color: #d1fae5;
  margin-bottom: 26px;
}

.whitepaper-container p {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.7;
  color: #e5fef4;
}

.info-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.info-card {
  min-width: 450px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 20px 26px;
  text-align: center;
  border: 1px solid #047857;
}

.info-card .label {
  display: block;
  font-size: 14px;
  color: #bbf7d0;
  margin-bottom: 6px;
}

.info-card strong {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whitepaper-container h1 {
    font-size: 40px;
  }

  .whitepaper-container h2 {
    font-size: 22px;
  }

  .info-card {
    min-width: 100%;
  }
}

/* ===== Whitepaper fade animation base ===== */
.whitepaper-container>* {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* visible state */
.whitepaper-container>*.show {
  opacity: 1;
  transform: translateY(0);
}

/* Next section */
.featured-whitepapers {
  padding: 60px 20px;
  background: #ffffff;
}

.fw-container {
  max-width: 1200px;
  margin: 0 auto;
}

.fw-container h1 {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.fw-subtitle {
  text-align: center;
  color: #475569;
  margin-bottom: 50px;
  font-size: 18px;
}

.whitepaper-card {
  background: #f7fafc;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
}

.whitepaper-card h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.meta-paper {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
  color: #334155;
  font-size: 16px;
}

.meta-paper i {
  margin-right: 6px;
  color: #059669;
  font-size: 16px;
  font-weight: 800;
}

.badge {
  background: #e0edff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.badge.purple {
  background: #ede0ff;
  color: #4c1d95;
}

.badge.green {
  background: #e0ffea;
  color: #059669;
}

.whitepaper-card h3 {
  margin-top: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.whitepaper-h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.summary-paper {
  margin-top: 10px;
  line-height: 1.7;
  color: #334155;
  font-size: 16px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  margin-top: 35px;
}


.inside-h4 {
  font-size: 7px;
  font-weight: 500;
  margin-bottom: 12px;
}

.box-h4-blue {
  color: #2563eb;
  font-size: 14px;
  margin-bottom: 12px;
}

.box-h4-green {
  color: #059669;
  font-size: 14px;
  margin-bottom: 12px;
}

.box-h4-purple {
  color: #4c1d95;
  font-size: 14px;
  margin-bottom: 12px;
}

.box-h4-red {
  color: #7f1d1d;
  font-size: 14px;
  margin-bottom: 12px;
}

.box-h4-orange {
  color: #9a3412;
  font-size: 14px;
  margin-bottom: 12px;
}

.inside ul,
.box ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.inside li {
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  gap: 10px;
  text-align: justify;
  line-height: 1.3;
  /* width:500px; */
}

.inside ul li span {
  color: #059669;
  font-weight: 500;
  font-size: 14px;
  width: 80px;
}

.box {
  padding: 24px;
  border-radius: 14px;
}

.box.blue {
  background: linear-gradient(135deg, #eff6ff, #e0ecff);
  border: 1px solid #bfdbfe;
}

.box.green {
  background: linear-gradient(135deg, #ecfdf5, #dcfce7);
  border: 1px solid #bbf7d0;
}

.box.purple {
  background: linear-gradient(135deg,
      #ffffff 0%,
      #d4cef5 45%,
      #ede9fe 100%);

  border: 1px solid #f5f3ff;
}

.box.purple ul li i {
  color: #4c1d95;

}

.box.red {
  background: linear-gradient(135deg,
      #ffffff 0%,
      #ffe5e5 45%,
      #fee2e2 100%);


  border: 1px solid #fef2f2;
}

.box.red ul li i {
  color: #7f1d1d;

}

.box.orange {
  background: linear-gradient(135deg,
      #ffffff 0%,
      #fff7ed 45%,
      #ffedd5 100%);
  border: 1px solid #fff7ed;
}

.box.orange ul li i {
  color: #9a3412;


}

.box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
}

.box.blue i {
  color: #2563eb;
}

.box.green i {
  color: #16a34a;
}

.cta {
  margin-top: 40px;
  text-align: center;
}

.cta button {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cta.green button {
  background: linear-gradient(135deg, #16a34a, #059669);
}

.cta.green button:hover {
  background: #128b3d;
  /* light white shade */
  color: #ffffff;
}

.cta.purple button {
  background: linear-gradient(135deg,
      #6d28d9,
      #5b21b6);
  color: #ffffff;
  border: 1px solid #5b21b6;

}

.cta.purple button:hover {
  background: linear-gradient(135deg,
      #5b21b6,
      #4c1d95);
  color: #ffffff;
}

.cta.red button {
  background: linear-gradient(135deg,
      #dc2626,
      #b91c1c);
  color: #ffffff;
  border: 1px solid #b91c1c;
}

.cta.red button:hover {
  background: linear-gradient(135deg,
      #b91c1c,
      #7f1d1d);
  color: #ffffff;
}

.cta.orange button {
  background: linear-gradient(135deg,
      #f97316,
      #ea580c);
  color: #ffffff;
  border: 1px solid #ea580c;
}

.cta.orange button:hover {
  background: linear-gradient(135deg,
      #ea580c,
      #c2410c);

  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Card animation base ===== */
.whitepaper-card {
  opacity: 0;
  transform: translateY(-80px);
  transition:
    opacity 1s ease,
    transform 1s ease,
    box-shadow 0.3s ease;
}

/* visible */
.whitepaper-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CTA button hover ===== */
.cta button {
  transition: background 0.3s ease;
}

.cta button i:last-child {
  transition: transform 0.3s ease;
}

/* hover effect */
.cta button:hover {
  background: #51a2f4;
  /* light white shade */
  color: #ffffff;
}

.cta button:hover i:last-child {
  transform: translateX(6px);
}


/* Next section */
.browse-category {
  background: #f7fafc;
  padding: 60px 20px;
}

.browse-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.browse-container h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 18px;
  color: #475569;
  margin-bottom: 70px;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 180px;
  text-align: left;
}

.filter-box {
  min-width: 260px;
}

.filter-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 20px;
}

.filter-title i {
  font-size: 18px;
}

.filter-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-box li {
  font-size: 16px;
  color: #334155;
  margin-bottom: 15px;
  cursor: pointer;
}

.filter-box li:hover {
  color: #2563eb;
}

.filter-box li {
  padding: 10px 10px;
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease;
}

.filter-box li:hover {
  background: #ecfdf5;
  /* light green shade */
  color: #16a34a;
  /* light green text */
}

/* Next Section */
.download-process {
  background: #ffffff;
  padding: 60px 0;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.process-container h2 {
  font-size: 40px;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.process-container .subtitle {
  font-size: 18px;
  color: #475569;
  margin-bottom: 80px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 90px;
}

.step {
  max-width: 180px;
}

.icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  background: #0f9d8f;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap i {
  font-size: 28px;
  color: #ffffff;
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ffffff;
  color: #0f9d8f;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0f9d8f;
}

.step h4 {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
  color: #475569;
  line-height: 1.5;
}

.privacy {
  margin-top: 40px;
  font-size: 14px;
  color: #64748b;
}

/* Base hidden state */
.step {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* When visible */
.step.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Icon animation */
.icon-wrap {
  transform: scale(0.6);
  transition: transform 0.8s ease;
}

.step.show .icon-wrap {
  transform: scale(1);
}

/* Small pulse for number */
.step-number {
  transform: scale(0);
  transition: transform 0.6s ease;
}

.step.show .step-number {
  transform: scale(1);
}


/* Next section */
.custom-section {
  padding: 60px 20px;
}

.custom-card {
  max-width: 900px;
  margin: auto;
  background: linear-gradient(180deg, #009c9c, #007f86);
  color: white;
  border-radius: 24px;
  padding: 70px 60px;
  text-align: center;
}

.chat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin: auto;
}

.custom-card h2 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 25px 0 10px;
}

.custom-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.custom-card p {
  font-size: 16px;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

.custom-card h5 {
  margin: 40px 0 25px;
  letter-spacing: 1px;
  font-size: 16px;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  max-width: 700px;
  margin: auto;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  padding: 10px 0;
  font-size: 16px;
}

.cta-btn {
  margin-top: 45px;
  padding: 16px 34px;
  background: white;
  color: #007f86;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* Base hidden state */
.fade-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* Visible state */
.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Next Section */
.cta-section {
  padding: 60px 20px;
  background: radial-gradient(circle at top,
      #1f2f46 0%,
      #0f1d33 55%,
      #081426 100%);
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 900px;
  margin: auto;
}

.cta-content h2 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto 50px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-white {
  background: white;
  color: #0f172a;
}

.btn-white:hover {
  transform: translateY(-2px);
}

.btn-green {
  background: #0ea5a4;
  color: white;
}

.btn-green:hover {
  background: #08908f;
  transform: translateY(-2px);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 15px;
}

.cta-link:hover {
  color: white;
}

/* arrow smooth move */
.btn i {
  transition: transform 0.3s ease;
}

/* hover panna arrow mattum move */
.btn-white:hover i {
  transform: translateX(6px);
}