body {
  margin: 0;
  padding: 0;
}

/* welcome */
.welcome {
  padding: 140px 0 180px;
  position: relative;
}

.welcome-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.welcome-left {
  width: 50%;
}

.welcome-left p {
  color: #666666;
}

.welcome-title-container {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 30px;
}

.welcome-title-container h2 {
  color: #0f145b;
}

.yellow-bar {
  background-color: #c2b39c;
  width: 10px;
}

.welcome-right {
  width: 50%;
  background-color: #0f145b;
  border-radius: 20px;
}

.welcome-right div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-right img {
  width: 70%;
  padding-top: 25%;
  padding-bottom: 25%;
}

.bottom-img img {
  width: 100%;
  position: absolute;
  bottom: 0;
}

/* philosophy */
.philosophy {
  padding-top: 100px;
  padding-bottom: 100px;
}
.philosophy .heading h2 {
  color: #0f145b;
  margin-bottom: 40px;
}
.philosophy .heading p {
  color: #666666;
  margin-bottom: 85px;
}
.philosophy .content {
  background-color: #0f145b;
  padding: 30px;
  position: relative;
  max-width: 500px;
  border-radius: 20px;
}
.philosophy .content .content-icon img {
  height: 60px;
  margin-bottom: 20px;
}
.philosophy .content .content-title {
  color: white;
  margin-bottom: 25px;
}
.philosophy .content .content-text {
  color: white;
  margin-bottom: 40px;
}
.philosophy .content .content-img {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: -2px;
}

/* timeline */
.timeline {
  background-color: #f4f4f4;
  padding: 100px 0;
  position: relative;
}
.timelineBg-Image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.timeline-top {
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
}
.timeline-top img {
  width: 90px;
  padding-bottom: 30px;
}
.timeline-top h3 {
/*  font-family: "KelsonSans", sans-serif;*/
  font-weight: bold;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 30px;
  color: #0f145b;
}
.timeline-top p {
  /* font-family: "TitilliumWeb", sans-serif; */
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  color: #666666;
}
.timeline-container {
  position: relative;
  padding: 50px 15px;
  max-width: 80%;
  margin-left: 0;
  z-index: 1;
}

.timeline-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  /* background-color: #ccc; */
  z-index: 1;
  background-image: linear-gradient(to bottom, transparent, #0a3277 5%, #0a3277 95%, transparent);
}
html[lang="ar"] .timeline-line{
  left:unset;
  right: 30px;
}

.timeline-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 90%;
  background-color: #0a3277;
  z-index: 2;
}
html[lang="ar"]{
  left:unset;
  right: 0px;
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  align-items: center;
  z-index: 20;
}

.timeline-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  border: 4px solid #0a3277;
  position: absolute;
  /* left: 1px; */
  z-index: 20;
}

.timeline-year {
  padding-inline-start: 100px;
  width: 250px;
/*  font-family: "KelsonSans", sans-serif;*/
  font-size: 100px;
  line-height: 120px;
  color: #c2b39c;
  font-weight: bold;
}

.timeline-content {
  /* flex-grow: 1; */
  padding-inline-start: 150px;
}

.timeline-title {
/*  font-family: "KelsonSans", sans-serif;*/
  font-size: 30px;
  font-weight: bold;
  color: #0f145b;
  margin-bottom: 15px;
}

.timeline-description {
  /* font-family: "TitilliumWeb", sans-serif; */
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
}

/* Animation classes */
.timeline-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Companies */
.companies {
  padding-top: 100px;
  padding-bottom: 80px;
}
.companies .heading h2 {
  color: #0f145b;
  font-size: 30px;
  /* font-family: "KelsonSans", sans-serif; */
  margin-bottom: 40px;
}
.companies .heading p {
  color: #666666;
  font-size: 20px;
  /* font-family: "TitilliumWeb", sans-serif; */
  margin-bottom: 85px;
}
.image-box {
  height: 100%;
  /* padding: 30px 0px; */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-box img {
  max-width: 100%;
  height: 40px;
}
.companies-lastImage {
  max-width: 100%;
  /* height: 40px; */
}
.companies-bottomImage {
  margin-top: 70px;
  width: 100%;
}
.company_logos{

}
.company_logos a{
  display: block;
  text-align: center;
}
.company_logos a img{
  /* max-height: 40px; */
  max-width: 100%;
  /* height: 40px; */
}
/* Responsive adjustments */
@media (max-width: 1440px) {
  .welcome {
    padding: 100px 0 130px;
  }
}

@media (max-width: 1024px) {
  .welcome {
    padding: 80px 0 100px;
  }
}

@media (min-width: 991.2px) and (max-width: 1280px) {
  .timeline-top {
    max-width: 60%;
  }
  .timeline-container {
    max-width: 90%;
  }
  .timeline-year {
    padding-left: 60px;
    width: 200px;
    font-size: 80px;
    line-height: 120px;
  }
  .timeline-content {
    padding-left: 80px;
  }
}
@media (max-width: 991px) {

  /* welcome */
  .welcome-container {
    flex-direction: column;
    gap: 30px;
  }

  .welcome-left,
  .welcome-right {
    width: 100%;
  }

  .welcome-title-container h2 {
    font-size: 26px;
  }

  .welcome-left p {
    font-size: 14px;
  }

  /* timeline area */
  .timeline-container {
    max-width: 100%;
  }
  .timeline-top {
    max-width: 80%;
  }
  .timeline-item {
    margin-bottom: 20px;
  }
  .timeline-year {
    padding-left: 50px;
    width: 180px;
    font-size: 70px;
    line-height: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .timeline-content {
    padding-left: 100px;
  }
  .timelineBg-Image {
    width: 50px;
  }
  .companies-bottomImage {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  /* welcome */
  .welcome-container {
    gap: 20px;
  }

  .welcome-title-container h2 {
    font-size: 24px;
  }

  .welcome-left p {
    font-size: 13px;
  }

  .bottom-img {
    display: none;
  }
  /* philosophy */
  .philosophy {
    padding: 50px 0;
  }
  /* timeline area */
  .timeline {
    padding: 70px 0;
  }
  .timelineBg-Image {
    display: none;
  }
  .timeline-top {
    max-width: 100%;
  }
  .timeline-top h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .timeline-container {
    padding: 30px 15px;
    max-width: 100%;
  }
  .timeline-item {
    margin-bottom: 20px;
    z-index: 1;
  }
  .timeline-line {
    display: none;
  }

  .timeline-dot {
    display: none;
  }

  .timeline-year {
    width: 80px;
    font-size: 36px;
    padding-inline-start: 0px;
  }
  .timeline-content {
    padding-inline-start: 60px;
  }

  .timeline-title {
    font-size: 18px;
  }

  .timeline-description {
    font-size: 14px;
  }
  /* companies */
  .companies .heading h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .companies .heading p {
    font-size: 20px;
    /* font-family: "TitilliumWeb", sans-serif; */
    font-weight: normal;
    margin-bottom: 45px;
  }
  .companies-bottomImage {
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline-content {
    padding-inline-start: 0px;
  }

  .companies-bottomImage {
    margin-top: 20px;
  }
}
