/* Simple CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Sans-serif;
}


mark {
	background-color: #e1d7f7 !important;   /* Change to any color you like */
	color: black;              /* Text color inside mark */
	padding: 0 2px;
	border-radius: 3px;
}



/* section 1 */

.sec-1 {
  width: 100%;
  background-color: #fff;
  padding: 10px 0px 40px 0px;
}

.sec-1-container {
  max-width: 1140px;
  margin: auto;
}

.sec-1-container .title {
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.sec-1-container .content p {
  text-align: center;
  margin-bottom: 1.6em;
  color: #444444;
  font-size: 20px;
}

.sec-1-container .content p a {
  color: #8224e3;
  text-decoration: none;
}

.sec-1-container .content p a:hover {
  color: #b638c4;
}

.sec-1-container .back-to-home-btn {
  width: 100%;
  background-color: #8224e3;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  transition: background-color 0.5s ease-in-out;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 4px;
}

.sec-1-container .back-to-home-btn:hover {
  background-color: #b638c4;
}

.sec-1-container .back-to-home-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* section 2  */
.sec-2 {
  background-color: #f1f1f1;
  padding: 20px 0px 20px 0px;
  max-width: 100% !important;
}

.sec-2-container {
  max-width: 1140px;
  margin: auto;
}

.sec-2-container .tab-container {
  display: flex;
  gap: 20px;
}

.sec-2-container .tab-container .tab {
  width: calc(100% / 3);
  background-color: #444444;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  padding: 12px 0px;
  transition: background-color 0.3s ease-in-out;
  cursor:pointer;
}

.sec-2-container .tab-container .tab:hover {
  background-color: #8224e3;
}

.sec-2-container .tab-container .tab.active {
  background-color: #8224e3;
}

.sec-2-container .filter-container {
  background-color: #fff;
  padding: 40px;
  margin-bottom: 1rem;
}

.sec-2-container .filter-container .filter {
  display: flex;
  gap: 6px;
  margin-bottom: 2.6rem;
}

.sec-2-container .filter-container .filter-form {
  display: flex;
  width: 100%;
  gap: 6px;
}

.sec-2-container .filter-container .filter-btn {
  display: flex;
  gap: 6px;
}

.sec-2-container .filter-container input {
  width: 100%;
  font-size: 20px;
  padding: 14px;
  border: 1px solid #e2e8f0;
  color: #363636;
  border-radius: 4px;
}

.sec-2-container .filter-container input:focus {
  outline: 0;
  color: #000;
}

.sec-2-container .filter-container select {
  width: 400px;
  min-width: 250px;
  padding: 10px 16px;
  font-size: 20px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  color: #363636;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.sec-2-container .filter-container select:focus {
  outline: none;
  background-color: #fff;
  color: #000;
}

.sec-2-container .filter-container button {
  font-size: 20px;
  padding: 15px 20px;
  border: 0;
  transition: background-color 0.3s ease-in-out;
  color: #fff;
  border-radius: 4px;
}

.sec-2-container .filter-container button.go {
  background-color: #8224e3;
  transition: background-color 0.3s ease-in-out;
  width: 120px;
}

.sec-2-container .filter-container button.go .loader2 {
  width: 28px;
  height: 28px;
  border: 3px solid rgb(0 0 0 / 31%);
  border-radius: 50%;
  border-top-color: #f9f9f9;
  animation: spin 1s ease-in-out infinite;
  position: relative;
  margin: auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.sec-2-container .filter-container button.go:hover {
  background-color: #b638c4;
}

.sec-2-container .filter-container button.clear {
  background-color: #444444;
  transition: background-color 0.3s ease-in-out;
}

.sec-2-container .filter-container button.clear:hover {
  background-color: #555555;
}

.sec-2-container .filter-container .note {
  font-size: 20px;
  font-style: italic;
  color: #444444;
  text-align: center;
}

/* section 3  */
.sec-3 {
  background-color: #fff;
  max-width: 100% !important;
}

.sec-3-container {
  padding: 10px;
  display: flex;
  gap: 20px;
}

.sec-3-container .filter-container {
  background-color: #f1f1f1;
  width: 27% !important;
  padding: 18px;
  border-radius: 6px;
}

.sec-3-container .filter-container h2 {
  font-size: 24px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
  font-family: "Poppins", Sans-serif !important;
  color: #000 !important;
}

.accordion-item {
  background-color: #fff;
  margin-bottom: 0.6rem;
  border-radius: 6px;
  -webkit-user-select: none;
  user-select: none;
}

.accordion-header {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #000000 !important;
  font-family: "Poppins", sans-serif !important;
  margin-bottom: 0px !important;
}

.accordion-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
  transition: transform 0.3s;
  border-right: 2px solid #8224e3 !important;
  border-bottom: 2px solid #8224e3 !important;
}

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

.checkbox-list {
  padding: 0 0 15px;
}

.checkbox-item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.checkbox-item:last-child {
  margin-bottom: 0;
}

.checkbox-item input[type="checkbox"] {
  margin-right: 10px;
}

.checkbox-item label {
  font-size: 20px !important;
  color: #000000 !important;
}

.active .accordion-icon {
  transform: rotate(-135deg);
  transition: transform 0.3s ease;
}

.active + .accordion-content {
  padding: 0px 15px !important;

  opacity: 1;
  height: auto;
  padding: 15px;
}

.sec-3-container .filter-container .reset {
  font-size: 20px;
  text-transform: uppercase;
  background-color: #8224e3;
  margin-top: 1rem;
  color: #fff;
  border: none;
  padding: 8px 30px;
  border-radius: 4px;
  cursor: pointer;
}

/* Result Container  */

.result-main-container {
  width: 72% !important;
}

.sec-3-container .result-container {
  width: 100% !important;
}

.sec-3-container .result-container .result-wrapper h2 {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

/* pagination */
.sec-3-container .result-container .pagination {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  align-items: center;
	background-color: #fff;    
	padding-top: 8px;    
	padding-bottom: 16px;  
	border-bottom: 1px solid #dddd;
	
	
}

.sec-3-container .result-container .pagination:last-child {
	border-bottom: none;
	  margin-bottom: 0;
}


@media (max-width: 980px) {
  .sec-3-container .result-container .pagination{
      top: 150px;
  }
}
@media (max-width: 921px) {
  .sec-3-container .result-container .pagination{
          top: 0px;
  }
}

.sec-3-container .result-container .pagination .page-no {
  color: #999;
  font-size: 18px;
}

.sec-3-container .result-container .pagination .change-page button {
  background-color: #ffffff;
  color: #313e51;
  font-size: 18px;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #dadada;
  font-weight: 400;
}

.sec-3-container .result-container .pagination .change-page button.active {
  font-weight: 800;
}

/* results  */
.sec-3-container .result-wrapper .results {
  border: 1px solid #dadada;
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.sec-3-container .result-wrapper .results .profile {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
}

.sec-3-container .result-wrapper .results .profile img {
  vertical-align: top;
  max-width: 300px !important;
  max-height: 300px !important;
  min-height: 300px !important;
  min-width: 300px !important;
  display: inline-block;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 40px !important;
}

.sec-3-container .result-wrapper .results .profile .details {
  width: 100%;
}

.sec-3-container .result-wrapper .results .profile .name {
  font-size: 40px;
  font-weight: 500;
  text-decoration: none;
  color: #8224e3;
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 12px;
  width: 70% !important;
  float: left;
  line-height: 44px;
}

.sec-3-container .result-wrapper .results .profile .name svg {
  fill: #334155;
  width: 36px;
  height: 36px;
}

.sec-3-container .result-wrapper .results .profile .position {
  font-size: 20px;
  margin-bottom: 1.6rem;
  font-weight: 500;
  font-style: italic;
  display: block;
  margin-bottom: 20px !important;
}

.sec-3-container .result-wrapper .results .profile .other-details {
  display: flex;
  align-items: baseline;
  color: #444444;
  font-size: 20px;
}

.sec-3-container .result-wrapper .results .profile .other-details svg {
  width: 20px;
  height: 20px;
  fill: #444444;
  margin-right: 8px;
}

.sec-3-container .result-wrapper .results .profile .other-details label {
  font-weight: 600;
  margin-right: 8px;
}

.sec-3-container .result-wrapper .results .profile .other-details span a {
  color: #8224e3;
  word-break: break-all;
}

/* Afflilations */
.sec-3-container .result-wrapper .results .Afflilations {
  margin-bottom: 2rem;
}

.sec-3-container .result-wrapper .results .Afflilations h4 {
  color: #334155;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: 1px solid #cfcfcf;
}

.sec-3-container .result-wrapper .results .Afflilations .details {
  font-weight: 400;
  font-size: 20px;
  color: #334155;
}

.sec-3-container .result-wrapper .results .Afflilations .details label {
  font-weight: 700;
}

/* Focus Areas */
.sec-3-container .result-wrapper .results .focus-areas {
  margin-bottom: 2rem;
}

.sec-3-container .result-wrapper .results .focus-areas h4 {
  color: #334155;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: 1px solid #cfcfcf;
}

.sec-3-container .result-wrapper .results .focus-areas .details {
  font-weight: 400;
  font-size: 20px;
  color: #334155;
}

/* profile-details */
.sec-3-container .result-wrapper .results .profile-details {
}

.sec-3-container .result-wrapper .results .profile-details h4 {
  color: #334155;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: 1px solid #cfcfcf;
  margin-bottom: 1rem;
}

.sec-3-container .result-wrapper .results .profile-details .details {
  font-weight: 400;
  font-size: 20px;
  color: #334155;
}

.sec-3-container .result-wrapper .results .profile-details .details a {
  color: #8224e3;
}

/* Result Not Found  */
.sec-3-container .no-results-container {
  width: 100%;
  text-align: center;
  padding: 70px 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 16px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 16px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  transition: visibility 0s, opacity 0.5s ease-in-out;
  opacity: 0;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

.sec-3-container .no-results-container .icon {
  margin-bottom: 40px;
  position: relative;
}

.sec-3-container .no-results-container .icon svg {
  width: 90px;
  height: 90px;
}

.sec-3-container .no-results-container h1 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  color: #1a1a1a;
  font-family: "Poppins", Sans-serif;
}

.sec-3-container .no-results-container p {
  font-family: "Poppins", Sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  font-weight: 300;
  max-width: 340px;
  margin: 0 auto;
}

.sec-3-container .no-results-container .accent-line {
  width: 40px;
  height: 1px;
  background-color: #b89b72;
  margin: 0 auto 30px;
}

/* Empty State */
.sec-3-container .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 40px 20px;
}

.sec-3-container .empty-state .icon-container {
  margin-bottom: 24px;
}

.sec-3-container .empty-state svg {
  width: 80px;
  height: 80px;
  color: #8224e3;
}

.sec-3-container .empty-state h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.sec-3-container .empty-state p {
  font-family: "Poppins", Sans-serif;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
}

/* shimmer  */

.sec-3-container .shimmer {
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.sec-3-container .shimmer .profile-container {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.sec-3-container .shimmer .profile-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.sec-3-container .shimmer .profile-details {
  flex: 1;
  padding-left: 20px;
}

.sec-3-container .shimmer .name-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.sec-3-container .shimmer .section {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.sec-3-container .shimmer .section-title {
  margin-bottom: 15px;
}

.sec-3-container .shimmer .section-content {
  margin-bottom: 10px;
}

/* Skeleton loading */
.sec-3-container .shimmer .skeleton {
  background: #f0f0f0;
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.sec-3-container .shimmer .skeleton-text {
  height: 14px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.sec-3-container .shimmer .skeleton-text.small {
  width: 30%;
}

.sec-3-container .shimmer .skeleton-text.medium {
  width: 50%;
}

.sec-3-container .shimmer .skeleton-text.large {
  width: 70%;
}

.sec-3-container .shimmer .skeleton-text.full {
  width: 100%;
}

.sec-3-container .shimmer .skeleton-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.sec-3-container .shimmer .skeleton-name {
  height: 30px;
  width: 60%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.sec-3-container .shimmer .skeleton-title {
  height: 18px;
  width: 40%;
  border-radius: 4px;
  margin-bottom: 20px;
}

.sec-3-container .shimmer .skeleton-contact {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.sec-3-container .shimmer .skeleton-button {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  margin-right: 10px;
}

.sec-3-container .shimmer .skeleton-link {
  height: 14px;
  width: 20%;
  border-radius: 4px;
}

.view-profile {
  margin-top: 25px !important;
  padding: 5px !important;
  margin-bottom: 14px !important;
  width: 150px !important;
  float: right;
}

@media (max-width: 1300px) {
  .sec-3-container .result-wrapper .results .profile img {
    height: 250px;
    width: 250px;
  }

  .sec-3-container .result-wrapper .results .profile .name {
    font-size: 30px;
  }
}

@media (max-width: 1200px) {
  .sec-1-container {
    max-width: 90%;
  }

  .sec-2-container {
    max-width: 90%;
  }
}

@media (max-width: 1130px) {
  .sec-3-container .result-wrapper .results .profile {
    flex-direction: column;
  }

  .sec-3-container .result-wrapper .results .profile img {
    margin: auto;
    margin-right: auto !important;
  }
}

@media (max-width: 900px) {
  .sec-3-container {
    flex-direction: column;
  }

  .sec-3-container .filter-container {
    width: 100% !important;
  }

  .sec-3-container {
    gap: 34px;
  }

  .result-main-container {
    width: 100% !important;
  }
}

@media (max-width: 800px) {
  .sec-2-container .filter-container .filter {
    flex-direction: column;
  }

  .sec-2-container .filter-container button {
    padding: 8px 20px;
    width: 50%;
  }

  .view-profile {
    width: 100% !important;
  }

  .sec-3-container .result-wrapper .results .profile .name {
    width: 100% !important;
    line-height: 46px;
    font-size: 40px;
  }

  .view-profile {
    margin-top: 0px !important;
  }
}

@media (max-width: 600px) {
  .sec-2-container .filter-container .filter-form {
    flex-direction: column;
  }

  .sec-2-container .filter-container select {
    width: 100%;
  }

  .sec-1-container .title {
    font-family: "Poppins", sans-serif !important;
  }

  .sec-1-container .back-to-home-btn {
    font-size: 18px;
  }

  .sec-1-container .content p {
    font-size: 14px;
  }

  .sec-2-container .tab-container .tab {
    font-size: 14px;
  }

  .sec-3-container .result-container .pagination {
    flex-direction: column;
    gap: 12px;
  }

  .sec-3-container .result-container .pagination .change-page button {
    margin-bottom: 12px;
  }
}

@media (max-width: 600px) {
  .sec-3-container .result-wrapper .results .profile .other-details {
  }
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0px !important;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #000;
}

.divider span {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  max-width: 100%;
  margin: 0 10px;
}


