.core-value {
  padding: 1rem 1rem;
  margin-bottom: 0.8rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(171, 142, 25, 0.5);
  box-shadow: 0 0 1rem rgba(171, 142, 25, 0.5);
}

.core-value__title {
  color: #ab8d19;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

.program-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  height: 100%;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.program-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
  text-align: left;
}

.card-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #222;
}

.card-content p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* Rotating animation */
.approach-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 400px;
}

.circle-container {
  position: relative;
  width: 350px;
  height: 350px;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.center-logo img {
  width: 120px;
  height: auto;
}

.orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #000;
  border-radius: 50%;
  animation: rotateOrbit 20s linear infinite;
}

.icon {
  position: absolute;
  width: 98px;
  height: 98px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon img {
  width: 64px;
  height: 64px;
  /* filter: brightness(0) invert(1); make icons white if SVG/PNG */
}

/* Position each icon on the orbit circle */
.icon-1 {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.icon-2 {
  bottom: 40px;
  left: -40px;
}
.icon-3 {
  bottom: 40px;
  right: -40px;
}

/* Rotation animation */
@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Counter-rotate icons so they stay upright */
.icon img {
  animation: counterRotate 20s linear infinite;
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
