/* =========================================================
   ROOT & RESET
   ========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Istok+Web:wght@400;700&display=swap");
.page-wrapper {
  overflow: hidden;
}
:root {
  /* Brand Colors */
  --color-orange: #ea6e02;
  --color-orange-dark: #d0621f;
  --color-olive: #a9cd40;
  --color-light-green: rgba(169, 205, 64, 0.43);
  --color-dark-green: #a9cd40ab;
  --color-olive-dark: #9fb02d;
  --color-teal: #3dbab0;
  --color-teal-dark: #2e9e95;
  --color-teal-deep: #287f78;
  --color-green: #8dc63f;
  --color-green-dark: #75a930;
  --color-eligible-bg: #59cbdd;
  --color-blue: #59cbdd;
  --color-partner-bg: #a9cd40;
  --color-gray-cover: #8a8a8a;
  --color-step-1: #6badc8;
  --color-step-2: #4d8db8;
  --color-step-3: #306e9e;
  --color-step-4: #1a4e85;
  --color-dark-text: #848688;
  --color-body-text: #444444;
  --color-light-text: #ffffff;
  --color-gray-text: #6d6e71;
  --color-cta-overlay: rgba(30, 50, 60, 0.72);

  /* Spacing */
  --section-pad-v: 40px;
  --container-max: 1200px;

  /* Typography */
  --font-family: "Istok Web", sans-serif;
}
.text-white {
  color: #fff !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mt-1 {
  margin-top: 10px !important;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body-text);
  background: #ffffff;
  overflow-x: hidden;
}
/* =========================================================
   UTILITY
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(26px, 3.9vw, 56px);
  font-weight: 700;
  color: #000000;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 0;
  letter-spacing: -1.9px;
  font-family: var(--font-family);
}
.version-2 .section-title{
     margin-bottom: 36px;
}
.section-title.has-orange-text {
  color: var(--color-orange);
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
     left: -10vw;
    width: 40.7vw;
  height: 3px;
  background: var(--color-orange);
  border-radius: 0;
}
.section-title.text-white::after {
  background-color: #fff;
}
.section-title.has-orange-text::after {
  background-color: var(--color-orange);
}
/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary {
  display: inline-block;
  background: var(--color-orange);
  color: #ffffff;
  font-family: var(--font-family);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: 0.08em;
      padding: 15px 25px 10px;
  border-radius: 28px;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
  outline: none !important;
  z-index: 10;
  position: relative;
    letter-spacing: -0.3px;
}

.btn-primary:hover {
  background: var(--color-orange-dark);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section .color-bar {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.hero-section .color-bar span {
  width: 38px;
  flex: 1;
}
.color-bar .orange-bg {
  background-color: var(--color-orange);
}
.color-bar .green-bg {
  background-color: var(--color-olive);
}
.color-bar .blue-bg {
  background-color: var(--color-eligible-bg);
}
.hero-section {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  min-height: 520px;
  position: relative;
  padding: 114px 0 174px;
}

.hero-section .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hero-section .bg-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.version-2 .hero-section .bg-image img {
  object-position: 60px top;
  transform: scale(1.1);
}
.hero-content {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  padding: 60px 40px 60px 60px;
  position: relative;
}
.hero-text-block {
  max-width: 85%;
  position: relative;
}
.version-2 .hero-text-block{
max-width: 90%;
}
.hero-title {
  font-size: clamp(38px, 5.42vw, 78px);
  font-weight: 700;
  color: #000;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -2.8px;
  line-height: 1.1;
  font-family: var(--font-family);
}
.hero-title-highlight {
  display: block;
  color: var(--color-orange);
}
.hero-subtitle {
 font-size: clamp(22px, 2.85vw, 41px);
  font-weight: 400;
  color: #000;
  line-height: 1.3;
  margin-bottom: 16px;
}
.hero-subtitle strong {
  font-weight: 700;
}
.hero-description {
  font-size: clamp(16px, 3vw, 26px);
  color: #000;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* =========================================================
   FUNDING SECTION
   ========================================================= */
.funding-section {
  padding: var(--section-pad-v) 0 48px;
  background: #ffffff;
  position: relative;
}

.funding-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  overflow: hidden;
  margin-bottom: 22px;
  padding: 0 14px;
}

.funding-card {
      padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.funding-card--olive {
  background: var(--color-light-green);
      color: rgb(0 0 0 / 50%);
}

.funding-card--teal {
  background: var(--color-dark-green);
  color: #ffffff;
}

.funding-card--dark-teal {
  background: var(--color-olive);
  color: #ffffff;
}

.funding-card-label {
  font-size: clamp(20px, 4vw, 32px);
  margin-bottom: 4px;
}

.funding-card-amount {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.funding-card--olive .funding-card-number {
  font-size: clamp(50px, 8vw, 93px);
  font-weight: 900;
  line-height: 1;
      color: rgb(0 0 0 / 50%);
  letter-spacing: -8px;
}

.funding-card--olive .funding-card-unit {
  font-size: clamp(35px, 5vw, 53px);
  font-weight: 900;
      color: rgb(0 0 0 / 50%);
  margin-top: 8px;
}

.funding-card--teal .funding-card-number,
.funding-card--dark-teal .funding-card-number {
  font-size: clamp(50px, 8vw, 93px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -8px;
}

.funding-card-currency {
  font-size: clamp(35px, 5vw, 45px);
  font-weight: 900;
  color: #ffffff;
  margin-top: 6px;
  line-height: 1;
}

.funding-card--dark-teal .funding-card-number {
  font-size: clamp(50px, 7vw, 78.6px);
}

.funding-card-desc {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.funding-card--olive .funding-card-desc {
      color: rgb(0 0 0 / 50%);
}

.funding-example {
  font-size: clamp(18px, 3vw, 23.5px);
  color: #000;
  line-height: 1.6;
  letter-spacing: -0.4px;
  margin: 0 11px;
}

.funding-example strong {
  font-weight: 700;
  color: #000;
}

/* =========================================================
   COVERS SECTION
   ========================================================= */
.covers-section {
  padding: var(--section-pad-v) 0;
  background: #ffffff;
}

.covers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  overflow: hidden;
}
.covers-grid .covers-card-outer{
      padding: 40px 0;
}
.covers-card {
  padding: 10px 32px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 100px 100px 0;
  margin-bottom: 14px;
}

.covers-card--teal {
  background: var(--color-teal);
}
.covers-card--gray {
  background-color: #b2b2b2;
}
.covers-card--green {
  background: var(--color-green);
}

.covers-card-title {
  font-size: clamp(22px, 4vw, 31px);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.9px;
}

.covers-card-example {
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.3;
  margin: 0 10px;
  color: #000;
}

.covers-card--teal .covers-card-example,
.covers-card--green .covers-card-example {
  color: rgba(255, 255, 255, 0.88);
}

/* =========================================================
   ELIGIBLE SECTION
   ========================================================= */
.eligible-section {
  background: var(--color-eligible-bg);
  padding: var(--section-pad-v) 0;
}
.eligible-section.has-green-bg {
  background: var(--color-partner-bg);
}
.eligible-section.has-green-bg .section-title {
  font-size: clamp(26px, 5vw, 44px);
}
.eligible-inner {
  display: flex;
  align-items: flex-end;
}

.eligible-content {
  flex: 1;
}

.eligible-subtitle {
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: -1.8px;
  line-height: 1.3;
}

.eligible-list {
  display: flex;
  flex-direction: column;
}

.eligible-list-item {
  font-size: clamp(18px, 1.8vw, 26px);
  color: #ffffff;
  padding-left: 30px;
  position: relative;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -1.6px;
}

.eligible-list-item::before {
  content: "";
  position: absolute;
  left: 5px;

      top: 16px;
    width: 8px;
    height: 8px;
  border-radius: 50%;
  background: var(--color-light-text);
}
.version-2 .eligible-list-item::before{
  background: var(--color-orange);
    top: 11px;
  width: 12px;
  height: 12px;
}
.eligible-icon-wrap {
  flex: 0 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eligible-icon {
  width: 100%;
  height: auto;
}

.eligible-section .section-title {
  margin-bottom: 45px;
}
/* =========================================================
   PROCESS SECTION
   ========================================================= */
.process-section {
  padding: var(--section-pad-v) 0;
  background: #ffffff;
}
.process-section .process-img {
  width: 100%;
}
.process-section .process-img img {
  width: 100%;
  height: auto;
}
/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}
.cta-section .section-title {
  color: #fff;
}
.cta-section .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cta-section .bg-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}
.cta-section .cta-desc-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
.cta-section .cta-desc-wrapper .btn-primary {
  white-space: nowrap;
}
.cta-desc {
  font-size: clamp(16px, 2vw, 29px);
  color: #ffffff;
  line-height: 1.35;
  font-weight: 400;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #ffffff;
  padding: 28px 0;
  border-top: 1px solid #e8e8e8;
}

.footer-inner {
  display: flex;
  justify-content: center;
}
.footer-tagline {
  border-left: 1px solid #d4d4d4;
  padding-left: 20px;
  margin-left: 20px;
  height: auto;
  display: inline-flex;
  align-items: center;
}
.footer-logo-icon {
  padding: 10px 0;
}
.footer-logo-icon img {
  width: 362px;
  height: auto;
}
.footer-tagline-text {
  font-size: 22px;
  color: #000;
  line-height: 1.1;
  letter-spacing: -0.6px;
}

.footer-tagline-text strong {
  font-weight: 700;
}
/* image content section css */
.image-content-section {
  padding-bottom: var(--section-pad-v);
  position: relative;
  z-index: 100;
      margin-top: -30px;

}
.has-curve-props .container {
  position: relative;
  z-index: 20;
}
.has-curve-props::before {
position: absolute;
    content: "";
    background-image: url(../images/hero-shape.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 16.51vw;
    top: -9.6vw;
    /* top: -163px; */
    left: 0;
    z-index: 10;
}
.funding-section.has-curve-props::before{
    height: 17.71vw;
    top: -10.7vw;
}
.has-curve-props{
    position: relative;
    z-index: 100;
    margin-top: -30px !important;
    padding-top: 0 !important;
}
.image-content-section .image-content-wrapper {
  display: flex;
  gap: 40px;
}
.image-content-section .image-content-wrapper .content-block {
  flex: 1;
}
.image-content-section .image-content-wrapper .image-block {
  flex: 0 0 385px;
  max-width: 385px;
      box-shadow: 5px 11px 12px rgba(0, 0, 0, 0.18);
}
.image-content-section .image-content-wrapper .image-block img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right;
}
.image-content-section .image-content-wrapper .content-block p + p {
  margin-top: 40px;
}
.image-content-section .image-content-wrapper .content-block p {
  font-size: clamp(16px, 2vw, 26px);
  color: #000;
  line-height: 1.4;
}
/* version-2 css start  */
.version-2 .hero-section em {
  font-size: clamp(16px, 1.5vw, 21px);
  color: #fff;
  font-weight: 700;
  display: block;
     margin-bottom: 40px;
  font-style: normal;
}
.version-2 .hero-title {
  color: #fff;
  font-size: clamp(38px, 7vw, 98px);
  line-height: 1;
}
.version-2 .hero-description {
  font-size: clamp(16px, 1.5vw, 22px);
  color: #fff;
  font-weight: 700;
}
.version-2 .eligible-subtitle,
.version-2 .eligible-list-item {
  color: #000;
}
.version-2 .eligible-list-item::before {
  background-color: #fff;
}
.has-first-image .eligible-icon-wrap {
  order: -1;
}
.has-first-image .eligible-content {
  padding-left: 40px;
}
.eligible-content.content-block p {
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  display: inline;
  color: #000000;
}
.version-2 .eligible-inner {
  align-items: center;
}
.version-2 .process-section .section-title {
  color: #000000;
}
.process-section .section-title {
  margin-bottom: 60px;
}
.version-2 .process-section .section-title::after {
  background-color: #59cbdd;
}
/* version-2 css end  */
@media (min-width: 1441px) {
  .version-2 .hero-text-block {
    max-width: 80%;
  }
  .has-curve-props::before{
                        transform: scale(1.03);

  }
}
@media (max-width: 1280px) {
  .hero-section .color-bar span {
    width: 12px;
  }
}
@media (max-width: 1199px) {
  .hero-section .bg-image img {
    object-position: right top;
    transform: none;
  }
  .footer-logo-icon img {
    width: 290px;
  }
  .section-title, .version-2 .section-title {
    margin-bottom: 25px;
  }
  .eligible-inner {
    align-items: center;
  }
  .eligible-list-item::before {
    top: 50%;
    transform: translateY(-50%);
  }
  .funding-cards {
    padding: 0;
  }

  .hero-section {
    padding: 70px 0 170px;
  }
  .has-curve-props::before {
    top: -135px;
  }
  .section-title::after {
    bottom: 0;
  }
  .image-content-section .image-content-wrapper .content-block p + p {
    margin-top: 20px;
  }
  .section-title {
    margin-bottom: 25px !important;
    padding-bottom: 10px !important;
  }
  .version-2 .hero-section em {
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  :root {
    --section-pad-v: 52px;
  }

  /* Hero */
  .hero-content {
    padding: 48px 32px 48px 48px;
  }
}

@media (max-width: 991px) {
  .covers-grid {
    grid-template-columns: 1fr;
  }
  .funding-cards {
    grid-template-columns: 1fr;
  }
  .image-content-section .image-content-wrapper .content-block {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .image-content-section .image-content-wrapper .image-block {
    flex: 0 0 100%;
    max-width: 440px;
    margin: 0 auto;
    order: -1;
  }
  .has-first-image .eligible-content {
    padding-left: 0;
  }
  .image-content-section .image-content-wrapper {
    flex-wrap: wrap;
    gap: 25px;
  }
  .eligible-inner {
    gap: 32px;
    flex-wrap: wrap;
  }
  .eligible-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .eligible-icon-wrap {
    order: -1;
    margin: 0 auto;
    flex: auto;
    max-width: 300px;
  }
  .has-curve-props {
    margin-top: 0 !important;
  }
  .cta-section .cta-desc-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }
  .has-curve-props::before {
    top: -120px;
  }
  .covers-grid .covers-card-outer{
      padding: 0;
}
}

/* =========================================================
   MOBILE (≤ 768px)
   ========================================================= */
@media (max-width: 768px) {
  :root {
    --section-pad-v: 44px;
  }
  .has-curve-props::before {
    display: none;
  }
  .has-curve-props {
    padding-top: 40px !important;
  }
  /* Hero */
  .hero-section {
    min-height: unset;
  }

  .hero-inner {
    flex-direction: column;
    min-height: unset;
  }

  .hero-content {
    flex: unset;
    max-width: 100%;
    width: 100%;
    padding: 40px 24px 36px 32px;
    order: 2;
  }

  .hero-content::before {
    width: 5px;
  }

  .hero-image-wrap {
    flex: unset;
    max-width: 100%;
    width: 100%;
    height: 280px;
    order: 1;
  }

  .hero-image {
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }

  /* Section Titles */
  .section-title {
    line-height: 1.3;
    padding-bottom: 15px;
  }
  /* Funding */

  .funding-card {
    min-height: 140px;
    padding: 30px 24px;
  }

  /* Covers */

  .covers-card {
    min-height: 100px;
  }

  /* Eligible */
  .eligible-list-item {
    text-align: left;
  }
  /* CTA */
  .cta-section {
    padding: 40px 0;
  }
  .footer-logo-icon img {
    width: 250px;
  }
  .footer-tagline {
    padding-left: 15px;
    margin-left: 15px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
  .footer-logo-icon {
    padding: 0;
  }
  .footer-tagline {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    margin-left: 0;
  }
  .footer-tagline-text {
    text-align: center;
  }
  .cta-section .bg-img img {
    object-position: 75%;
  }
  .eligible-subtitle,
  .section-title,
  .eligible-list-item,
  .funding-card--olive .funding-card-number {
    letter-spacing: normal;
  }
  .hero-section::before {
    background-color: rgb(255 255 255 / 0.5);
    width: 100%;
    height: 100%;
    z-index: 1;
    inset: 0;
    background-image: none;
    position: absolute;
    content: "";
  }
  .version-2 .hero-section::before {
    background-color: rgb(0 0 0 / 0.5);
  }
  .hero-text-block {
    z-index: 2;
  }
  .hero-section {
    padding: 40px 0;
  }
  .hero-section .bg-image img {
    object-position: 80%;
  }
  .hero-section .color-bar {
    flex-direction: row;
    top: auto;
    bottom: 0;
    height: auto;
    width: 100%;
  }
  .hero-section .color-bar span {
    height: 12px;
    width: auto;
  }
  .image-content-section .image-content-wrapper .content-block p + p {
    margin-top: 15px;
  }
    .hero-text-block ,
    .version-2 .hero-text-block
    {
    max-width: 100%;
}
    .eligible-icon-wrap {
        max-width: 230px;
    }
}

/* =========================================================
   SMALL MOBILE (≤ 480px)
   ========================================================= */
@media (max-width: 480px) {
  :root {
    --section-pad-v: 36px;
  }

  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero-content {
    padding: 32px 16px 32px 24px;
  }

  .hero-image-wrap {
    height: 220px;
  }
}
