.naac {
  padding: 100px;
  position: relative;
  background-color: #dfdfdf;
}

.naac .naac-card {
  border-radius: 13px;
  background: #fff;
  box-shadow: 3.033px 10.615px 13.648px 0px rgba(0, 0, 0, 0);
  border: none;
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
}

.naac .naac-card .naac-pdf {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0px auto;
  left: 0;
  right: 0;
  width: 140px;
  height: 176px;
  border-radius: 7.582px;
  background: #fff;
  box-shadow: 2.275px 3.033px 10.615px 0px rgba(0, 0, 0, 0.05);
}

.naac .naac-card .naac-pdf img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  left: 0;
  right: 0;
}

.card__image {
  display: block;
  width: 100%;
  height: auto;
}

.card__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: none;
  transition: 0.5s ease;
  background-color: rgba(78, 62, 115, 0.6509803922);
  border-radius: 13px;
}

.card:hover .card__overlay {
  opacity: 1;
}

.overlay__text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.button {
  background-color: #ffffff;
  text-decoration: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.card {
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
  /* Adjust as needed */
}

.card-body {
  padding: 20px;
}

.tab {
  overflow: hidden;
  background-color: #4e3e73;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.tab button.active {
  border: 2px solid #fff !important;
  border-radius: 4px;
  background-color: transparent !important;
}

.tab-buttons {
  white-space: nowrap;
  /* Prevents buttons from wrapping to the next line */
}

.tab button {
  display: inline-block;
  /* Display buttons in a single row */
  width: auto;
  /* Adjust width as needed */
  color: white;
  float: none;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 15px;
  transition: background-color 0.3s;
}

.tabcontent a {
  color: red !important;
  font-size: 16px;
  font-weight: 700;
}

.tabcontent {
  background-color: rgba(187, 187, 187, 0.3294117647);
  display: none;
  padding: 20px;
  border-radius: 8px;
}

.tabcontent ul li::marker {
  font-size: 20px;
}

