/* searchcontainer */
.search-input-wrapper {
     display: flex;
    justify-content: flex-end;
    position: relative;
    margin-left: auto;
    margin-right: 20px;
}
.search-msg h2{
  font-size: 20px;
}
.mobile-search {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-between;
    align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  margin-top: 15px;
}

.mobile-search img {
  display: none;
}
.search-form {
  display: flex;
}
.search-ms h2{
  font-size: 20px;
}
.search-input-wrapper input {
  font-family: 'Lato';
  padding: 10px 15px 10px 40px;
  /* space for icon on the right */
  border: 1px solid #23559b;
  border-radius: 999px;
  background-color: #dde5f9;
  font-size: 16px;
  outline: none;
  color: #383838;
  position: relative;
    z-index: 1;
}
.search-input-wrapper input:focus{
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 0 3px #2280EF40;
}
.search-suggestion{
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    right: 0;
    border-top: none;
    padding:20px 15px 10px 15px;
    margin-top: -15px;
    text-align: left;
    line-height: 25px;
    text-decoration: underline;
    text-decoration-color: #E3E3E3 ;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
    color:#383939;
    border: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background: #fff;
    display: none;
}
.search-icon-faculty {
  background-color: transparent;
    border: none;
    position: absolute;
    left: 8px;
    z-index: 1;
    top: 55%;
    color: #23559b;
    transform: translateY(-50%);
    pointer-events: none;
}
.news-section__filter-button {
  background-color: transparent;
  border: 0;
  padding: 8px 5px;
  border-radius: 5px;
  font-size: 16px;
  color: #86868b;
  cursor: pointer;
  display: flex;
  align-items: center;
}
#department_tab{
  min-height: 500px;
}
/* searchends */
/* tab css */
#department_tab .tab-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 50px 0;
}
.tab-heading div {
  display: flex;
}
#department_tab .active[data-tab-content] {
  display: block;
  color: #000000;
  visibility: visible;
  opacity: 1;
  height: auto;
}

#department_tab .tab.active {
  font-size: 18px;
  color: #383939;
  font-weight: 600;
  background: #d0bb68;
  border-bottom: 2px solid #383939;
  padding: 12px 25px;
  cursor: pointer;
}

#department_tab [data-tab-content] {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease;
}

#department_tab .common-tab {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#department_tab .common-tab li {
  border-bottom: 2px solid #cfcfcf;
  padding: 12px 25px;
  font-size: 18px;
  cursor: pointer;
  line-height: 25px;
  font-weight: 400;
  color: #858687;
}
/* Department Listing */
.department-listing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.department-listing a {
  text-decoration: none;
  color: #000000;
}
.blue-department {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 22px;
  background: #ebf3ff;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.blue-inner {
  display: flex;
  align-items: center;
}

.blue-department img {
  margin-right: 10px;
  transition: all 0.3s ease;
}
.blue-department h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 400;
  transition: all 0.3s ease;
}

.desk-arrow {
  width: 30px;
  height: 30px;
  margin-right: 0px !important;
  transition: all 0.3s ease;
  transform: translateX(-10px);
  color: #23559b; /* Initial arrow color */
}

/* Hover Effects */
.blue-department:hover {
  background: #23559b;
}

.blue-department:hover h4 {
  color: white;
}

.blue-department:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(93deg) brightness(103%) contrast(103%);
}
.blue-department .desk {
  display: none;
}

/* Show it only when hovering over .blue-department */
.blue-department:hover .desk {
  display: flex; /* Enable flexbox */
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  opacity: 1;
  color: white;
}
/* tab for departments */

.department-inner {
  display: flex;
  gap: 60px;
  margin-bottom: 50px;
}
.width-ful {
  flex-grow: 1;
}
#departmentTab .tab-heading {
  padding: 0;
}

#departmentTab .active[data-tab-content] {
  display: block;
  color: #000000;
}

#departmentTab .tab.active {
  white-space: nowrap;
  font-size: 18px;
  color: #23559b;
  font-weight: 600;
  border-color: #23559b;
  padding: 20px;
  cursor: pointer;
  /* background: #D0BB68; */
}

#departmentTab [data-tab-content] {
  display: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease;
}

#departmentTab .active[data-tab-content] {
  display: block;
  opacity: 1;
  height: 100%;
}

#departmentTab .common-tab {
  display: block;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#departmentTab .common-tab li {
  border-bottom: 2px solid #cfcfcf;
  padding: 20px;
  font-size: 18px;
  white-space: nowrap;
  cursor: pointer;
  line-height: 25px;
  font-weight: 400;
  color: #858687;
}
#department-details h2 {
  font-size: 28px;
  color: #23559b;
  font-weight: 600;
}
#department-details .dep-inner {
  margin: 25px 0;
  flex-direction: column;
  display: flex;
}
#department-details .dep-inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#department-details .dep-inner h3 {
  font-size: 28px;
  color: #23559b;
  font-weight: 600;
  margin-bottom: 15px;
}
#department-details .dep-inner p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
#department-details .blue-details p {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}
#department-details .blue-details h4 {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 600;
  color: #23559b;
  padding: 10px 20px;
  background: #ebf3ff;
}
#department-details .blue-details ul {
  margin: 20px 0;
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 20px;
}
#department-details .blue-details ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}
/* listing */
.list-social {
  margin-bottom: 25px;
}

.social-media {
  margin-top: 15px;
}

.social-media a img {
  margin-left: 10px;
}

.member-card {
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  overflow: hidden;
}

.container-faculty {
  margin-top: 35px;
  /* margin: 10px 20px; */
}

.member-card:hover {
  /* transform: translateY(-5px); */
}

.member-image {
  width: 77px;
  height: 77px;
  border-radius: 50%;
  object-fit: cover;
}

.member-details {
  padding: 0 25px;
  flex: 1;
}

.member-name {
  font-size: large;
  font-weight: 500;
  margin-bottom: 5px;
  color: #383939;
}

.member-title {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  font-weight: normal;
}

.member-role {
  display: inline-block;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #6c89b2;
}

.member-info {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.listing a {
  font-size: large;
  font-weight: 500;
  margin-bottom: 5px;
  color: #383939;
  text-decoration: underline;
    text-decoration-color: #2a2e6d1f;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.member-info p {
  margin: 5px 0;
}

.social-media {
  margin-left: 100px;
}

.key-head {
  color: #23559b;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* listing */
/* services cards */
#cardList .card-inner img {
  width: 256px;
  height: 190px;
  object-fit: cover;
  border-radius: 15px;
}
#cardList .card-inner .details-card {
  font-size: 20px;
  font-weight: 700;
}
#cardList .card-inner .details-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 15px;
}
#cardList .card-inner .details-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Limit to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}
#cardList .card-inner .details-card a {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #23559b;
  margin-top: 15px;
}
#cardList .card-inner {
  display: flex;
  gap: 25px;
  background: #ffffff;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 15px;
}
/* servicescards */
/* project table */
/* table */
/* #projects .projects-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow: hidden;
}

#projects .projects-table thead tr {
  background-color: #cfcfcf;
  color: #23559b;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

#projects .projects-table th {
  padding: 20px;
  font-size: 16px;
  color: #23559b;
  white-space: nowrap;
  font-weight: 600;
  border-bottom: 1px solid #cfcfcf;
}

#projects .projects-table td {
  padding: 20px;
  font-size: 14px;
  color: #383939;
  border-bottom: 1px solid #cfcfcf;
}

#projects .projects-table tbody tr {
  background-color: transparent;
  transition: background-color 0.2s;
}

#projects .projects-table tbody tr:hover {
  background-color: #cfcfcf52;
}

#projects .projects-table th:first-child {
  border-top-left-radius: 15px;
}

#projects .projects-table th:last-child {
  border-top-right-radius: 15px;
}
#projects .project-title {
  font-weight: 500;
  color: #2c3e50;
}

#projects .project-title a {
  font-weight: 500;
    color: #2c3e50;
    text-decoration: underline;
    text-decoration-color: #2a2e6d1f;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}
#projects .project-title a:hover{
  text-decoration: underline !important;
    text-decoration-color: #23559b !important;
}
#projects .project-lead {
  width: 28%;
} */
#projects .table-container{
  border: 1px solid #4a4a4a3b;
  border-radius: 12px;
}
#projects .projects-table {
  /* border: 1px solid #ddd; */
  overflow: hidden;
  border-radius: 12px;
}
#projects .status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
}

#projects .status-completed {
  background-color: #01c12a;
  color: #fff;
}

#projects .status-ongoing {
  background-color: #fbdd58;
  color: #383939;
}

/* Pagination styles */
/* pagination style changes */
.pagination {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 20px;
  justify-content: flex-end;
}

.page-btn {
  width: 48px;
  height: 48px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: white;
  color: #003b8e;
  /* 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;
}

/* pagnatn ends */

/* Project details section */
#projects .project-details {
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid #e4e4e4;
}

#projects .project-details h3 {
  font-size: 20px;
  font-weight: 700;
  color: #23559b;
  margin-bottom: 5px;
}

#projects .project-details p {
  font-size: 16px;
  font-weight: 400;
  color: #383939;
  margin-bottom: 5px;
}
/* Rounded top corners on first and last <th> */
/* #projects .projects-table th:first-child {
  border-top-left-radius: 15px;
}

#projects .projects-table th:last-child {
  border-top-right-radius: 15px;
} */
/* projectsends */
/* publications */
/* css tabs */
#publications .tab-buttons {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 20px;
}

#publications .tab-buttons button {
  font-family: 'Lato';
  width: 100%;
  text-align: center;
  padding: 20px 60px;
  cursor: pointer;
  background: none;
  font-size: 18px;
  color: #858687;
  font-weight: 400;
  border-bottom: 2px solid #cfcfcf;
  white-space: nowrap;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

#publications .tab-buttons .active {
  background-color: #d0bb68;
  color: #000;
  font-weight: 700;
  font-size: 18px;
  padding: 20px 60px;
  border-bottom: 2px solid #000;
}

/* tab content sections */
#publications .tab-content,
#publications .tab-content1,
#publications .tab-content2,
#publications .tab-content3 {
  display: none;
  padding: 15px;
}

#publications .tab-content.active,
#publications .tab-content1.active,
#publications .tab-content2.active,
#publications .tab-content3.active {
  display: block;
}

/* active content details */
#publications .publi-card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

#publications .publi-title {
  font-size: 16px;
  font-weight: 600;
  color: #383939;
  margin-bottom: 20px;
  line-height: 24px;
}

#publications .publi-authors {
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 400;
  color: #383939;
  gap: 15px;
  margin-bottom: 20px;
}

#publications .publi-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 15px;
  justify-content: space-between;
}

#publications .base-name span {
  font-size: 14px;
  font-weight: 400;
  padding: 0 10px 0 5px;
  color: #23559b;
  border-right: 1px solid #23559b;
}

#publications .base-name span:last-child {
  border-right: none;
}

#publications .read-more-fac {
  display: inline-block;
  color: #23559b;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: bold;
}
/* publi ends */
/* news */
.news-section-card {
  background-color: #ffff;
  box-shadow: 2px 4px 12px 0px #00000014;
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 25px;
  display: flex;
}
.news-section__article-image {
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
}
.news-section__article-content {
  padding: 0px 20px;
  flex-grow: 1;
}
.news-section__article-date {
  font-size: 14px;
  color: #23569b;
  padding: 10px 0px;
  font-weight: 700;
      margin-bottom: 0px;
}
.news-section__article-title {
  font-size: 20px;
  font-weight: 700;
  color: #2d2525;
  padding: 0;
  margin-top: 0;
}
.news-section__article-snippet {
  font-size: 16px;
  color: #2d2525;
  line-height: 1.6;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-section__read-more {
  font-size: 16px;
  color: #23559b;
  font-weight: 600;
  text-decoration: none;
  float: right;
  text-decoration: underline;
  margin-top: 20px;
  margin-bottom: 30px;
}
.event-date {
    background-color: #23559b;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    flex-shrink: 0;
    width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 119px;
        border-radius: 20px;
}
.event-date .day {
    font-size: 18px;
    font-weight: 700;
}
.event-date .weekday {
    font-size: 16px;
}
#events .news-section__read-more {
    float: left;
        margin-top: 8px;
    margin-bottom: 30px;
}
/* schedule */
#schedule .projects-table,
#clinics .projects-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 15px;
}

#schedule .status,
#clinics .status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
}

#schedule .status-completed,
#clinics .status-completed {
  background-color: #01c12a;
  color: #fff;
}

/* #schedule .projects-table th:first-child,
#clinics .projects-table th:first-child {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
} */

/* #schedule .projects-table th:last-child,
#clinics .projects-table th:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
} */

#schedule .status-ongoing,
#clinics .status-ongoing {
  background-color: #fbdd58;
  color: #383939;
}

#schedule .project-title,
#clinics .project-title {
  font-weight: 500;
  color: #2c3e50;
}

#schedule .project-title a,
#clinics .project-title a {
  font-weight: 500;
  color: #2c3e50;
  text-decoration: none;
}

#schedule .project-lead,
#clinics .project-lead {
  width: 28%;
}
/* Responsive Design */
@media (max-width: 1024px) {
  .department-listing {
    grid-template-columns: repeat(3, 1fr);
  }
  #department_tab .tab-heading {
    display: block;
  }
  .search-input-wrapper {
    margin-top: 25px;
    margin-bottom: 20px;
  }
    #departmentTab .common-tab {
        overflow-x: auto;
        white-space: nowrap;
        gap: 15px;
        display: flex;
        margin-bottom: 30px;
    }
    .department-inner {
    display: grid;
    gap: 0px;
    }
    #departmentTab .tab-heading {
    overflow: scroll;
}
.width-ful{
  min-height: 80vh;
}
#departmentTab .common-tab::-webkit-scrollbar,
ul.tabs.common-tab::-webkit-scrollbar  {
  display: none !important;
}
}
@media (max-width: 768px) {
  .department-listing {
    grid-template-columns: repeat(2, 1fr);
  }
  #department-details .dep-inner {
    margin: 25px 0;
    display: block;
    gap: 15px;
  }
  #department-details .dep-inner h3 {
    margin-top: 15px;
  }
  .department-inner {
    display: block;
  }
  #departmentTab .common-tab {
    overflow-x: auto;
    white-space: nowrap;
    gap: 15px;
    display: flex;
    margin-bottom: 30px;
  }
  #departmentTab .common-tab::-webkit-scrollbar {
    display: none;
  }

  #departmentTab .tab.active {
    background: #d0bb68;
    border-bottom: 2px solid #000;
    color: #000;
  }

  .common-tab li {
    color: #1f2b6c;
    border-bottom: 2px solid #1f2b6c;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0;
  }
  #projects .table-container {
    overflow-x: auto;
    width: 100%;
    scrollbar-color: #1f56a6 transparent; /* Firefox */
    scrollbar-width: thin;
    border-radius: 10px;
  }

  #projects .projects-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    min-width: 600px;
  }

  /* For WebKit browsers (Chrome, Safari, Edge) */
  #projects .table-container::-webkit-scrollbar {
    height: 4px;
    width: 4px;
  }

  #projects .table-container::-webkit-scrollbar-track {
    background: transparent;
  }

  #projects .table-container::-webkit-scrollbar-thumb {
    background-color: #1f56a6;
    border-radius: 10px;
  }
  /* news */
  .news-section__article-image {
    width: 170px;
    max-height: 218px;
    object-position: left;
  }
  .news-section__article-title {
    font-size: 17px;
  }
  .news-section__read-more {
    font-size: 13px;
  }
#schedule .table-container,
#clinics .table-container {
  overflow-x: auto;
  width: 100%;
  scrollbar-color: #1f56a6 transparent; /* Firefox */
  scrollbar-width: thin;
  border-radius: 10px;
}

#schedule .projects-table,
#clinics .projects-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  min-width: 600px;
}

/* For WebKit browsers (Chrome, Safari, Edge) */
#schedule .table-container::-webkit-scrollbar,
#clinics .table-container::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}

#schedule .table-container::-webkit-scrollbar-track,
#clinics .table-container::-webkit-scrollbar-track {
  background: transparent;
}

#schedule .table-container::-webkit-scrollbar-thumb,
#clinics .table-container::-webkit-scrollbar-thumb {
  background-color: #1f56a6;
  border-radius: 10px;
}
}

@media (max-width: 767px) {
  .department-listing {
    grid-template-columns: 1fr;
  }

  #department-details .blue-details h4 {
    padding: 10px 10px;
  }
  #cardList .card-inner {
    display: block;
  }
  #cardList .card-inner img,
  #department-details .dep-inner img {
    width: 100%;
    border-radius: 15px;
  }
  .listing {
    grid-template-columns: 1fr;
  }
  .list-social {
    margin-top: 25px;
  }
  .news-section-card {
    display: grid;
  }
  .news-section__article-image {
    width: 100%;
    max-height: 218px;
    object-fit: cover;
  }
  .news-section__article-content {
    padding: 0px 5px;}
        .news-section__read-more {
        font-size: 13px;
        margin-top: 40px;
        margin-bottom: 25px;
    }
.event-date{
  width: auto !important;
}
#department_tab .common-tab::-webkit-scrollbar {
  display: none;
}
#departmentTab .common-tab{
  gap: 30px;
}
#departmentTab .common-tab li {
  padding: 20px 30px;
}
   .mobile-search {
    grid-template-columns: 1fr !important;
  }
  .mobile-search > *:first-child {
  order: 2;
}

.mobile-search > *:last-child {
  order: 1;
}
  .search-input-wrapper{
        margin-left: inherit;
  }
  #gallery .gallery-container {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px) {
  #department_tab .tabs.common-tab {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    /* optional: smooth scroll */
  }

  /* tab mobile */
  #department_tab .common-tab {
    overflow-x: auto;
    white-space: nowrap;
    cursor: pointer;
  }

  /* Hide scrollbar (optional) */
  #department_tab .tab.active {
    border-bottom: 2px solid #1f2b6c;
    color: #1f2b6c;
    margin-right: 0px;
    padding: 10px 40px 10px 40px;
  }

  #department_tab .common-tab li {
    color: #858687;
    border-bottom: 2px solid #cfcfcf;
    padding-left: 20px;
    text-align: center;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 0px;
  }
}
#gallery .gallery-container-details{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  margin-bottom: 30px;
}
#gallery .gallery-container-details img{
     width: 100%;
    height: 300px;
    margin-bottom: 15px;
    object-fit: cover;
    border-radius: 12px;
}

#gallery .gallery-container img{
  width: 100%;
  height: 211px;
  object-fit: cover;
  border-radius: 15px;
}
#gallery .gallery-container{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-bottom: 30px;
  justify-content: center;
  align-items: center;
  place-items: center;
}
#gallery .gallery-icon{
  width: 100%;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  place-items: center;
  border: 1px solid #383939;
  border-radius: 25px;
  background: #EBF3FF;
}
#gallery .gallery-icon img{
  width: 79px;
  height: 79px;
  object-fit: cover;
  border-radius: 15px;
}
#gallery .gallery-item{
  width: 100%;
}
#gallery .gallery-item p{
  font-size: 16px;
  font-weight: 400;
  color: #2D2525;
  text-align: left;
  margin-top: 5px;
  line-height: 24px;
}
.gallery-title {
  font-size:18px;
  font-weight: 600;
  color: #23559B;
  text-align: left;
  line-height: 24px;
  margin-bottom: 30px;
}
/* disabled state */
.page-btn.disabled,
.page-btn:disabled{
  opacity:0.4;
  cursor:not-allowed;
  background-color:#f5f5f5;
  color:#999;
  border-color:#ddd;
}

.page-btn.disabled:hover,
.page-btn:disabled:hover{
  background-color:#f5f5f5;
}
.team-details h3{
  margin-bottom: 20px;
}