/* Rhodes Scholarship CSS */

/* Side-Nav */
.nav-section {
  background-color: #f8f9fa; /* Light gray background for title */
  padding: 10px 15px;
  font-weight: 600;
}
.nav-link {
  display: block;
  padding: 10px 15px;
  color: #212529;
  text-decoration: none;
  border-bottom: 1px solid #dee2e6;
  transition: background 0.2s ease;
}
.nav-link:hover {
  background-color: #F2F4F8;  
  color: #2C5E65;
}
.nav-link.active {
  font-weight: 700;
  color: #2C5E65; /* Bootstrap primary or use custom */
  background-color: #F2F4F8;
}
/* Side-Nav END */

.features-grid-template {
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .features-grid-template {
    grid-template-columns: repeat(2, 1fr);
  }
}

.green-link{
    color: #49906D !important;
    text-decoration: underline !important;
}

/* application section css */
.step-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #198754; /* Bootstrap success color */
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}
.step-line {
  border-right: 2px dashed #198754;
  height: 100%;
  position: absolute;
  left: 1.45rem;
  top: 3rem;
  z-index: -1; /* Ensure the line is behind the circles */
}
.step-content {
  margin-left: 2rem;
}

.material-link:hover {
  text-decoration: underline;
}

.icon-box {
  width: 20px;
  height: 20px;
  background-color: #198754;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  border-radius: 3px;
  margin-right: 8px;
}
.cta-box {
  background-color: #fef9f1;
  border-radius: 10px;
}
.cta-box .btn-link {
  font-weight: 700;
  text-decoration: none;
  color: #198754;
}
.cta-box .btn-link:hover {
  text-decoration: underline;
}

/* Done By Adam */