/* =========================
   GLOBAL RESET + FONT
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, p, h1, h2, h3, h4, h5, span, div {
  font-family: 'Poppins', sans-serif !important;
}

/* =========================
   COMPANY STORY
========================= */
.company-story {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px;
}

.story-heading {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.3;
}

.story-heading span {
  color: #76b900;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.story-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.story-highlight {
  font-weight: 600;
  color: #0b1f3a;
  font-size: 17px;
  border-left: 3px solid #76b900;
  padding-left: 14px;
}

.story-quote {
  margin-top: 30px;
  padding: 25px 28px;
  background: #f7faf3;
  border-left: 4px solid #76b900;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.story-quote strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  color: #111;
}

/* =========================
   ROADMAP SECTION
========================= */
.story-roadmap {
  background: #ffffff;
  padding: 80px 20px 100px;
  font-family: 'Poppins', sans-serif !important;
}

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

.story-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #8BC34A;
}

.story-header p {
  margin-top: 10px;
  margin-bottom: 100px;
  font-size: 17px;
  color: #555;
}

.roadmap-wrap {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.road-svg {
  width: 100%;
  height: 220px;
  display: block;
}

.milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  align-items: center;
}

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dot {
  width: 18px;
  height: 18px;
  background: #8BC34A;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(106, 90, 205, 0.15);
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  width: 260px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.card h4 {
  font-size: 18px;
  margin: 10px 0 8px;
  color: #2c3e50;
  font-weight: 600;
}

.card p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
}

.year {
  display: inline-block;
  background: #8BC34A;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.milestone.up {
  transform: translateY(-80px);
}

.milestone.down {
  transform: translateY(80px);
}

/* =========================
   MISSION & VISION
========================= */
.mv-section {
  padding: 120px 20px;
  background: #f9fafb;
}

.section-title {
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  color: #0b1f3a;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #76b900;
  display: block;
  margin: 12px auto 0;
}

.mv-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mv-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.mv-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0b1f3a;
}

.mv-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
}
/* =========================
   VALUES SECTION (SOLID VERSION)
========================= */
.values-section {
  padding: 120px 20px;
  background: #f9fafb;
  text-align: center;
}
.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.values-grid > * {
    width: calc(33.33% - 20px);
    margin: 10px;
}

.value-item {
  padding: 30px 25px;
  background: #ffffff;
  text-align: left;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s ease;
}

/* remove extra borders */
.value-item:nth-child(3n) {
  border-right: none;
}

.value-item:nth-last-child(-n+3) {
  border-bottom: none;
}

.value-item h4 {
  font-size: 17px;
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
}

/* subtle hover instead of floating */
.value-item:hover {
  background: #f3f7ed;
}
/* =========================
   FOOTER FIX (CRITICAL)
========================= */
#footer .u-text-5 {
  color: #cccccc !important;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .milestones {
    grid-template-columns: 1fr;
    position: static;
    height: auto;
    gap: 50px;
  }

  .milestone {
    transform: none !important;
  }

  .dot {
    display: none;
  }

  .card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .mv-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}
.about-deep {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px;
}

.about-deep p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.section-title {
  font-size: 34px;
  font-weight: 600;
  margin-top: 60px;
  margin-bottom: 10px;
  color: #0b1f3a;
}

.section-subtitle {
  font-size: 18px;
  color: #76b900;
  margin-bottom: 25px;
  font-weight: 500;
}

.process-block {
  margin-bottom: 25px;
}

.process-block h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}