
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Josefin Sans', serif;
}

.nav-link{
  color: white;
  transition: all 0.3s;
}

.nav-link:hover {
  color: limegreen;
}

.nav-link.active {
  color: lime !important;
  font-weight: 600;
}

.card-body h1 span {
    font-size: 14px;
    background: linear-gradient(to right, rgba(0, 255, 0, 0.801), rgba(0, 150, 0, 0.8));
    font-family: 'Poppins', sans-serif;
}

.card-body img {
    height:80px;
    width:80px;
    object-fit:cover;
    border-radius:10px;
}

/* Default card shadow (optional, can match your current shadow-lg) */
.card {
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* smooth effect */
}

/* Hover effect */
.card:hover {
    box-shadow: 0 0 10px 5px limegreen; /* lime glow */
    transform: translateY(-5px); /* optional lift effect */
}

.week-stepper {
  max-width: 700px;
}

.week-stepper .progress {
  height: 6px;
  border-radius: 3px;
}

.week-stepper .progress-bar {
  transition: width 0.4s ease-in-out;
}

.week-stepper .stepper {
  margin-top: -16px; /* pull circles over the progress bar */
  position: relative;
}

.week-stepper .circle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #333;
  border: 3px solid #666;
  display: inline-block;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.week-stepper .step.active .circle,
.week-stepper .circle:hover {
  background: lime;
  border-color: lime;
  color: #000;
  box-shadow: 0 0 10px lime;
}

