/* Timeline Section Styles */
.journey-timeline-section {
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.journey-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #3a5ba7, #b71833);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.journey-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Timeline Container */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Timeline Center Line */
.timeline::before {
  content: "";
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, #3a5ba7, #b71833);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Timeline Event */
.timeline-event {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  visibility: hidden;
}

.timeline-event::after {
  content: "";
  display: table;
  clear: both;
}

/* Alternate positioning of events */
.timeline-event:nth-child(odd) .timeline-content {
  float: right;
  text-align: left;
  padding-left: 30px;
}

.timeline-event:nth-child(even) .timeline-content {
  float: left;
  text-align: right;
  padding-right: 30px;
}

/* Timeline Icon */
.timeline-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3a5ba7, #b71833);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.9);
}

/* Timeline Date */
.timeline-date {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: #b71833;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  z-index: 9;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
}

/* Timeline Content */
.timeline-content {
  position: relative;
  width: 45%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Timeline Title & Description */
.timeline-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.timeline-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #7c7b7b;
}

/* Company Values */
.company-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
  opacity: 0;
  visibility: hidden;
}

.value-item {
  background: linear-gradient(135deg, #3a5ba7, #b71833);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline::before {
    right: 30px;
    left: 90%;
  }
  .timeline.ar::before {
    right: 90%;
    left: 30px;
  }
  .timeline-event {
    margin-bottom: 50px;
  }
  .timeline-icon {
    right: 30px;
    left: 85%;
    transform: translateX(0);
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .timeline-icon.ar {
    left: 30px;
    right: 85%;
    transform: translateX(0);
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .timeline-date {
    right: 25px;
    left: 70%;
    transform: translateX(0);
    top: 60px;
    font-size: 0.9rem;
    text-align: center;
  }
  .timeline-date.ar {
    left: 25px;
    right: 70%;
    transform: translateX(0);
    top: 60px;
    font-size: 0.9rem;
    text-align: center;
  }
  .timeline-content {
    width: calc(100% - 80px);
    float: left;
    margin-right: 80px;
    margin-top: 50px;
    text-align: left !important;
    padding: 15px;
    top: 50px;
    left: 10px;
  }
  .timeline-content.ar {
    width: calc(100% - 80px);
    float: left;
    margin-left: 80px !important;
    margin-top: 30px;
    text-align: right !important;
    padding: 15px;
    left: 30px;
  }
  .timeline-event:nth-child(even) .timeline-content {
    float: right;
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
  }
  .timeline-title {
    font-size: 1.1rem;
  }
  .timeline-description {
    font-size: 0.9rem;
  }
  .company-values {
    flex-direction: column;
    align-items: center;
  }
  .value-item {
    width: 90%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .journey-title {
    font-size: 1.8rem;
  }
  .journey-subtitle {
    font-size: 1rem;
  }
  .timeline-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .timeline-date {
    top: 50px;
    font-size: 0.8rem;
    padding: 3px 10px;
  }
  .timeline-content {
    padding: 12px;
    margin-top: 25px;
  }
}/*# sourceMappingURL=about.css.map */