@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap');

body {
  background-color: #f4f8fb;
  font-family: 'Open Sans', sans-serif; /* or 'Segoe UI' if preferred */
  color: #2c3e50;
  margin: 0;
  padding: 0;
}

.navbar {
  position: fixed;
  top: 1rem;
  left: 1rem;
  background: #fff;
  border-radius: 10px;
  padding: 1rem 0;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
  height: calc(100vh - 2rem);
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.navbar__item {
  width: 100%;
  text-align: center;
  margin: 0.5rem 0;
  position: relative;
}

.navbar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  width: 100%;
  color: #6a778e;
  text-decoration: none;
  position: relative;
  transition: all 250ms ease;
}

.navbar__link:hover {
  background-color: #406ff3;
  color: #fff;
  border-radius: 8px;
}

.navbar__link span {
  position: absolute;
  left: 100%;
  transform: translateX(-60px);
  opacity: 0;
  pointer-events: none;
  color: #406ff3;
  background: #fff;
  padding: 0.75rem;
  transition: all 250ms ease;
  border-radius: 18px;
  white-space: nowrap;
  font-size: 0.85rem;
}

.navbar:hover .navbar__link:hover span {
  opacity: 1;
  transform: translateX(0);
}
    .card {
      border-radius: 1rem;
    }
    .img-fluid {
      border-radius: 1rem 0 0 1rem;
      object-fit: cover;
      height: 100%;
    }
    @media (max-width: 768px) {
      .img-fluid {
        border-radius: 1rem 1rem 0 0;
      }
    }