/* ==== About Us page styles ==== */

#about_hero {
  background: linear-gradient(135deg, #04122b 0%, #0266e0 100%);
  padding: 60px 0;
}

#about_hero .about_hero_heading h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

#about_hero .about_hero_heading a {
  color: #cfe1fb;
  text-decoration: none;
  font-size: 15px;
}

#about_hero .about_hero_heading a:hover {
  color: #ffffff;
}

.about_eyebrow {
  display: inline-block;
  color: #0266e0;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

#about_story {
  padding: 70px 0;
}

.about_story_title {
  font-size: 28px;
  font-weight: 700;
  color: #0a0a23;
  margin-bottom: 18px;
  line-height: 1.35;
}

.about_story_disc {
  color: #4b4b5a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about_story_timeline {
  background: #f5f8fd;
  border: 1px solid #e3ebfa;
  border-radius: 14px;
  padding: 32px 28px;
}

.timeline_item {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 28px;
}

.timeline_item:last-child {
  padding-bottom: 0;
}

.timeline_item::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: #cfe1fb;
}

.timeline_item:last-child::before {
  display: none;
}

.timeline_dot {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0266e0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.timeline_content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0a0a23;
  margin-bottom: 4px;
}

.timeline_content p {
  font-size: 14px;
  color: #5b5b6b;
  margin-bottom: 0;
  line-height: 1.6;
}

#about_values {
  background: #f9fafc;
  padding: 70px 0;
}

.about_values_heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.about_values_heading h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0a0a23;
}

.value_card {
  background: #ffffff;
  border: 1px solid #eceff5;
  border-radius: 14px;
  padding: 32px 26px;
  text-align: center;
  height: 100%;
  margin-bottom: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(2, 102, 224, 0.12);
}

.value_card_icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(2, 102, 224, 0.1);
  color: #0266e0;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.value_card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0a0a23;
  margin-bottom: 10px;
}

.value_card p {
  font-size: 14.5px;
  color: #5b5b6b;
  line-height: 1.7;
  margin-bottom: 0;
}

#about_leadership_cta {
  padding: 60px 0;
}

.leadership_cta_wrapper {
  background: linear-gradient(135deg, #04122b 0%, #0266e0 100%);
  border-radius: 16px;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.leadership_cta_text h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.leadership_cta_text p {
  color: #d9e6fb;
  font-size: 15px;
  margin-bottom: 0;
}

.leadership_cta_btn {
  background: #ffffff;
  color: #0266e0;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s ease;
}

.leadership_cta_btn:hover {
  opacity: 0.85;
  color: #0266e0;
}

@media (max-width: 767px) {
  .about_story_title {
    font-size: 22px;
  }

  .leadership_cta_wrapper {
    flex-direction: column;
    text-align: center;
  }
}
