p {
  font-size: 1rem;
  margin: 0;
}
/*Header BackGround*/
.Header {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 142, 0.6),
      rgba(1, 114, 128, 0.6)
    ),
    url("../img/factory\ calture\ header.webp") center/cover no-repeat;
  z-index: 1;
}

.iOS .page {
  background: url(../img/placeholder.jpg) center/cover no-repeat;
}
.page {
  background: url(../img/placeholder.jpg) center/cover no-repeat fixed;
}
.FactoryCalture-section {
  width: 70%;
  margin: 10vh auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 10vh;
}
.FactoryCalture-section h1 {
  margin-bottom: 5vh;
}

.values-horizontal {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value {
  display: block; /* Changed from flex to block for line break */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.value.animate {
  opacity: 1;
  transform: translateY(0);
}

.value-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem; /* Space between title and paragraph */
}

.value-title svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.value p {
  margin: 0;
  line-height: 1.4;
  padding-left: 1.75rem; /* Align with title text */
}

.title {
  font-weight: bold;
  font-size: 1.1rem;
  color: black;
}

/* Animation delays */
.value:nth-child(1).animate {
  transition-delay: 0.1s;
}
.value:nth-child(2).animate {
  transition-delay: 0.3s;
}
.value:nth-child(3).animate {
  transition-delay: 0.5s;
}
/* Global Reach */
