@font-face {
  font-family: 'Sen';
  src: url("../assets/font/Sen-Medium.ttf") format("truetype");
}
@font-face {
  font-family: 'Sen1';
  src: url("../assets/font/Sen-Regular.ttf") format("truetype");
}
@font-face {
  font-family: 'Sen2';
  src: url("../assets/font/Sen-ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: 'Sen3';
  src: url("../assets/font/Sen-Bold.ttf") format("truetype");
}

:root {
  --bg-gradient: linear-gradient(
    90deg,
    #1a56db 0%,
    #0b2a73 45%,
    #081a4b 55%,
    #0b2a73 65%,
    #1a56db 100%
  );
  --card-bg: #ffffff;
  --card-border: rgba(0, 0, 0, 0.08);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 12px 36px rgba(37, 99, 235, 0.14);
  --btn-gradient: linear-gradient(135deg, #0a1628 0%, #0d2060 40%, #1a4fd6 100%);
  --accent-blue: #2c5ff6;
  --text-primary: #ffffff;
  --text-muted: #8a9cc5;
  --progress-bg: #1a2a4a;
  --divider: rgba(255, 255, 255, 0.08);

  /* Section-3 variables */
  --badge-bg: #ccd9f5;
  --badge-color: #1d4ed8;
  --heading-color: #0f1e3d;
  --body-color: #4a5a78;
  --icon-bg: #dbeafe;
  --icon-color: #1d4ed8;
  --tag-color: #2563eb;
  --link-color: #1d4ed8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
}

body {
  font-family: 'Sen', 'Segoe UI', sans-serif;
}

img {
  height: 46px;
}

.hero-section {
  width: 100%;
  background: radial-gradient(ellipse 60% 90% at 90% 50%, #1847f5 0%, #0a1f6e 45%, #050d2e 75%),
              #050d2e;
}

.container {
  width: 100%;
  max-width: 1400px;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 60px 70px;
  gap: 60px;
  margin: 0 auto;
}

.section-left {
  flex: 1;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-left: -80px ;
}

.section-left-mainheading {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 7px 16px 7px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 100;
  letter-spacing: 1.3px;
  color: #fff;
  width: fit-content;
  margin-bottom: 22px;
  animation: fadeSlideRight 0.5s ease both;
  animation-delay: 0.1s;
}

.circle {
  width: 8px;
  height: 8px;
  background-color: #1a5cff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  flex-shrink: 0;
}

.circle1 {
  width: 6px;
  height: 6px;
  background-color: #1a5cff;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.section-left-heading {
  font-size: 36px;
  font-weight: 100;
  line-height: 1.13;
  color: #fff;
  margin-bottom: 24px;
  max-width: 620px;
  animation: fadeSlideUp 0.6s ease both;
  animation-delay: 0.2s;
}

.section-left-heading span {
  color: #4a7bff;
}

.section-left-text {
  color: #b0bdd8;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 100;
  max-width: 600px;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.6s ease both;
  animation-delay: 0.35s;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.6s ease both;
  animation-delay: 0.5s;
}

.btn {
  background: #0050FF;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: "Sen", sans-serif;
  font-size: 15px;
  font-weight: 100;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 80, 255, 0.4);
}

.btn1 {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 13px 28px;
  border-radius: 8px;
  font-family: "Sen", sans-serif;
  font-size: 15px;
  font-weight: 100;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.btn1:hover {
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  list-style: none;
  gap: 12px 60px;
  animation: fadeSlideUp 0.6s ease both;
  animation-delay: 0.65s;
}

.list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 100;
  letter-spacing: 1.1px;
  color: #b0bdd8;
}

.section-right {
  width: 480px;
  flex-shrink: 0;
  left: 90px;
  position: relative;
  padding-bottom: 90px;
}

.card-main {
  background: #0c1530;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 28px 28px 0 28px;
  position: relative;
  overflow: visible;
  animation: fadeSlideLeft 0.7s ease both;
  animation-delay: 0.3s;
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.program-status-label {
  font-size: 10.5px;
  letter-spacing: 1.3px;
  color: #8a9cc5;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.active-engagements {
  font-size: 21px;
  font-weight: 100;
  color: #fff;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #041f0f;
  border-radius: 20px;
  color: #32db65;
  font-size: 11px;
  font-weight: 100;
  letter-spacing: 0.5px;
  border: 1px solid rgba(50, 219, 101, 0.28);
  margin-top: 2px;
  white-space: nowrap;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #32db65;
  border-radius: 50%;
  box-shadow: 0 0 7px #32db65;
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}

.card-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 0 24px 0;
}

.list1 {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
}

.list1 li {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 0;
  animation: fadeSlideRight 0.5s ease both;
}

.list1 li:nth-child(1) { animation-delay: 0.75s; }
.list1 li:nth-child(2) { animation-delay: 0.88s; }
.list1 li:nth-child(3) { animation-delay: 1.01s; }

.dot-box {
  width: 28px;
  height: 28px;
  background: #e8ecf5;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 14px;
}

.dot-box::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #0050FF;
  border-radius: 50%;
}

.list-label {
  flex: 1;
  font-size: 13.5px;
  font-weight: 100;
  color: #fff;
  white-space: nowrap;
}

.progress-bar {
  width: 110px;
  height: 5px;
  background: #1c2e50;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 14px;
  flex-shrink: 0;
}

.progress-fill {
  height: 100%;
  background: #2f6bff;
  width: 95%;
  border-radius: 10px;
  animation: progressGrow 1.2s ease both;
  animation-delay: 0.8s;
}

.percent {
  font-size: 12px;
  color: #8a9cc5;
  min-width: 34px;
  text-align: right;
  margin-left: 10px;
  flex-shrink: 0;
  font-weight: 100;
}

.card-stats {
  display: flex;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  position: relative;
  animation: fadeSlideUp 0.5s ease both;
}

.stat-item:nth-child(1) { animation-delay: 0.9s; }
.stat-item:nth-child(2) { animation-delay: 1.0s; }
.stat-item:nth-child(3) { animation-delay: 1.1s; }

.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-value {
  font-size: 26px;
  font-weight: 100;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 9.5px;
  font-weight: 100;
  letter-spacing: 1.1px;
  color: #8a9cc5;
  text-transform: uppercase;
}

.engagement-card {
  position: absolute;
  bottom: 55px;
  left: -130px;
  width: 185px;
  background: #0050FF;
  border-radius: 8px;
  padding: 22px;
  animation: fadeSlideUp 0.7s ease 0.6s both, floatCard 4s ease-in-out 1.3s infinite;
}

.engagement-label {
  font-size: 9px;
  font-weight: 100;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.engagement-value {
  font-size: 28px;
  font-weight: 100;
  color: #fff;
  line-height: 1;
  margin-bottom: 7px;
}

.engagement-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 100;
  line-height: 1.4;
}

/* ══════════════════════════════════════
   SECTION 2 — STRATEGIC
   Outer (.strategic-section) = full-width white bg
   Inner (.strategic-inner)   = centered content
══════════════════════════════════════ */

.strategic-section {
  width: 100%;
  padding: 50px;
  background: #ffffff;
  color: #050d2e;
}

.strategic-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 70px;
}

.strategic-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 275px;
}

.left-content {
  max-width: 520px;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  background: #eaf1ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeSlideRight 0.6s ease both;
  animation-delay: 0.1s;
}

.left-content h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeSlideRight 0.6s ease both;
  animation-delay: 0.2s;
}

.line {
  width: 50px;
  height: 4px;
  background: #2563eb;
  margin-bottom: 24px;
  animation: fadeSlideRight 0.6s ease both;
  animation-delay: 0.3s;
}

.left-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #1a212e;
  width: 100%;
  min-width: 700px;
  font-weight: 100;
  margin-bottom: 18px;
  animation: fadeSlideRight 0.6s ease both;
  animation-delay: 0.4s;
}

.right-card {
  background: linear-gradient(180deg, #050b1e, #0b122f);
  border-radius: 18px;
  padding: 28px;
  width: 420px;
  flex-shrink: 0;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.35);
}

.right-card h4 {
  font-size: 13px;
  letter-spacing: 1px;
  color: #9fb7ff;
  margin-bottom: 24px;
}

.card-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #2563eb;
}

.card-item h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.card-item p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #cbd5f5;
}

.index {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
}

.model-wrapper {
  background: #7aa7ff;
  padding: 14px;
  border-radius: 14px;
  transform: rotate(-1.5deg);
  width: 420px;
  flex-shrink: 0;
  animation: scaleIn 0.7s ease both;
  animation-delay: 0.3s;
}

.model-card {
  background: linear-gradient(180deg, #050b1e, #0b122f);
  border-radius: 12px;
  padding: 24px;
  transform: rotate(1.5deg);
  color: #fff;
}

.model-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.model-header h4 {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #c7d2fe;
}

.dots span {
  width: 6px;
  height: 6px;
  background: #64748b;
  border-radius: 50%;
  display: inline-block;
  margin-left: 6px;
}

.dots .active {
  background: #3b82f6;
}

.model-item {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 18px 20px 18px 28px;
  border-radius: 10px;
  margin-bottom: 14px;
  animation: fadeSlideLeft 0.5s ease both;
}

.model-item:nth-child(1) { animation-delay: 0.4s; }
.model-item:nth-child(2) { animation-delay: 0.55s; }
.model-item:nth-child(3) { animation-delay: 0.7s; }
.model-item:nth-child(4) { animation-delay: 0.85s; }

.with-left-border {
  position: relative;
}

.with-left-border::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #3b82f6;
  border-radius: 4px;
}

.model-item .bar {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 55%;
  background: #3b82f6;
  border-radius: 4px;
}

.model-item.active .bar {
  box-shadow: 0 0 10px #3b82f6;
}

.model-item h5 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.model-item p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #cbd5f5;
}

.model-item .num {
  margin-left: auto;
  font-size: 14px;
  color: #3b82f6;
  font-weight: 600;
}

.content-slide {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
  position: absolute;
  width: 100%;
}

.content-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.dot {
  width: 7px;
  height: 7px;
  background: #64748b;
  border-radius: 50%;
  display: inline-block;
  margin-left: 6px;
  cursor: pointer;
}

.dot.active {
  background: #3b82f6;
}

#modelContent {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#modelContent.slide-out {
  transform: translateX(-30px);
  opacity: 0;
}

#modelContent.slide-in {
  transform: translateX(0);
  opacity: 1;
}

/* ══════════════════════════════════════
   SECTION 3 — PROGRAMS
   Outer (.section-3)        = full-width #deedf7 bg
   Inner (.programs-section) = centered content
══════════════════════════════════════ */

.section-3 {
  width: 100%;
  padding: 65px;
  background-color: #deedf7;
  align-items: center;
  justify-content: center;
}

.section-header {
  margin-bottom: 56px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--badge-bg);
  color: var(--badge-color);
  font-size: 11px;
  font-weight: 100;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 14px 6px 10px;
  border-radius: 20px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.5s ease forwards;
  animation-delay: 0.1s;
}

.section-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--badge-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.section-title {
  font-family: 'Sen2', 'Sen', sans-serif;
  font-size: 36px;
  font-weight: 100;
  line-height: 1.12;
  color: var(--heading-color);
  max-width: 420px;
  flex-shrink: 0;
}

.section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-color);
  max-width: 360px;
  text-align: right;
  padding-top: 6px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cards-row {
  display: contents;
}

.program-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.program-card.visible {
  animation: fadeUp 0.55s ease forwards;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(60, 111, 212, 0.28);
}

.card-icon {
  width: 46px;
  height: 46px;
  background: var(--icon-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.program-card:hover .card-icon {
  background: #c6d8ff;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--icon-color);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--tag-color);
  margin-bottom: 10px;
}

.card-title {
  font-family: 'Sen3', 'Sen', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.35;
  margin-bottom: 14px;
}

.card-body {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--body-color);
  flex: 1;
  margin-bottom: 28px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--link-color);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.card-link:hover {
  gap: 10px;
  color: #1a46b0;
}

.card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.card-link:hover svg {
  transform: translateX(3px);
}


 /* SECTION 4 */
/* SECTION */
.framework {
  background: linear-gradient(135deg, #1d5cff, #0b3ecf);
  color: #fff;
  padding: 70px ;
  overflow: hidden;
}

.headingandPara{
  display: flex !important;
  min-width: 1300px;
}

.headingandPara h1{
  width: 60%;
  font-size: 40px !important;
  min-width: 20px;
}

.headingandPara p{
  width: 95%;
  min-width: 500px !important; 
  font-size: 15px !important;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TOP CONTENT */
.top-content {
  max-width: 600px;
  margin-bottom: 80px;
  animation: fadeUp 1s ease;
}

.badge {
  display: inline-block;
 background: var(--badge-bg);
  color: var(--badge-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.top-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.top-content p {
  font-size: 16px;
  color: #dce3ff;
  line-height: 1.6;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 30px;
  margin-top: 80px;
}

/* PERFECT CENTER LINE */
.timeline .line {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.line-tag {
  width: 60px;
  height: 4px;
  background: black;
  margin-top: 24px;
  animation: fadeSlideRight 0.6s ease both;
  animation-delay: 0.3s;
}

/* STEP */
.step {
  width: 100%;
  max-width: 220px;
  text-align: left;
  position: relative;
  z-index: 1;
}

/* CENTER ONLY THE BOX */
.box {
  width: 80px;
  height: 80px;
  background: #e6e6e6;
  color: #0b1d51;
  font-size: 26px;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.box span{
  font-size: 10px;
  left: 25px;
  margin-bottom: 10px !important;
 position: absolute;
}

/* HEADINGS */
.step h3 {
  font-size: 16px;
  font-weight: 100 !important;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* LINE */
.line-div {
  position: absolute;
  top: 40px;
  left: 75px;
  width: 95%;
  height: 2px;
  background: rgba(255,255,255,0.3);
  z-index: 0;
}

/* PARAGRAPH */
.step p {
  font-size: 14px;
  color: #cbd6ff;
  line-height: 1.6;
}

/* ALIGN FIRST BOX WITH LINE PERFECTLY */
.step .box {
  position: relative;
  top: 0;
}

/* OPTIONAL HOVER (LIKE MODERN UI) */
.step:hover .box {
  transform: translateY(-8px);
  transition: 0.3s;
}

/* //SECTION-5 */
/* ===== SECTION 5: VALUE IMPACT ===== */

.value-impact {
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 40%, #0a1628 100%);
  padding: 40px ;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.value-impact::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 80, 160, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.container-SECTION-5 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
}

.value-impact .top {
  display: flex;
  margin-bottom: 48px;
  gap: 160px !important;
}

.value-impact .top .left {
  display: flex;
  flex-direction: column;
}

.value-impact .badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cdd9f0;
  font-size: 11px;
  font-weight: 100;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
}

.value-impact .top .left h1 {
  font-size: 42px;
  font-weight: 100;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.value-impact .top .right {
  max-width: 420px;
  text-align: right;
  padding-top: 8px;
}

.value-impact .top .right p {
  color: #8fa3c8;
  font-size: 15px;
  width: 100%;
  margin-top: 40px !important;
  min-width: 550px;
  margin-left: 150px !important;
  line-height: 1.7;
  margin: 0;
}

.value-impact .grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.value-impact .card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px ;
  position: relative;
}

.value-impact .card.large {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-impact .card.large h2 {
  font-size: 22px;
  font-weight: 600;
  color: #0d1f3c;
  margin: 0;
  line-height: 1.3;
}

.value-impact .card.large p {
  font-size: 12px;
  color: #4a5a72;
  line-height: 1.7;
  margin: 0;
}

.value-impact .card.blue {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background: #2952e3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-impact .card.blue h3 {
  font-size: 20px;
  font-weight: 100;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.value-impact .card.blue p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.value-impact .card.blue .divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 8px 0 4px;
}

.value-impact .card.blue .metric {
  font-size: 36px;
  font-weight: 100;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}

.value-impact .card.blue .metric-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

.value-impact .card.small {
  grid-row: 2 / 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 28px 32px;
}

.value-impact .grid {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
}

.value-impact .card.small:nth-child(3) { grid-column: 1 / 2; grid-row: 2; }
.value-impact .card.small:nth-child(4) { grid-column: 2 / 3; grid-row: 2; }
.value-impact .card.small:nth-child(5) { grid-column: 3 / 4; grid-row: 2; }

.value-impact .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.value-impact .card.large {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.value-impact .card.blue {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.value-impact .card.small:nth-child(3) { grid-column: 1 / 2; grid-row: 2 / 3; }
.value-impact .card.small:nth-child(4) { grid-column: 2 / 3; grid-row: 2 / 3; }
.value-impact .card.small:nth-child(5) { grid-column: 3 / 4; grid-row: 2 / 3; }

.value-impact .card.small h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0d1f3c;
  margin: 0;
  line-height: 1.35;
}

.value-impact .card.small p {
  font-size: 12px;
  color: #4a5a72;
  line-height: 1.65;
  margin: 0;
}

.value-impact .line {
  width: 32px;
  height: 3px;
  background: #2952e3;
  border-radius: 2px;
  margin-bottom: 4px;
}

.value-impact .line.dark {
  background: black;
}

/* section six css start */
.section-six {
  min-height: 90vh;
  padding: 10px ;
  display: flex;
  font-family: 'Sen1';
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
}

.section-six .badge {
  
  display: inline-flex;
  align-items: center;
  background: var(--badge-bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--badge-color);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
}

/* Heading */
.section-six h1 {
  font-size: 48px;
  font-weight: 800;
  color: #020617;
  line-height: 1.2;
  max-width: 900px;
  margin-bottom: 24px;
}

/* Paragraph */
.section-six p {
  font-size: 18px;
  color: #475569;
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 100;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Primary Button */
.btn.primary {
  background: #0b5cff;
  color: #ffffff;
}

.btn.primary:hover {
  background: #094fd6;
}

/* Outline Button */
.btn.outline {
  border: 1.5px solid #0b5cff;
  color: #0b5cff;
  background: transparent;
}

.btn.outline:hover {
  background: #0b5cff;
  color: #ffffff;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .section-six {
    min-height: 65vh;
  }

  .section-six h1 {
    font-size: 32px;
  }

  .section-six{
    padding: 0px 20px !important;
  }

  .section-six p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
/* section six css end */

/* ANIMATION */
/* animations for all sections  */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 7px #32db65; }
  50%       { box-shadow: 0 0 16px #32db65, 0 0 28px rgba(50, 219, 101, 0.4); }
}

@keyframes progressGrow {
  from { width: 0; }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE MOBILE CSS */
/* MOBILE CSS FOR ALL SECTIONS   */

/* ══════════════════════════════════════
   MOBILE CSS — ALL SECTIONS
   Breakpoints: 768px | 480px
══════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── GLOBAL ── */
  body {
    overflow-x: hidden;
  }

  img {
    height: 36px;
  }

  /* ════════════════════════════
     SECTION 1 — HERO
  ════════════════════════════ */

  .hero-section {
    background: radial-gradient(ellipse 100% 60% at 50% 0%, #1847f5 0%, #0a1f6e 50%, #050d2e 85%),
                #050d2e;
  }

  .container {
    flex-direction: column;
    padding: 48px 20px 10px;
    min-height: unset;
    gap: 56px;
    margin-top: 50px;
  }

  .section-left {
    margin-left: 0;
    width: 100%;
    align-items: flex-start;
  }

  .section-left-mainheading {
    font-size: 10px;
    margin-bottom: 16px;
  }

  .section-left-heading {
    font-size: 26px;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .section-left-text {
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin-bottom: 24px;
  }

  .btn,
  .btn1 {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  .list {
    grid-template-columns: 1fr 1fr;
    gap: 10px ;
  }

  .list li {
    font-size: 10px;
    width: 100%;
    letter-spacing: 0.1px;
  }

  .section-right {
    width: 100%;
    left: 0;
    padding-bottom: 70px;
  }

  .card-main {
    padding: 20px 18px 0;
  }

  .active-engagements {
    font-size: 17px;
  }

  .progress-bar {
    width: 80px;
  }

  .list-label {
    font-size: 12px;
  }

  .stat-value {
    font-size: 20px;
  }

  .stat-label {
    font-size: 8.5px;
  }

  .engagement-card {
    left: 0;
    bottom: 0;
    width: 160px;
    padding: 10px;
  }

  .engagement-value {
    font-size: 22px;
  }

  .engagement-label {
    font-size: 8px;
  }

  /* ════════════════════════════
     SECTION 2 — STRATEGIC
  ════════════════════════════ */

  .strategic-section {
    padding: 25px;
  }

  .strategic-inner {
    padding: 48px 20px;
  }

  .strategic-container {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
  }

  .left-content {
    max-width: 100%;
    width: 100%;
  }

  .left-content h1 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .left-content p {
    font-size: 15px;
    min-width: unset !important;
    width: 100%;
    margin-bottom: 14px;
  }

  .badge {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .line {
    width: 36px;
    height: 3px;
    margin-bottom: 16px;
  }

  .right-card {
    width: 100%;
    padding: 22px 18px;
  }

  .card-item {
    padding: 14px;
    gap: 12px;
  }

  .card-item h5 {
    font-size: 14px;
  }

  .card-item p {
    font-size: 13px;
  }

  .model-wrapper {
    width: 100%;
    padding: 10px;
  }

  .model-card {
    padding: 18px 16px;
  }

  .model-item {
    padding: 14px 16px 14px 24px;
    margin-bottom: 10px;
  }

  .model-item h5 {
    font-size: 13px;
  }

  .model-item p {
    font-size: 12px;
  }

  /* ════════════════════════════
     SECTION 3 — PROGRAMS
  ════════════════════════════ */

  .section-3 {
    padding: 40px 20px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .header-row {
    flex-direction: column;
    gap: 14px;
  }

  .section-title {
    font-size: 26px;
    max-width: 100%;
  }

  .section-desc {
    text-align: left;
    max-width: 100%;
    font-size: 14px;
  }

  .section-badge {
    font-size: 10px;
    margin-bottom: 20px;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .program-card {
    padding: 20px 16px 18px;
  }

  .card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
  }

  .card-icon svg {
    width: 18px;
    height: 18px;
  }

  .card-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .card-body {
    font-size: 12.5px;
    margin-bottom: 18px;
  }

  .card-tag {
    font-size: 9.5px;
    margin-bottom: 8px;
  }

  .card-link {
    font-size: 10.5px;
  }

  /* ════════════════════════════
     SECTION 4 — FRAMEWORK
  ════════════════════════════ */

  .framework {
    padding: 40px 20px;
  }

  .headingandPara {
    flex-direction: column !important;
    min-width: unset !important;
    gap: 14px;
    margin-bottom: 40px;
  }

  .headingandPara h1 {
    width: 100% !important;
    font-size: 26px !important;
    min-width: unset !important;
  }

  .headingandPara p {
    width: 100% !important;
    min-width: unset !important;
    font-size: 14px !important;
    color: #dce3ff;
    line-height: 1.65;
  }

  .top-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .top-content h1 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .top-content p {
    font-size: 14px;
  }

  .timeline {
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
  }

  .timeline .line,
  .line-div {
    display: none;
  }

  .step {
    max-width: 100%;
    width: 100%;
  }

  .box {
    width: 64px;
    height: 64px;
    font-size: 22px;
    margin-bottom: 14px;
  }
  
  .box span {
  font-size: 10px;
  left: 13px;
  margin-bottom: 10px !important;
  position: absolute;
  }

  .step h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .step p {
    font-size: 13px;
  }

  /* ════════════════════════════
     SECTION 5 — VALUE IMPACT
  ════════════════════════════ */

  .value-impact {
    padding: 40px 20px;
    min-height: unset;
  }

  .container-SECTION-5 {
    padding: 0;
  }

  .value-impact .top {
    flex-direction: column;
    gap: 14px !important;
    margin-bottom: 24px;
  }

  .value-impact .top .left {
    gap: 10px;
  }

  .value-impact .top .left h1 {
    font-size: 26px;
    white-space: normal;
  }

  .value-impact .badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .value-impact .top .right {
    max-width: 100%;
    text-align: left;
    padding-top: 0;
  }

  .value-impact .top .right p {
    font-size: 14px;
    min-width: unset !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    line-height: 1.65;
  }

  /* Stack all cards in single column */
  .value-impact .grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 12px;
  }

  .value-impact .card.large,
  .value-impact .card.blue,
  .value-impact .card.small:nth-child(3),
  .value-impact .card.small:nth-child(4),
  .value-impact .card.small:nth-child(5) {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
  }

  .value-impact .card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .value-impact .card.large {
    gap: 12px;
  }

  .value-impact .card.large h2 {
    font-size: 17px;
  }

  .value-impact .card.large p {
    font-size: 13px;
  }

  .value-impact .card.blue {
    gap: 12px;
  }

  .value-impact .card.blue h3 {
    font-size: 17px;
  }

  .value-impact .card.blue p {
    font-size: 13px;
  }

  .value-impact .card.blue .metric {
    font-size: 28px;
  }

  .value-impact .card.blue .metric-text {
    font-size: 11px;
  }

  .value-impact .card.small {
    padding: 20px 18px 22px;
    gap: 10px;
  }

  .value-impact .card.small h4 {
    font-size: 14px;
  }

  .value-impact .card.small p {
    font-size: 13px;
  }

  .value-impact .line {
    width: 26px;
    height: 3px;
    margin-bottom: 2px;
  }

}

/* ══════════════════════════════════════
   EXTRA SMALL — 480px
══════════════════════════════════════ */

@media (max-width: 480px) {

  /* Hero */
  .section-left-heading {
    font-size: 22px;
  }

  .section-left-text {
    font-size: 13px;
  }

  .stat-value {
    font-size: 18px;
  }

  /* Section 3 */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
  }

  /* Section 4 */
  .headingandPara h1 {
    font-size: 22px !important;
  }

  .box {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  /* Section 5 */
  .value-impact .top .left h1 {
    font-size: 22px;
  }

  .value-impact .card.large h2 {
    font-size: 15px;
  }

  .value-impact .card.blue .metric {
    font-size: 24px;
  }

  /* Section 2 */
  .left-content h1 {
    font-size: 22px;
  }

  .model-card {
    padding: 14px;
  }

  .right-card {
    padding: 18px 14px;
  }
}