/* Override Bootstrap's primary color */
:root {
    --primary: #6897BB;
    --bs-primary: #6897BB; /* Replace with your color code */
    --bs-link-active-color: #6897BB;
}

.bg-primary,
.btn-primary {
    background-color: var(--bs-primary) !important;
}

.nav-link.active {
    color: #6897BB !important; /* Custom text color for active links */
  }