/* ========================================
   FIXED / STATIC HEADER
======================================== */

.hero-header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(12px);

  padding: 18px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ========================================
   PREVENT CONTENT HIDING UNDER HEADER
======================================== */

/*
Add this to the section immediately
below your header OR your main wrapper
*/

body {
  padding-top: 110px;
  margin: 0;
}
section {
  scroll-margin-top: 110px;
}
img,video,iframe,.content,.section-wrapper{
  max-width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
/* ========================================
   LOGO
======================================== */

.logo {
  display: flex;
  align-items: center;
}

.logo__image {
  width: 140px;
  height: auto;
  display: block;
}

/* ========================================
   NAVIGATION
======================================== */

.hero-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-nav__link {
  position: relative;

  text-decoration: none;

  color: #111111;

  font-size: 1rem;
  font-weight: 500;

  font-family: 'Poppins', sans-serif;

  transition:
    color 0.3s ease;
}

/* Hover */

.hero-nav__link:hover {
  color: #800A29;
}

/* Active Link */

.hero-nav__link--active {
  color: #800A29;
}

/* Underline Effect */

.hero-nav__link::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: #800A29;

  transition: width 0.3s ease;
}

.hero-nav__link:hover::after,
.hero-nav__link--active::after {
  width: 100%;
}

/* ========================================
   BUTTON
======================================== */

.btn--primary {
  background: #800A29;
  color: #ffffff;

  padding: 12px 24px;

  border-radius: 10px;

  text-decoration: none;

  font-family: 'Poppins', sans-serif;
  font-weight: 500;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.btn--primary:hover {
  background: #5f071f;
  transform: translateY(-2px);
}

/* ========================================
   TABLET
======================================== */

@media screen and (max-width: 991px) {

  .hero-header {
    padding: 16px 24px;
  }

  .hero-nav {
    gap: 20px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media screen and (max-width: 768px) {

  .hero-header {
    flex-wrap: wrap;
    gap: 16px;

    padding: 16px 20px;
  }

  .hero-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;

    gap: 16px;
  }

  .btn--primary {
    width: 100%;
    text-align: center;
  }

  body {
    padding-top: 170px;
  }
  section {
 scroll-margin-top: 170px; 
}
}

/* =========================
   RESET
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #111111;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   VARIABLES
========================= */

:root {
  --color-primary: #0b0165;
  --color-primary-hover: #1a0f91;
  --color-overlay: rgba(128, 10, 41, 0.6);
  --color-white: #ffffff;
  --color-text-light: rgba(255, 255, 255, 0.92);
  --header-bg: rgba(228, 211, 211, 0.92);

  --container-width: 1200px;

  --radius-md: 12px;
  --radius-lg: 16px;

  --transition: 0.3s ease;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;

  display: flex;
  flex-direction: column;

  background-image: url("image/rural-economic-empowerment.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: -1;
}

/* =========================
   HEADER
========================= */

.hero-header {
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  padding: 1rem clamp(1rem, 4vw, 3rem);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__image {
  width: 204px;
  height: auto;

  display: block;
  object-fit: contain;
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-nav__link {
  position: relative;

  font-size: 0.95rem;
  font-weight: 500;
  color: #111111;

  padding: 0.5rem 0.75rem;
  border-radius: 8px;

  transition: var(--transition);
}

.hero-nav__link:hover,
.hero-nav__link:focus-visible {
  background: rgba(11, 1, 101, 0.08);
  color: var(--color-primary);
}

.hero-nav__link--active {
  color: var(--color-primary);
  font-weight: 600;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
  width: 100%;
  max-width: var(--container-width);

  margin: auto;
  padding: clamp(2rem, 5vw, 5rem) 1.5rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-text {
  max-width: 850px;
}

.hero-title {
  margin: 0;

  color: var(--color-white);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
}

.hero-title span {
  display: block;
}

.hero-description {
  margin-top: 1.75rem;

  max-width: 760px;

  color: var(--color-text-light);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

/* =========================
   BUTTONS
========================= */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;

  margin-top: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 56px;

  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);

  font-size: 1rem;
  font-weight: 500;

  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-primary-hover);
}

.btn--outline {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--sm {
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .hero-header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .logo {
    align-items: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
  .hero-section {
    min-height: auto;
  }

  .hero-header {
    padding: 1rem;
    gap: 1rem;
  }

  .hero-nav {
    justify-content: center;
    gap: 0.5rem;
  }

  .hero-nav__link {
    font-size: 0.9rem;
    padding: 0.45rem 0.65rem;
  }

  .hero-description {
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
/* =========================
   PROBLEM SECTION
========================= */

.problem-section {
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */

.problem-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-label {
  display: inline-flex;
  width: fit-content;

  padding: 10px 18px;
  border-radius: 999px;

  background: rgba(128, 10, 41, 0.06);

  color: #800A29;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.problem-title {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
  font-family: "Poppins", sans-serif;
}

.problem-title span {
  color: #800A29;
}

.problem-description,
.problem-text {
  font-size: 17px;
  line-height: 1.8;
  color: #4b4b4b;
  font-family: "Poppins", sans-serif;
}

.problem-highlight {
  padding: 18px 22px;

  border-left: 4px solid #800A29;
  background: #faf5f7;

  font-size: 22px;
  font-weight: 600;
  color: #111111;
  font-family: "Poppins", sans-serif;

  border-radius: 8px;
}

.problem-text.emphasis {
  font-size: 18px;
  color: #111111;
}

/* =========================
   RIGHT CARDS
========================= */

.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-card {
  background: #ffffff;
  border: 1px solid #eadede;
  border-radius: 18px;

  padding: 28px 24px;

  display: flex;
  align-items: flex-start;
  gap: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(128, 10, 41, 0.12);
}

.card-icon {
  min-width: 52px;
  width: 52px;
  height: 52px;

  border-radius: 14px;

  background: rgba(128, 10, 41, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 22px;
  height: 22px;
}

.card-content h3 {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  color: #111111;
  font-family: "Poppins", sans-serif;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {

  .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .problem-title {
    font-size: 42px;
  }

  .problem-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .problem-section {
    padding: 70px 20px;
  }

  .problem-title {
    font-size: 34px;
  }

  .problem-description,
  .problem-text {
    font-size: 16px;
  }

  .problem-highlight {
    font-size: 20px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

  .problem-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {

  .problem-title {
    font-size: 28px;
  }

  .section-label {
    font-size: 16px;
  }

  .problem-highlight {
    font-size: 18px;
  }

  .card-content h3 {
    font-size: 16px;
  }
}
/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BODY
========================= */

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
}

/* =========================
   SECTION
========================= */

.gap-section {
  background: #dfe6e6;

  padding: 70px 20px 80px;
}

/* =========================
   CONTAINER
========================= */

.gap-container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.gap-header {
  text-align: center;

  max-width: 720px;

  margin: 0 auto 60px;
}

.gap-label {
  display: inline-block;

  color: rgba(255, 255, 255, 0.85);

  font-size: 1rem;
  font-weight: 400;

  margin-bottom: 12px;
}

.gap-title {
  color: #ffffff;

  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.3;

  margin-bottom: 20px;
}

.gap-description {
  color: rgba(255, 255, 255, 0.8);

  font-size: 0.95rem;
  line-height: 1.7;

  max-width: 620px;

  margin: 0 auto;
}

/* =========================
   CARD GRID
========================= */

.gap-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  margin-bottom: 40px;
}

/* =========================
   CARD
========================= */

.gap-card {
  background: #f8f7fb;

  border-radius: 10px;

  padding: 22px 20px;

  text-align: center;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);

  transition: 0.3s ease;
}

.gap-card:hover {
  transform: translateY(-4px);
}

/* =========================
   ICON
========================= */

.gap-card__icon {
  width: 52px;
  height: 52px;

  margin: 0 auto 16px;

  border-radius: 50%;

  background: #dfe6e6;

  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-card__icon img {
  width: 26px;
  height: 26px;

  object-fit: contain;
}

/* =========================
   CARD TEXT
========================= */

.gap-card__text {
  color: #111111;

  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
}

/* =========================
   FOOTER TEXT
========================= */

.gap-footer {
  text-align: center;

  color: rgba(255, 255, 255, 0.7);

  font-size: 0.8rem;
  line-height: 1.6;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .gap-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
  .gap-section {
    padding: 60px 16px;
  }

  .gap-cards {
    grid-template-columns: 1fr;
  }

  .gap-header {
    margin-bottom: 40px;
  }

  .gap-card {
    padding: 20px 18px;
  }
}
/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Design Tokens ─── */
:root {
  --color-brand:       #800A29;
  --color-white:       #ffffff;
  --color-card-border: #E4D3D3;

  --font-family:       'Poppins', sans-serif;

  --fs-label:          1rem;       /* 16px */
  --fs-title:          2.25rem;    /* 36px */
  --fs-body:           1rem;       /* 16px */
  --fs-card-title:     1.25rem;    /* 20px */
  --fs-card-body:      0.875rem;   /* 14px */

  --spacing-section-y: 5rem;
  --spacing-section-x: 1.5rem;
  --spacing-card:      1.75rem;
  --card-radius:       10px;
  --card-border:       1px solid var(--color-card-border);
}

/* ─── Section ─── */
.solution {
  background-color: var(--color-brand);
  color: var(--color-white);
  padding: var(--spacing-section-y) var(--spacing-section-x);
  font-family: var(--font-family);
}

.solution__container {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* ─── Header Block ─── */
.solution__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 760px;
}

.solution__label {
  font-size: var(--fs-label);
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.03em;
}

.solution__title {
  font-size: clamp(1.75rem, 4vw, var(--fs-title));
  font-weight: 400;
  line-height: 1.25;
}

.solution__description {
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  opacity: 0.9;
  max-width: 640px;
}

/* ─── Cards Grid ─── */
.solution__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

/* ─── Card ─── */
.solution__card {
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--spacing-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.solution__card:hover {
  background-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.solution__card-title {
  font-size: var(--fs-card-title);
  font-weight: 600;
  line-height: 1.3;
}

.solution__card-text {
  font-size: var(--fs-card-body);
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.85;
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 900px) {
  .solution__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 560px) {
  :root {
    --spacing-section-y: 3rem;
  }

  .solution__cards {
    grid-template-columns: 1fr;
  }

  .solution__title {
    font-size: 1.6rem;
  }
}
/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Design Tokens ─── */
:root {
  --color-brand:        #800A29;
  --color-black:        #111111;
  --color-white:        #ffffff;
  --color-icon-bg:      #E1E9E9;
  --color-connector:    #800A29;
  --color-dot:          #D9D9D9;
  --color-media-shadow: rgba(0, 0, 0, 0.18);

  --font-family:        'Poppins', sans-serif;

  --fs-label:           0.875rem;   /* 14px */
  --fs-step-number:     1rem;       /* 16px */
  --fs-title:           1.5rem;     /* 24px */
  --fs-step-title:      1.25rem;    /* 20px */
  --fs-body:            0.9375rem;  /* 15px */

  --spacing-section-y:  5rem;
  --spacing-section-x:  1.5rem;
  --spacing-step-gap:   4rem;
  --media-radius:       12px;

  --connector-width:    3px;
  --dot-size:           1.1rem;
}

/* ─── Section ─── */
.hiw {
  background-color: var(--color-white);
  color: var(--color-black);
  padding: var(--spacing-section-y) var(--spacing-section-x);
  font-family: var(--font-family);
}

.hiw__container {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* ─── Header ─── */
.hiw__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.hiw__label {
  font-size: var(--fs-label);
  font-weight: 600;
  color: var(--color-brand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hiw__title {
  font-size: clamp(1.4rem, 3vw, var(--fs-title));
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.3;
}

/* ─── Timeline List ─── */
.hiw__timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-step-gap);
  position: relative;
}

/* Vertical connector line running through the timeline */
.hiw__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: var(--connector-width);
  background: var(--color-connector);
  transform: translateX(-50%);
  z-index: 0;
}

/* ─── Step Row ─── */
.hiw__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Dot on the centre line */
.hiw__step::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--dot-size);
  height: var(--dot-size);
  background: var(--color-dot);
  border-radius: 9999px;
  border: 3px solid var(--color-brand);
  z-index: 2;
}

/* Left-side steps: content left, image right */
.hiw__step--left .hiw__step-content { order: 1; }
.hiw__step--left .hiw__step-media   { order: 2; }

/* Right-side steps: image left, content right */
.hiw__step--right .hiw__step-media   { order: 1; }
.hiw__step--right .hiw__step-content { order: 2; }

/* ─── Step Content ─── */
.hiw__step-content {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.hiw__step--right .hiw__step-content {
  flex-direction: row-reverse;
  text-align: right;
}

/* ─── Icon ─── */
.hiw__step-icon {
  position: relative;
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
}

.hiw__step-icon-bg {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: var(--color-icon-bg);
  position: absolute;
  inset: 0;
}

.hiw__step-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: 55%;
  object-fit: contain;
  border-radius: 9999px;
}

/* ─── Step Body Text ─── */
.hiw__step-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hiw__step-label {
  font-size: var(--fs-label);
  font-weight: 400;
  color: var(--color-black);
  opacity: 0.7;
}

.hiw__step-number {
  color: var(--color-brand);
  font-weight: 600;
}

.hiw__step-title {
  font-size: var(--fs-step-title);
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.3;
}

.hiw__step-text {
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-black);
  opacity: 0.8;
  max-width: 38ch;
}

/* ─── Media Card ─── */
.hiw__step-media {
  border-radius: var(--media-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--color-media-shadow);
  background: var(--color-icon-bg);
  aspect-ratio: 16 / 9;
}

.hiw__step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hiw__step-media:hover img {
  transform: scale(1.03);
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 860px) {
  .hiw__timeline::before {
    left: 1.5rem;
  }

  .hiw__step {
    grid-template-columns: 1fr;
    padding-left: 3.5rem;
  }

  .hiw__step::before {
    left: 1.5rem;
    top: 1.5rem;
    transform: translateY(0);
  }

  /* All steps: content on top, image below */
  .hiw__step--left .hiw__step-content,
  .hiw__step--right .hiw__step-content { order: 1; }

  .hiw__step--left .hiw__step-media,
  .hiw__step--right .hiw__step-media   { order: 2; }

  .hiw__step--right .hiw__step-content {
    flex-direction: row;
    text-align: left;
  }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 520px) {
  :root {
    --spacing-section-y: 3rem;
    --spacing-step-gap:  2.5rem;
  }

  .hiw__step-content {
    flex-direction: column;
  }

  .hiw__step--right .hiw__step-content {
    flex-direction: column;
  }

  .hiw__step-text {
    max-width: 100%;
  }
}
/* ========================================
   HIGH NEED SECTORS SECTION
======================================== */

.hns-section {
  width: 100%;
  background: #0B0165;
  padding: 100px 0;
  overflow: hidden;
}

/* ========================================
   WRAPPER
======================================== */

.hns-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   HEADER
======================================== */

.hns-header {
  text-align: center;
  margin-bottom: 70px;
}

.hns-label {
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

.hns-heading {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

/* ========================================
   TRACK (replaces grid)
======================================== */

.hns-track-outer {
  overflow: hidden;
  width: 100%;
}

.hns-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: hnsSlide 12s linear infinite;
}

.hns-track:hover {
  animation-play-state: paused;
}

/* ========================================
   CARD
======================================== */

.hns-card {
  background: #FBFAFF;
  border: 1px solid #E4D3D3;
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  width: 320px;
  flex-shrink: 0;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ========================================
   CARD HOVER
======================================== */

.hns-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18);

  border-color: #c9d2ff;
}

/* ========================================
   ICON
======================================== */

.hns-icon-box {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;

  border-radius: 50%;
  background: #E1E9E9;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hns-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* ========================================
   TEXT
======================================== */

.hns-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111111;
  line-height: 1.4;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

.hns-card-text {
  color: #444444;
  font-size: 0.95rem;
  line-height: 1.8;
  font-family: 'Poppins', sans-serif;
}

/* ========================================
   SLIDE ANIMATION
======================================== */

@keyframes hnsSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   TABLET
======================================== */

@media screen and (max-width: 991px) {

  .hns-card {
    width: 280px;
    padding: 32px 24px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media screen and (max-width: 768px) {

  .hns-section {
    padding: 80px 0;
  }

  .hns-header {
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .hns-heading {
    font-size: 2rem;
  }

  .hns-track {
    gap: 20px;
    animation-duration: 10s;
  }

  .hns-card {
    width: 260px;
    padding: 28px 20px;
  }

  .hns-card:hover {
    transform: none;
  }
}
/* ========================================
   BUILT AROUND REALITY SECTION
======================================== */

.bra-section {
  width: 100%;
  background: #ffffff;
  padding: 110px 24px;
  overflow: hidden;
}

/* ========================================
   WRAPPER
======================================== */

.bra-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* ========================================
   LEFT CONTENT
======================================== */

.bra-content {
  max-width: 480px;
}

.bra-label {
  display: inline-block;
  color: #800A29;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.bra-heading {
  color: #111111;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.2;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

/* ========================================
   FEATURES
======================================== */

.bra-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========================================
   FEATURE ITEM
======================================== */

.bra-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;

  padding: 20px 24px;
  border-radius: 18px;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;

  position: relative;
}

/* Hover Effect */

.bra-feature-item:hover {
  background: #faf8ff;

  transform: translateX(10px);

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.08);
}

/* ========================================
   ICON BOX
======================================== */

.bra-icon-box {
  width: 40px;
  height: 40px;

  min-width: 40px;

  border-radius: 50%;
  background: #E1E9E9;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  transition:
    background 0.4s ease,
    transform 0.4s ease;
}

/* Icon */

.bra-icon {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

/* ========================================
   FEATURE TITLE
======================================== */

.bra-feature-title {
  color: #111111;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* ========================================
   DESKTOP AUTO ANIMATION
======================================== */

@media screen and (min-width: 992px) {

  .bra-feature-item {
    animation-name: braSlideLoop;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }

  /* Staggered Delays */

  .bra-feature-item:nth-child(1) {
    animation-delay: 0s;
  }

  .bra-feature-item:nth-child(2) {
    animation-delay: 0.6s;
  }

  .bra-feature-item:nth-child(3) {
    animation-delay: 1.2s;
  }

  .bra-feature-item:nth-child(4) {
    animation-delay: 1.8s;
  }

  .bra-feature-item:nth-child(5) {
    animation-delay: 2.4s;
  }

  /* Animation */

  @keyframes braSlideLoop {

    0% {
      opacity: 0;
      transform: translateX(60px);
    }

    15% {
      opacity: 1;
      transform: translateX(0);
    }

    70% {
      opacity: 1;
      transform: translateX(0);
    }

    100% {
      opacity: 0;
      transform: translateX(-60px);
    }
  }

  /* Hover Enhancement */

  .bra-feature-item:hover .bra-icon-box {
    background: #d7deff;
    transform: scale(1.08);
  }
}

/* ========================================
   TABLET
======================================== */

@media screen and (max-width: 991px) {

  .bra-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .bra-content {
    max-width: 100%;
    text-align: center;
  }

  /* Disable Animation */

  .bra-feature-item {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   MOBILE
======================================== */

@media screen and (max-width: 768px) {

  .bra-section {
    padding: 80px 20px;
  }

  .bra-heading {
    font-size: 2.2rem;
  }

  .bra-features {
    gap: 18px;
  }

  .bra-feature-item {
    padding: 18px;
    gap: 16px;
    align-items: flex-start;
  }

  .bra-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .bra-icon {
    width: 40px;
    height: 40px;
  }

  .bra-feature-title {
    font-size: 0.95rem;
  }

  /* Disable Hover Movement */

  .bra-feature-item:hover {
    transform: none;
  }
}
/* ========================================
   ECOSYSTEM MODEL SECTION
======================================== */

.ecm-section {
  width: 100%;
  background: #0B0165;
  padding: 110px 24px;
  overflow: hidden;
}

/* ========================================
   WRAPPER
======================================== */

.ecm-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   HEADER
======================================== */

.ecm-header {
  text-align: center;
  margin-bottom: 70px;
}

.ecm-label {
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: 1.5px;
  font-family: 'Poppins', sans-serif;
}

.ecm-heading {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

/* ========================================
   GRID
======================================== */

.ecm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ========================================
   CARD
======================================== */

.ecm-card {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;

  padding: 36px 30px;

  background: rgba(255,255,255,0.03);

  backdrop-filter: blur(10px);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;

  position: relative;
  overflow: hidden;
}

/* Hover */

.ecm-card:hover {
  transform: translateY(-10px);

  border-color: rgba(255,255,255,0.35);

  background: rgba(255,255,255,0.06);

  box-shadow:
    0 16px 40px rgba(0,0,0,0.25);
}

/* ========================================
   ICON BOX
======================================== */

.ecm-icon-box {
  width: 74px;
  height: 74px;

  border-radius: 50%;
  background: #E1E9E9;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;

  transition:
    transform 0.4s ease,
    background 0.4s ease;

  position: relative;
}

/* Icon */

.ecm-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* ========================================
   CARD TITLE
======================================== */

.ecm-card-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.4;

  margin-bottom: 24px;

  font-family: 'Poppins', sans-serif;
}

/* ========================================
   LIST
======================================== */

.ecm-list {
  display: flex;
  flex-direction: column;
  gap: 14px;

  padding-left: 18px;
}

.ecm-list li {
  color: rgba(255,255,255,0.85);

  font-size: 0.95rem;
  line-height: 1.7;

  font-family: 'Poppins', sans-serif;
}
/* ========================================
   DESKTOP HOVER EFFECTS
======================================== */

@media screen and (min-width: 992px) {

  .ecm-card:hover .ecm-icon-box {
    transform: scale(1.08);
    background: #d7deff;
  }
}
/* ========================================
   TABLET
======================================== */

@media screen and (max-width: 991px) {

  .ecm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecm-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   MOBILE
======================================== */

@media screen and (max-width: 768px) {

  .ecm-section {
    padding: 80px 20px;
  }

  .ecm-header {
    margin-bottom: 50px;
  }

  .ecm-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ecm-card {
    padding: 30px 24px;
  }

  .ecm-heading {
    font-size: 2rem;
  }

  .ecm-card-title {
    font-size: 1.2rem;
  }

  .ecm-list li {
    font-size: 0.92rem;
  }

  /* Disable Hover Movement */

  .ecm-card:hover {
    transform: none;
  }
}
/* ========================================
   IMPACT MODEL SECTION
======================================== */

.impact-section {
  width: 100%;
  background: #E1E9E9;
  padding: 100px 24px;
  overflow: hidden;
}

/* ========================================
   WRAPPER
======================================== */

.impact-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   HEADER
======================================== */

.impact-header {
  text-align: center;
  margin-bottom: 70px;
}

.impact-label {
  display: inline-block;

  color: #111111;

  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;

  margin-bottom: 18px;

  font-family: 'Poppins', sans-serif;
}

.impact-heading {
  color: #111111;

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;

  font-family: 'Poppins', sans-serif;
}

/* ========================================
   GRID
======================================== */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ========================================
   CARD
======================================== */

.impact-card {
  background: rgba(255, 255, 255, 0.35);

  border: 1px solid #ffffff;
  border-radius: 18px;

  padding: 36px 32px;

  backdrop-filter: blur(6px);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;

  min-height: 220px;
}

/* Hover */

.impact-card:hover {
  transform: translateY(-8px);

  border-color: #d6d6d6;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.08);
}

/* ========================================
   TITLE
======================================== */

.impact-card-title {
  color: #800A29;

  font-size: 1.2rem;
  font-weight: 600;

  margin-bottom: 28px;

  font-family: 'Poppins', sans-serif;
}

/* ========================================
   LIST
======================================== */

.impact-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.impact-list li {
  position: relative;

  padding-left: 18px;

  color: #111111;

  font-size: 0.95rem;
  line-height: 1.7;

  font-family: 'Poppins', sans-serif;
}

/* Bullet */

.impact-list li::before {
  content: "";

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #800A29;

  position: absolute;
  left: 0;
  top: 11px;
}

/* ========================================
   TABLET
======================================== */

@media screen and (max-width: 991px) {

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   MOBILE
======================================== */

@media screen and (max-width: 768px) {

  .impact-section {
    padding: 80px 20px;
  }

  .impact-header {
    margin-bottom: 50px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .impact-card {
    padding: 30px 24px;
    min-height: auto;
  }

  .impact-heading {
    font-size: 2rem;
  }

  .impact-card-title {
    margin-bottom: 22px;
  }

  .impact-list li {
    font-size: 0.92rem;
  }

  /* Disable hover movement on mobile */

  .impact-card:hover {
    transform: none;
  }
}

/* ========================================
   REAL WORLD APPLICATION SECTION
======================================== */

.rwa-section {
  width: 100%;
  background: #ffffff;
  padding: 110px 24px;
  overflow: hidden;
}

/* ========================================
   WRAPPER
======================================== */

.rwa-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   HEADER
======================================== */

.rwa-header {
  text-align: center;
  margin-bottom: 70px;
}

.rwa-label {
  display: inline-block;

  color: #111111;

  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;

  margin-bottom: 18px;

  font-family: 'Poppins', sans-serif;
}

.rwa-heading {
  color: #111111;

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;

  font-family: 'Poppins', sans-serif;
}

/* ========================================
   GRID
======================================== */

.rwa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ========================================
   CARD
======================================== */

.rwa-card {
  background: #FBFAFF;

  border: 1px solid #E4D3D3;
  border-radius: 18px;

  padding: 36px 30px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;

  position: relative;
  overflow: hidden;
}

/* Hover */

.rwa-card:hover {
  transform: translateY(-10px);

  border-color: #d3d9ff;

  box-shadow:
    0 20px 45px rgba(0,0,0,0.12);
}

/* ========================================
   CARD TITLE
======================================== */

.rwa-card-title {
  color: #111111;

  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;

  margin-bottom: 22px;

  font-family: 'Poppins', sans-serif;
}

/* ========================================
   CARD TEXT
======================================== */

.rwa-card-text {
  color: #444444;

  font-size: 0.95rem;
  line-height: 1.8;

  font-family: 'Poppins', sans-serif;
}

/* ========================================
   DESKTOP EFFECTS
======================================== */

@media screen and (min-width: 992px) {

  .rwa-card:hover .rwa-card-title {
    color: #800A29;
  }
}

/* ========================================
   TABLET
======================================== */

@media screen and (max-width: 991px) {

  .rwa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   MOBILE
======================================== */

@media screen and (max-width: 768px) {

  .rwa-section {
    padding: 80px 20px;
  }

  .rwa-header {
    margin-bottom: 50px;
  }

  .rwa-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rwa-card {
    padding: 30px 24px;
  }

  .rwa-heading {
    font-size: 2rem;
  }

  .rwa-card-title {
    font-size: 1.15rem;
  }

  .rwa-card-text {
    font-size: 0.92rem;
  }

  /* Disable hover movement on mobile */

  .rwa-card:hover {
    transform: none;
  }
}
/* ========================================
   CTA SECTION
======================================== */

.cta-section {
  width: 100%;
  background: #800A29;
  padding: 100px 24px;
  overflow: hidden;
}

/* ========================================
   WRAPPER
======================================== */

.cta-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ========================================
   CONTENT
======================================== */

.cta-content {
  max-width: 850px;
  margin: 0 auto 60px;
}

.cta-heading {
  color: #ffffff;

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.3;

  margin-bottom: 28px;

  font-family: 'Poppins', sans-serif;
}

.cta-text {
  color: rgba(255, 255, 255, 0.92);

  font-size: 1rem;
  line-height: 1.9;

  font-weight: 400;

  font-family: 'Poppins', sans-serif;
}

/* ========================================
   BUTTON GROUP
======================================== */

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;

  margin-bottom: 45px;

  flex-wrap: wrap;
}

/* ========================================
   BUTTONS
======================================== */

.cta-btn,
.cta-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  border-radius: 12px;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;

  font-family: 'Poppins', sans-serif;
}

/* Primary Button */

.cta-btn-primary {
  background: #0B0165;
  color: #ffffff;

  padding: 16px 42px;

  font-size: 1.15rem;
  font-weight: 500;

  min-width: 260px;
}

.cta-btn-primary:hover {
  transform: translateY(-4px);

  background: #1401a5;

  box-shadow:
    0 10px 25px rgba(11, 1, 101, 0.35);
}

/* Outline Button */

.cta-btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;

  padding: 16px 42px;

  font-size: 1.15rem;
  font-weight: 500;

  min-width: 260px;
}

.cta-btn-outline:hover {
  background: #ffffff;
  color: #800A29;

  transform: translateY(-4px);

  box-shadow:
    0 10px 25px rgba(255,255,255,0.18);
}

/* ========================================
   DOWNLOAD BUTTON
======================================== */

.cta-download-btn {
  background: #E1E9E9;
  color: #111111;

  padding: 18px 40px;

  font-size: 1.15rem;
  font-weight: 600;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.15);
}

.cta-download-btn:hover {
  transform: translateY(-4px);

  background: #ffffff;

  box-shadow:
    0 16px 35px rgba(0,0,0,0.2);
}

/* ========================================
   TABLET
======================================== */

@media screen and (max-width: 991px) {

  .cta-section {
    padding: 90px 24px;
  }

  .cta-heading {
    font-size: 2.5rem;
  }

  .cta-actions {
    gap: 20px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media screen and (max-width: 768px) {

  .cta-section {
    padding: 80px 20px;
  }

  .cta-content {
    margin-bottom: 45px;
  }

  .cta-heading {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .cta-actions {
    flex-direction: column;
    gap: 18px;

    margin-bottom: 35px;
  }

  .cta-btn-primary,
  .cta-btn-outline,
  .cta-download-btn {
    width: 100%;
    max-width: 100%;

    font-size: 1rem;

    padding: 16px 24px;
  }

  /* Disable hover movement on mobile */

  .cta-btn-primary:hover,
  .cta-btn-outline:hover,
  .cta-download-btn:hover {
    transform: none;
  }
}