.elementor-7924 .elementor-element.elementor-element-c623e43{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1b123b4 */@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;500;600;700;800;900&display=swap');

:root {
  --green: #12634d;
  --green-light: #e8f5ef;
  --green-mid: #249875;
  --dark: #173d32;
  --text: #263d36;
  --muted: #687a73;
  --cream: #faf7ef;
  --gold: #d99a3e;
  --line: #dce9e3;
  --white: #ffffff;
  --orange-light: #fff4e5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #e8eeea;
  color: var(--text);
  font-family: "Noto Sans Bengali", sans-serif;
  line-height: 1.8;
}

.ebook {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.page {
  position: relative;
  min-height: 1120px;
  background: var(--white);
  margin: 25px 0;
  padding: 75px 75px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(23, 61, 50, 0.08);
}

.page::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -140px;
  top: -140px;
  background: var(--green-light);
}

.page > * {
  position: relative;
  z-index: 2;
}

.cover {
  min-height: 1120px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 60, 45, .98), rgba(21, 125, 91, .95)),
    url("cover.jpg") center/cover;
  color: white;
  padding: 90px;
}

.cover::before {
  width: 550px;
  height: 550px;
  right: -220px;
  top: -180px;
  background: rgba(255,255,255,.07);
}

.cover::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  left: -180px;
  bottom: -150px;
  background: rgba(255,255,255,.05);
}

.cover-content {
  max-width: 700px;
}

.badge {
  display: inline-block;
  padding: 7px 15px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.cover h1 {
  margin: 30px 0 20px;
  font-size: 70px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -2px;
}

.cover h1 span {
  color: #e1f2b9;
}

.subtitle {
  max-width: 650px;
  font-size: 22px;
  line-height: 1.7;
}

.cover-cards {
  display: flex;
  gap: 15px;
  margin-top: 45px;
}

.cover-cards div {
  width: 150px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.cover-cards strong {
  display: block;
  font-size: 28px;
}

.cover-cards span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}

.cover-footer {
  margin-top: 45px;
  font-size: 13px;
  opacity: .8;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--green-mid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

h2 {
  margin: 0 0 28px;
  font-size: 40px;
  line-height: 1.35;
  font-weight: 900;
  color: var(--dark);
}

h3 {
  margin: 5px 0 8px;
  font-size: 20px;
  line-height: 1.45;
}

p {
  font-size: 16px;
}

.small {
  font-size: 12px;
  color: var(--muted);
}

.highlight,
.note,
.warning {
  margin: 30px 0;
  padding: 20px 23px;
  border-radius: 15px;
  background: var(--green-light);
  border-left: 5px solid var(--green);
}

.note {
  background: var(--cream);
}

.warning {
  background: var(--orange-light);
  border-left-color: var(--gold);
}


/* QUESTION GRID */

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 35px 0;
}

.question {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fbfdfc;
  font-size: 28px;
}

.question h3 {
  font-size: 20px;
}

.question p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}


/* PROBLEMS */

.problem-list {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.problem {
  display: flex;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.problem > span {
  min-width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 800;
}

.problem p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

blockquote {
  margin: 35px 0;
  padding: 25px 30px;
  border-radius: 16px;
  background: var(--cream);
  font-size: 22px;
  font-weight: 700;
}


/* PROCESS */

.process {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 55px 0;
}

.process-step {
  flex: 1;
  padding: 20px 10px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.circle {
  width: 45px;
  height: 45px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 800;
}

.process-step p {
  color: var(--muted);
  font-size: 12px;
}

.arrow {
  font-size: 24px;
  color: var(--green);
}


/* OPPORTUNITY */

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.opportunity {
  padding: 25px;
  border-radius: 17px;
  border: 1px solid var(--line);
}

.opportunity strong {
  font-size: 30px;
}

.opportunity p {
  color: var(--muted);
  font-size: 14px;
}


/* CHART */

.market-chart {
  margin-top: 45px;
  padding: 25px;
  border-radius: 18px;
  background: var(--cream);
}

.chart-row {
  display: grid;
  grid-template-columns: 120px 1fr 50px;
  align-items: center;
  gap: 12px;
  margin: 17px 0;
  font-size: 13px;
}

.bar {
  height: 17px;
  border-radius: 100px;
  background: var(--green);
}

.bar-100 {
  width: 100%;
}

.bar-60 {
  width: 60%;
}

.bar-35 {
  width: 35%;
}

.bar-20 {
  width: 20%;
}


/* SERVICE */

.service-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service {
  padding: 25px;
  border-radius: 18px;
  background: #fbfdfc;
  border: 1px solid var(--line);
}

.service-number {
  color: var(--green-mid);
  font-weight: 900;
  font-size: 13px;
}

.service p {
  color: var(--muted);
  font-size: 14px;
}


/* TEAM */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.team-grid > div {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.team-grid span {
  font-size: 28px;
}

.team-grid p {
  color: var(--muted);
  font-size: 14px;
}


/* SESSION */

.session {
  display: grid;
  gap: 10px;
  margin: 35px 0;
}

.session div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 17px 20px;
  border-radius: 12px;
  background: var(--green-light);
}

.session strong {
  color: var(--green);
}


/* PRICING */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 35px 0;
}

.price-card {
  padding: 25px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.price-card.featured {
  background: var(--dark);
  color: white;
  transform: translateY(-8px);
}

.price-card > span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.price-card strong {
  display: block;
  margin: 18px 0;
  font-size: 21px;
}

.price-card ul {
  padding-left: 20px;
  font-size: 13px;
}


/* COST */

.cost-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cost-list > div {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.cost-list span {
  font-size: 25px;
}

.cost-list p {
  margin: 0;
}

.cost-list b {
  color: var(--green);
  font-size: 12px;
}

.formula,
.revenue-equation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
  padding: 25px;
  margin-top: 35px;
  background: var(--cream);
  border-radius: 16px;
  font-weight: 700;
}


/* ROADMAP */

.roadmap {
  display: grid;
  gap: 18px;
}

.road {
  position: relative;
  padding: 23px 25px;
  border-left: 4px solid var(--green);
  background: #fbfdfc;
  border-radius: 0 15px 15px 0;
}

.road strong {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 1px;
}

.road p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}


/* FUNNEL */

.funnel {
  display: grid;
  gap: 10px;
  margin: 30px 0;
}

.funnel-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 20px;
  background: var(--green-light);
  border-radius: 13px;
}

.funnel-item span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 800;
}

.funnel-item p {
  margin: 0;
}

.content-box {
  padding: 25px;
  border-radius: 17px;
  background: var(--dark);
  color: white;
}

.content-box p {
  font-size: 16px;
}


/* MARKETING */

.marketing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.marketing-grid > div {
  padding: 25px;
  border-radius: 17px;
  background: #fbfdfc;
  border: 1px solid var(--line);
}

.marketing-grid p {
  color: var(--muted);
  font-size: 14px;
}


/* TABLE */

table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  padding: 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--green-light);
  font-weight: 800;
}


/* PROS CONS */

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros,
.cons {
  padding: 28px;
  border-radius: 18px;
}

.pros {
  background: var(--green-light);
}

.cons {
  background: var(--orange-light);
}

.pros h3,
.cons h3 {
  font-size: 25px;
}

.pros li,
.cons li {
  margin: 10px 0;
  font-size: 14px;
}


/* REVENUE */

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.revenue-grid > div {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.revenue-grid strong {
  color: var(--green-mid);
  font-size: 25px;
}

.revenue-grid p {
  color: var(--muted);
  font-size: 13px;
}


/* TIMELINE */

.timeline {
  border-left: 3px solid var(--green);
  padding-left: 28px;
}

.timeline > div {
  padding: 5px 0 28px;
}

.timeline strong {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 1px;
}

.timeline p {
  color: var(--muted);
}


/* SCALE */

.scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 40px 0;
}

.scale div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 15px;
  border-radius: 15px;
  background: var(--green-light);
}

.scale span {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.scale strong {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}


/* QUOTE */

.big-quote,
.final-quote {
  margin-top: 45px;
  padding: 30px;
  border-radius: 18px;
  background: var(--cream);
  font-size: 25px;
  line-height: 1.6;
  font-weight: 800;
  text-align: center;
}

.three-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 35px 0;
}

.three-pillars div {
  padding: 25px;
  text-align: center;
  border-radius: 15px;
  border: 1px solid var(--line);
}

.three-pillars strong,
.three-pillars span {
  display: block;
}

.three-pillars strong {
  color: var(--green);
}


/* CHECKLIST */

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checklist label {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdfc;
  font-size: 14px;
}


/* CTA */

.cta {
  min-height: 1120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 35%),
    linear-gradient(145deg, #0a4937, #188263);
}

.cta::before {
  width: 600px;
  height: 600px;
  right: -280px;
  top: -250px;
  background: rgba(255,255,255,.07);
}

.cta .eyebrow {
  color: #dff1b9;
}

.cta h2 {
  max-width: 700px;
  color: white;
  font-size: 45px;
}

.cta p {
  max-width: 650px;
  font-size: 18px;
}

.cta-circle {
  width: 115px;
  height: 115px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.45);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  margin-top: 25px;
  padding: 16px 55px;
  border-radius: 100px;
  background: white;
  color: var(--green);
  text-decoration: none;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: .25s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0,0,0,.25);
}

.cta-bottom {
  margin-top: 50px;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: .65;
}


/* RESPONSIVE */

@media (max-width: 700px) {

  .page {
    min-height: auto;
    padding: 50px 28px;
    margin: 10px 0;
  }

  .cover {
    min-height: 850px;
    padding: 50px 28px;
  }

  .cover h1 {
    font-size: 48px;
  }

  .subtitle {
    font-size: 18px;
  }

  .cover-cards {
    flex-wrap: wrap;
  }

  .cover-cards div {
    width: calc(50% - 10px);
  }

  h2 {
    font-size: 31px;
  }

  .question-grid,
  .opportunity-grid,
  .service-table,
  .team-grid,
  .pricing-grid,
  .cost-list,
  .marketing-grid,
  .pros-cons,
  .revenue-grid,
  .checklist {
    grid-template-columns: 1fr;
  }

  .process {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }

  .process-step {
    width: 100%;
  }

  .scale {
    grid-template-columns: 1fr 1fr;
  }

  .three-pillars {
    grid-template-columns: 1fr;
  }

  .session div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .chart-row {
    grid-template-columns: 85px 1fr 40px;
  }

  .cta h2 {
    font-size: 34px;
  }

  table {
    font-size: 11px;
  }

  th,
  td {
    padding: 9px;
  }
}


/* PRINT */

@media print {

  body {
    background: white;
  }

  .page {
    margin: 0;
    box-shadow: none;
    page-break-after: always;
  }

  .cover,
  .cta {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  @page {
    size: A4;
    margin: 0;
  }
}/* End custom CSS */