.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: url('Acura.webp') center/cover no-repeat;
      height: 60vh;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
    }
    .hero-content {
      position: relative;
      text-align: center;
      z-index: 2;
    }
    /* Team Images */
    .team-member img {
      border-radius: 50%;
      object-fit: cover;
      height: 150px;
      width: 150px;
    }
    .icon-box {
      font-size: 2rem;
      color: #ffc107;
    }



    /* OUR VALUES */
      :root{
    --ride-primary: #000000;
    --ride-dark: #0a1a2f;
    --ride-accent: #ffc107;
    --card-bg: #ffffff;
    --muted: #6c757d;
  }

  .rm-values {
    font-family: 'Poppins', sans-serif;
    padding: 5rem 1rem;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    color: var(--ride-dark);
  }

  .rm-values .section-head {
    max-width: 900px;
    margin: 0 auto 2.25rem;
    text-align: center;
  }

  .rm-values h2 {
    color: var(--ride-primary);
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: .5rem;
    font-size: 1.8rem;
  }

  .rm-values p.lead {
    color: var(--muted);
    margin-bottom: 1.75rem;
  }

  .rm-values .value-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(12, 34, 63, 0.06);
    padding: 1.5rem;
    transition: transform .22s ease, box-shadow .22s ease;
    height: 100%;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .rm-values .value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(12,34,63,0.09);
  }

  .rm-values .icon {
    min-width: 58px;
    min-height: 58px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    color: white;
  }

  .rm-values .icon.trust { background: linear-gradient(135deg,#0d6efd,#0056b3); }
  .rm-values .icon.customer { background: linear-gradient(135deg,#28a745,#1e7e34); }
  .rm-values .icon.innov { background: linear-gradient(135deg,#6f42c1,#5a2ea6); }
  .rm-values .icon.sustain { background: linear-gradient(135deg,#20c997,#17a589); }

  .rm-values .value-title {
    font-weight: 600;
    margin: 0;
    color: var(--ride-dark);
  }

  .rm-values .value-desc {
    color: var(--muted);
    margin-top: .45rem;
    font-size: .95rem;
    line-height: 1.5;
  }

  /* small screens: compact cards */
  @media (max-width: 576px) {
    .rm-values { padding: 3rem 1rem; }
    .rm-values .icon { min-width: 48px; min-height: 48px; font-size: 1rem; border-radius: 8px; }
    .rm-values .value-card { padding: 1rem; gap: .75rem;}
  }

  

/* 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;
    }