.nav-link{
  position: relative;
  color: #000;
  text-decoration: none !important;
}
.nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #007bff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Hover effect*/
.nav-link:hover::after{
  transform: scaleX(1);
}

.nav-link.active::after{
  transform: scaleX(1);
}

 .list{
  background-color: blue;
  color: white;
 }
 .list:hover{
outline-width: 23px;
outline-style: auto;
outline-color: black;
  background-color: none;
  color: black;
 }


  /* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(rgba(25, 35, 51, 0.7), rgba(25, 35, 51, 0.7)), url('https://images.unsplash.com/photo-1520050206274-a1ae44613e6d?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  position: relative;
}
    /* Team Images */
    .team-member img {
      border-radius: 50%;
      object-fit: cover;
      height: 150px;
      width: 150px;
    }
    .icon-box {
      font-size: 2rem;
      color: #ffc107;
    }

  .rm-values .icon {
    min-width: 58px;
    min-height: 58px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    color: white;
  }
/* Footer */
     .footer {
      background: #101010;
      color: #bbb;
      padding: 60px 20px 20px;
    }
    .footer h5 {
      color: #fff;
      margin-bottom: 20px;
      font-weight: 600;
    }
    .footer a {
      color: #bbb;
      text-decoration: none;
    }
    .footer a:hover {
      color: #ffc107;
    }
    .social-icons a {
      font-size: 20px;
      margin-right: 15px;
      color: #bbb;
      transition: 0.3s;
    }
    .social-icons a:hover {
      color: #ffc107;
    }
    .footer-bottom {
      border-top: 1px solid #444;
      margin-top: 30px;
      padding-top: 15px;
      font-size: 14px;
      color: #888;
    }