.info-card{
  border-radius: 15px;
  padding: 20px;
  background: #ffffff0d;
  border: 1px solid #e5e7eb42;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(4px);
}

.bg-gradient{
  background: linear-gradient(90deg, #00587b 0%, #064b5e 100%) !important;
}

.info-card img{
  filter: brightness(0) saturate(100%) invert(68%) sepia(95%) saturate(647%) hue-rotate(3deg) brightness(110%) contrast(106%);
}


.latest-bg{
  border-top: 4px solid #005f83;
  border-bottom: 4px solid #005f83;
}

.border-bottom-line{
  position: relative;
  width: fit-content !important;
  padding-bottom: 10px;
}
.border-bottom-line::after{
  position: absolute;
  content: '';
  height: 5px;
  width: 40%;
  border-radius: 10PX;
  background: linear-gradient(90deg, #01c0fc 0%, #54db4f 100%) !important;
  left: 0;
  bottom: 0;
}

.info-stories-card{
  border: 2px solid #e2e8f0;
  padding: 20px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.info-stories-card:hover{
  border: 2px solid #005373;
}
.badge.bg-brand-yellow{
  background: #ffe102 !important;
  padding: 10px 18px;
}
.svg-light img{
  filter: brightness(0) saturate(100%) invert(46%) sepia(12%) saturate(862%) hue-rotate(176deg) brightness(94%) contrast(90%);
  position: relative;
  top: -2px;
}
.svg-light p{
  color: #62748e;
}
hr {
  color: #62748e;
  opacity: 0.15;
}

.info-gradient-icon-bg{
  background: linear-gradient(140deg, #005F83 0%, #00BFFF 100%) !important;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.info-gradient-icon-bg img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(235deg) brightness(102%) contrast(101%);
}

.nav-pills-bar{
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.nav-pills li:not(:last-child){
  margin-right: 10px;
}

.nav-pills .nav-link{
  border: 2px solid #e2e8f0;
  color: #004e70;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background: #004e70;
  border: 2px solid #004e70;
}

.info-news-card .badge{
  background: #fff !important;
  border: 1px solid #dadada;
}

.info-news-card{
  padding: 20px;
  border: 2px solid #dadada;
  border-radius: 15px;
  transition: 0.3s all ease-in-out;
  position: relative;
  overflow: hidden;
}

.info-news-card:hover{
  border: 2px solid #005373;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.info-news-card::before {
  content: '';
  position: absolute;
  background: linear-gradient(to right, 
    #00bfff 0%, 
    #56db46 50%, 
    #ffe102 100%
  );
  height: 5px;
  width: 0;              /* start collapsed */
  top: 0;
  left: 50%;             /* start from center */
  transform: translateX(-50%);
  transition: width 0.4s ease;
}
.info-news-card:hover::before {
  width: 100%;           /* expand both sides */
}

