/* Value Section */

.value-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, #0b9aaa 0%, #0b9aaa 62%, #098595 62%);
  color: var(--white);
}

.value-section::before {
  position: absolute;
  top: -160px;
  left: 45%;
  width: 500px;
  height: 500px;
  border: 85px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.value-section .section-label {
  color: #d9ffff;
}

.value-section .section-title {
  color: var(--white);
}

.value-section .section-description {
  color: rgba(255, 255, 255, 0.82);
}

.value-card {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 32px 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  background-color: rgba(8, 31, 61, 0.78);
  text-align: center;
  backdrop-filter: blur(5px);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  background-color: var(--navy);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.6rem;
}

.value-card h3 {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.value-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.7;
}
