/* About Us Section */
.about {
  position: relative;
  padding: 120px 0;
  min-height: 800px;
  background-color: #00478e;
  color: #ffffff;
  overflow: hidden;
}

.about-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: scaleX(-1);
}

.about-content {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px;
  align-items: center;
  direction: ltr;
  min-height: 500px;
}

.about .section-label,
.about .section-title,
.about .section-description {
  color: #ffffff;
}

.about-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 24px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 20px;
  font-weight: 500;
}

.about-visual {
  display: flex;
  justify-content: flex-start;
  order: 1;
}

.experience-badge {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(
    208deg,
    rgba(0, 167, 225, 1) 3%,
    rgba(0, 70, 141, 1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.badge-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.about .badge-number {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 16px;
}

.badge-text {
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
}

/* Our Story Text Styling */
.our-story-text {
  direction: rtl;
  text-align: right;
  order: 2;
}

.story-header {
  margin-bottom: 32px;
}

.story-title {
  font-family: "SomarSans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 16px 0;
  text-align: right;
}

.story-subtitle {
  font-family: "SomarSans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 24px 0;
  text-align: right;
}

.story-description {
  font-family: "SomarSans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  text-align: right;
  margin: 0;
}

/* Ensure grid layout on larger screens */
@media (min-width: 769px) {
  .about-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    direction: ltr !important;
  }

  .about-visual {
    order: 1 !important;
  }

  .our-story-text {
    order: 2 !important;
  }
}
