.join-now-section{
  position:fixed;
bottom: 0;
width: 100%;
padding:15px;
background: linear-gradient(135deg, #1e3c72, #2a5298);
z-index: 1;
color: white;
text-align: center;
}

/* CSS */
.button-1 {
  background-color: #EA4C89;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 10px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-1:hover,
.button-1:focus {
  background-color: #F082AC;
}

.ed-course__students {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 12px;
    box-shadow: 0 0 0 rgba(0, 123, 255, 0.6);
    transition: all 0.3s ease;
    animation: pulseGlow 2s infinite;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ed-course__students:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
}

.ed-course__students i {
    font-size: 20px;
    animation: pulseIcon 2s infinite;
    color: #007bff;
}

.ed-course__students p {
    margin: 0;
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

/* Glowing border animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 rgba(0, 123, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 0 rgba(0, 123, 255, 0.4);
    }
}

/* Icon pulse */
@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* grid container */
.subject-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* the card */
.subject-card {
  position: relative;
  padding: 1.5rem 1rem;
  border: 2px solid var(--bs-border-color);
  border-radius: .9rem;
  background: #fff;
  transition: border-color .25s, box-shadow .25s, transform .1s;
  cursor: pointer;
  text-align: center;
}
.subject-card:hover {
  border-color: var(--bs-primary);
  box-shadow: 0 6px 18px rgba(0,0,0,.07);
  transform: translateY(-2px);
}

/* selected state via sibling selector */
.btn-check:checked + .subject-card {
  border-color: var(--bs-success);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), .25);
}

/* price + name */
.subject-card h6 { margin-bottom: .25rem; }
.subject-price   { font-weight: 600;font-size:20px;}

/* discount badge for “Both” */
.badge-discount {
  position: absolute;
  top: .6rem;
  right: .6rem;
}
