.section-title-search{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-title-search .section-title::after{
   display: none;
}
.section-title-search .section-title{
    margin: 0;
    padding: 0;
}
.search-box{
    width: 250px;
    position: relative;
}
.search-box input{
    width: 100%;
    padding: 8px 35px 8px 15px;
    border: 1px solid #23559B;
    border-radius: 50px;
    font-size: 14px;
    background: #dde5f9;
}
.search-box button{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}
.department-listing{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.department-listing a{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .3s ease-in-out;
    background: #EBF3FF;
    color: #000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.department-listing a:hover{
    background: #23559B;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.depart-ico svg{
    display: block;
    height: auto;
}
.gg-arrow-right{
    flex: 1;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.department-listing a:hover .gg-arrow-right{
    opacity: 1;
}
.department-listing a:hover .depart-ico svg path{
    fill: #fff;
}
.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;
}

@media(max-width:767px){
    .section-title-search{
        flex-direction: column;
        gap: 30px;
    }
    .department-listing{
        margin-top: 0;
        padding: 15px;
    }
}