/* ========== Our History Section ========== */

.timeline-section {
  padding: 80px 150px;
  background: #ffffff;
}

/* Our History pill */
.section-label {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-bottom: 10px;
}

.section-label .img {
  width: 16px;
  height: 16px;
  position: relative;
  top: -5px;   /* negative = move upward */
  right: 7px;
}

/* Header row with title + paragraph */
.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-left: 20px;
}

.timeline-left {
  flex: 1;
}

.timeline-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1e2d1f;
  margin: 0;
}

.timeline-left h2 span {
  color: #1e73be; /* highlighted year */
}

.timeline-right {
  flex: 1;
  padding-right: 40px;
}

.timeline-right .desc {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}


/* Timeline Items */
.timeline {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  padding: 80px 150px;
  flex-wrap: wrap;
}

.timeline-item {
  flex: 1;
  min-width: 220px;
  padding: 0 20px;
  text-align: left;
  position: relative;
}

.timeline-item h3 {
  position: absolute;
  top: -150px;              /* move it above the line */
  left: 5%;
  transform: translateX(0);
  text-align: left;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  -webkit-text-stroke: 0.5px #000;
  background: transparent;
  letter-spacing: 2px;
}

/* Green dots on line */
.timeline-item::before {
  content: '';
  width: 10px;
  height: 10px;
  background: green;
  border-radius: 50%;
  position: absolute;
  top: -85px;
  transform: translateX(-50%);
}

.timeline-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: -50px;
}

.timeline-item p {
  font-size: 12px;
  color: #030303;
}


