
/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
}




/* rtl:end:remove */

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}






/*
 * Extra utilities
 */

.flex-equal > * {
  flex: 1;
}
@media (min-width: 768px) {
  .flex-md-equal > * {
    flex: 1;
  }
}



/* Default nav link */
.nav-link {
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Active nav link */
.nav-link.active {
  font-weight: 700; /* Bold */
  color: #000000 !important; /* Primary blue */
}

/* Underline with blur glow effect */
/* Underline with blur glow effect */
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* Adjust underline position */
  width: 100%;
  height: 3px; /* Thickness */
  border-radius: 4px;
}
