.one h1 {
  position: relative;
  text-align: center;
  font-size: 2.75rem;
  font-weight: 800;
  color: #0E73B4;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  margin-bottom: 1rem;
}

.one h1::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 28px;
  height: 5px;
  margin-left: -14px;
  background-color: #0E73B4;
}

.one h1::after {
  content: "";
  position: relative;
  display: block;
  width: 100px;
  height: 1px;
  background-color: #0E73B4;
  margin: 15px auto 0;
}

/* directors */

.profile-image-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
}

.profile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.profile-image-wrapper .circle-border {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: conic-gradient(from 270deg, #FCB715 0deg 100deg, transparent 100deg 360deg);
  z-index: 1;
  animation: rotateArc 6s linear infinite;
}

@keyframes rotateArc {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.two h1 {
  position: relative;
  text-align: start;
  /* Bootstrap-style or plain CSS */
  font-size: 2.75rem;
  font-weight: 800;
  color: #0E73B4;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  margin-bottom: 1rem;
}

/* Align underline to start (left) */
.two h1::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  /* changed from 50% to 0 */
  width: 28px;
  height: 5px;
  background-color: #0E73B4;
  margin-left: 0;
  /* remove centering offset */
}

/* Line below heading aligned to start */
.two h1::after {
  content: "";
  position: relative;
  display: block;
  width: 100px;
  height: 1px;
  background-color: #0E73B4;
  margin: 15px 0 0 0;
  /* remove auto-centering */
}

.name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #FCB715;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  position: relative;
  padding-left: 12px;
  text-transform: capitalize;
}

/* Decorative left border line */
.name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 80%;
  background-color: #FCB715;
  border-radius: 2px;
}

.nav-box {
  background-color: #f8f9fa;
  /* Light background */
  border: 2px solid #0E73B4;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .one h1 {
    font-size: 1.5rem;
  }

  .two h1 {
    font-size: 1.5rem;
  }

  .name {
    font-size: 1.3rem;
  }

}