.tab-buttons {
  display: flex;
  position: relative;
  flex-direction: column;
  width:25%;
}
.tab-buttons button {
  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 a{
  padding: 20px 15px;
  display: block;
  color: #86868B;
}
.tab-buttons button.active, .tab-buttons button a.active {
  color: #23559b;
  border-bottom-color:#23559B ;
}
.tab-buttons button.active a{
  color: #23559b;
  font-weight: bold;
}
/* 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;
}
.tab-content img{
  display: block;
  width: 100%;
}
.tab-content h2 {
    margin-top: 15px;
    font-weight: 600;
    font-size: 24px !important;
    line-height: 32px;
    letter-spacing: -0.28px;
    color: #23559b;
    margin-bottom: 15px;
}
.tab-content h1 {
  margin-top: 15px;
  font-weight: 600;
  font-size: 28px !important;
  line-height: 36px;
  letter-spacing: -0.28px;
  color: #23559b;
  margin-bottom: 15px;
}

.tab-content h2 {
  margin-top: 15px;
  font-weight: 600;
  font-size: 24px !important;
  line-height: 32px;
  letter-spacing: -0.28px;
  color: #23559b;
  margin-bottom: 15px;
}
.tab-content img {
  width: 100%;
  height: 496px;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
  display: block;
  margin-bottom: 15px;
}
.tab-content h3 {
  margin-top: 15px;
  font-weight: 600;
  font-size: 20px !important;
  line-height: 28px;
  letter-spacing: -0.28px;
  color: #23559b;
  margin-bottom: 15px;
}
  .tab-content h4 {
    margin-top: 15px;
    font-weight: 600;
    font-size: 16px !important;
    line-height: 24px;
    letter-spacing: -0.28px;
    color: #23559b;
    margin-bottom: 15px;
  }
.tab-content p {
  font-size: 16px !important;
  line-height: 24px;
  letter-spacing: -0.28px;
  color: #000000;
  margin-bottom: 15px;
  margin-top: 15px;
}
.tab-content table {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  border-collapse: collapse;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); */
}
.tab-content table tr {
  border-bottom: 1px solid #cfcfcf;
}
.tab-content table tr:last-child {
  border-bottom: none;
}
.tab-content table tr:nth-child(even) {
  background-color: #fafafa !important;
}
.tab-content table tr th {
  border :1px solid #ddd;
  padding: 20px 15px;
  background-color: #4a4a4a3b;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.28px;
  font-weight: 600;
  text-align: left;
}
.tab-content table {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  /* overflow: hidden; */
}

.tab-content table tr td {
  border :1px solid #ddd;
  padding: 20px 15px;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.28px;
  text-align: left;
}
.tab-content ul li {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.28px;
  list-style-position: inside;
  color: #000000;
}
.tab-content ol li {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.28px;
  list-style-position: inside;
  color: #000000;
}
.tab-content a {
  color: #23559b;
  text-underline-offset: 3px;
  text-decoration: underline 2px rgba(42, 46, 109, 0.12);
}
.tab-content a:hover {
  text-decoration: underline rgb(35, 85, 155) !important;
}
.tab-content iframe {
  width: 100%;
  height: 600px;
  margin-top: 15px;
  margin-bottom: 15px;
}
figure.table{
      border: 1px solid #ddd;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.accordion {
  margin: 20px auto;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-header {
  padding: 10px 15px;
  background-color: #ebf3ff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion-header:hover {
  background-color: #eee;
}
.accordion-arrow {
  color: #000000;
  margin-top: 5px;
}
.accordion-header span {
  color: #23559b;
  font-size: 16px;
  font-weight: 600;
}
.accordion-arrow svg {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow svg {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 15px;
  max-height: fit-content;
}
.pdf-viewer a {
    border: 1px solid #000000;
    text-align: center;
    padding: 5px;
    color: #000000;
    text-decoration: none;
    border-radius: 20px;
}
.pdf-viewer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center; 
    place-items: center;
}
.gallery-item {
    width: 100%;
}
.gallery-icon {
    width: 100%;
    height: 230px;
    display: flex ;
    justify-content: center; 
    place-items: center;
    border: 1px solid #383939;
    border-radius: 25px;
    background: #EBF3FF;
}
.gallery-icon img {
    width: 79px;
    height: 79px;
    object-fit: cover;
    border-radius: 15px;
}
@media(max-width:992px){
  .tab-container{
    flex-direction: column;
  }
  .tab-buttons{
    flex-direction: row;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
  }
  .tab-buttons button{
    white-space: nowrap;
  }
  .tab-buttons::-webkit-scrollbar{
    display: none;
  }
}