.featured-heading {
    font-size: 32px;
    font-weight: bold;
    color: #222; /* Adjust color as needed */
    position: relative;
    display: inline-block;
}

.featured-heading::before,
.featured-heading::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 3px solid #1C4887;
}

.featured-heading::before {
    top: -5px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.featured-heading::after {
    bottom: -5px;
    right: -10px;
    border-left: none;
    border-top: none;
}
.fade-in {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.8s ease-out, filter 0.8s ease-out;
}

.fade-in.show {
    opacity: 1;
    filter: blur(0);
}
.scrollbar-hidden::-webkit-scrollbar {
    display: none;
    
  }
  .scrollbar-hidden {
    -ms-overflow-style: hidden;  /* For Internet Explorer 10+ */
    scrollbar-width: none;  /* For Firefox */
    
  }
  .page-numbers{
  display:flex;
  }