/* About Page Additional Styles */

.about-hero-section {
  width: 100%;
  height: 75vh; /* height 70vh */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;

  /* Background image + overlay gradient */
  background: 
    url("../images/about-image/about-our-story-banner.png")
      center/cover no-repeat;

  /* Smooth overlay blending */
  background-blend-mode: overlay;
}

/* Hero text */
.about-hero-section .hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero-section .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
}


.about-story-section,
.about-mission-section,
.about-values-section,
.about-team-section,
.about-timeline-section,
.about-achievements-section,
.about-trust-section,
.about-culture-section,
.about-why-section {
  padding: 5rem 0;
}

.about-story-section,
.about-team-section,
.about-achievements-section {
  background-color: var(--light-gray);
}

.mission-card {
  background-color: var(--card-bg);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mission-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white-tex);
  margin-bottom: 1rem;
}

.mission-card p {
  color: var(--white-tex);
  line-height: 1.8;
}

.value-card {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.value-card:hover {
  background-color: var(--card-bg);
  transform: translateY(-4px);
}

.value-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.value-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white-tex);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--white-tex);
  font-size: 0.9rem;
}

.team-card {
  background-color: var(--card-bg);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.team-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white-tex);
  padding: 1.5rem 1rem 0.5rem;
}

.team-role {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0 1rem;
}

.team-bio {
  color: #666;
  font-size: 0.85rem;
  padding: 0 1rem 1.5rem;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--accent-color);
  transform: translateX(-1px);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-date {
  text-align: right;
  padding-right: 5%;
}

.timeline-item:nth-child(even) .timeline-date {
  text-align: left;
  padding-left: 5%;
  margin-left: 50%;
}

.timeline-date {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  width: 45%;
}

.timeline-content {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  width: 45%;
  margin-left: 50%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: 50%;
}

.timeline-content h4 {
  color: var(--white-tex);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #666;
  font-size: 0.9rem;
}

.achievement-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.achievement-card p {
  color: var(--white-tex);
  font-weight: 600;
}

.client-logo {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.client-logo img {
  max-width: 100%;
  height: auto;
}

.culture-item {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.culture-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.culture-item h4 {
  color: var(--white-tex);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.culture-item p {
  color: #666;
  font-size: 0.9rem;
}

.about-cta-section {
  background: linear-gradient(135deg, var(--white-tex) 0%, #1a1d21 100%);
  color: white;
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-date,
  .timeline-content {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .timeline-item:nth-child(odd) .timeline-date {
    text-align: left;
    padding-right: 0;
    padding-left: 60px;
  }

  .timeline-item:nth-child(even) .timeline-date {
    text-align: left;
    padding-left: 60px;
    margin-left: 0;
  }

  .timeline-content {
    margin-left: 0;
    margin-right: 0;
    padding-left: 60px;
  }
}
