.news-events{
    padding-top: 0;
  }
.inner-title-sec{
    display: flex;
    align-items: center;
    gap: 15px;
}
.inner-title-sec .inner-title-icon{
    width: 87px;
    height: 83px;
    background: #D0BB68;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.innerpage-title-box{
    padding: 40px 0px;
    background: #23559B;
}
.inner-main-title h1{
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}
.news-events{
  padding-top: 0 !important;
}
.tab-buttons {
  display: flex;
  position: relative;
  flex-direction: column;
}
.tab-buttons button {
  padding: 20px 15px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.3s ease;
  border-bottom: 2px solid #cfcfcf;
  color: #86868B;
  position: relative;
  text-align: left;
}

.tab-buttons button.active {
  color: #23559b;
  border-bottom-color:#23559B ;
}

/* Movable underline */
.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: #23559b;
  transition: all 0.3s ease;
}

.tab-content {
  display: none;
  padding:20px;
  animation: fadeIn 0.4s ease-in-out;

}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-container{
    display: flex;
    gap: 30px;
}
.tab-content-box {
    flex: 1;
    z-index: 1;
}
.awards-img{
    width: 200px;
    height: 190px;
    border-radius: 10px;
    flex-shrink: 0;
}
.awards-img img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.award-cards{
    display: flex;
    gap: 30px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 15px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0);
    padding: 20px;
}
.awards-title{
    font-size: 20px;
    font-weight: 600;
    color: #23559B;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.awards-text-p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.awards-text{
    position: relative;
    flex: 1;
}
.awards-read-more{
    font-size: 16px;
    color: #23559b;
    font-weight: 600;
    text-decoration: none;
    text-decoration: underline;
    position: absolute;
    right: 0;
    bottom: 0;
}
.pagination-controls {
  margin-top: 20px;
  justify-content: right;
  align-items: center;
  display: grid;
  grid-auto-flow: column;
  gap: 10px;
  background: #f5f5f7;
}

.pagination-controls svg {
  color: #23559B;
}

.pagination-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#prevBtn,
#nextBtn,
#prevBtn_ad,
#nextBtn_ad,
#prevBtn_an,
#nextBtn_an {
  border: 2px solid #ccc;
  background: transparent;
  width: 48px;
  height: 48px;
  color: #23559B;
  border-radius: 5px;
}
.pagination {
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #f9f9ff;
  /* Very light background like in image */
  padding: 20px;
  justify-content: flex-end;
}

.page-btn {
  width: 48px;
  height: 48px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: white;
  color: #003B8E;
  margin: 0px 5px;
  /* Arrow color */
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-btn:hover {
  background-color: #e6ecff;
}

.page-btn.active {
  background-color: #1f56a6;
  color: white;
  border: none;
}
.tab-indicator{
  display: none;
}
@media (max-width:991px) {
  .tab-container{
    flex-direction: column;
  }
  .tab-buttons{
    flex-direction: row;
    gap: 30px;
    padding-top: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .tab-buttons::-webkit-scrollbar{
    display: none;
  }
  
  .tab-buttons button.active {
        color: #000;
        border-color: #000;
        background: #D0BB68;
    }
    .tab-indicator{
  display: block;
}
   
}
@media (max-width:767px) {
   .inner-main-title h1 {
    font-size: 20px;
    }
    .award-cards{
      flex-direction: column;
      padding-bottom: 40px;
    }
    .awards-read-more{
      bottom: -25px;
    }
    .awards-img{
      width: 100%;
      height: auto;
    }
}