@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');

:root {
  --ut-blue: #00458B;
  --ut-blue-dark: #002d5c;
  --ut-yellow: #FFC20E;
  --ut-yellow-hover: #e5ac00;
  --text-main: #2D3748;
  --text-light: #718096;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 25px 30px -5px rgba(0, 69, 139, 0.2);
}

body {
	/*font-family: 'Varela Round', sans-serif;*/
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal; 
}

p, h1, h2, h3, h4, h5, h6 {
	font-family: 'Inter', sans-serif !important;
}
.post-content img {
	max-width: 96%;
	height: auto;
	padding: 5px;
	border: solid thin #eee;
	border-radius: 10px;
	text-align: center;
}


.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
  
/*  tabelku */
.tabelku {
	border-radius: 10px;
	border-collapse: separate;
	width: 100%;
	border-spacing: 0;
}
.tabelku th, .tabelku td {
	padding: 6px 12px;
	vertical-align: top;
}
.tabelku td {
	border-bottom: solid thin #dee2e6 !important;
}
.tabelku th {
  vertical-align: middle;
}
.tabelku thead {
	border-radius: 10px !important;
	border: solid thin #dee2e6 !important;
	background-color: #f5f5f5 !important;
  color: #fff !important;
}

.tabelku thead tr {
	border-radius: 10px !important;
	border-bottom: solid thin #dee2e6;
	background-color: #f5f5f5;
	border-collapse: collapse;
}
.tabelku th {
	border-bottom: solid thin #dee2e6;
	border-top: solid thin #dee2e6;
}
.tabelku th:first-child{
  border-radius:10px 0 0 10px;
  border-left: solid thin #dee2e6;
}
.tabelku th:last-child{
  border-radius:0 10px 10px 0;
  border-right: solid thin #dee2e6;
}

/* -------- */
.tabelnya {
  border-radius: 10px;
  border-collapse: separate;
  width: 100%;
  border-spacing: 0;
}
.tabelnya th, .tabelnya td {
  padding: 6px 12px;
  vertical-align: top;
}
.tabelnya td {
  border-bottom: solid thin #C4DFDF;
}
.tabelnya th {
  vertical-align: middle;
}
.tabelnya thead {
  border-radius: 10px !important;
  border: solid thin #C4DFDF;
  background-color: #E3F4F4;
}

.tabelnya thead tr {
  border-radius: 10px !important;
  border: solid thin #C4DFDF;
  background-color: #E3F4F4;
  border-collapse: collapse;
}
.tabelnya th {
  border-bottom: solid thin #C4DFDF;
  border-top: solid thin #C4DFDF;
}
.tabelnya th:first-child{
  border-radius:10px 0 0 10px;
  border-left: solid thin #C4DFDF;
}
.tabelnya th:last-child{
  border-radius:0 10px 10px 0;
  border-right: solid thin #C4DFDF;
}
/* end tabel */

/* button */
.btn-purple {
  color: #fff;
  background-color: #8231D3;
}
.btn-purple:hover {
  color: #fff;
  background-color: #5840FF;
}
.btn-info-light {
  color: #fff;
  background-color: #00AAFF;
}
.btn-info-light:hover {
  color: #fff;
  background-color: #5840FF;
}

/* border-radius */
.btn {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.input-group .btn {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-right: 2px;
}
.input-group input, .input-group select {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-right: 2px;
}
.btn-lg {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.input-group .btn-lg {
  border-top-left-radius: 0px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 15px;
}
.btn-sm {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.input-group .btn-sm {
  border-top-left-radius: 0px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 8px;
}
.btn-xs {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.input-group .btn-xs {
  border-top-left-radius: 0px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 5px;
}

.btn-banner-primary {
  background-color: transparent;
  font-family: "Inter", Sans-serif;
  font-size: 19px;
  font-weight: 600;
  fill: #0A2C4B;
  color: #0B59B6;
  background-image: linear-gradient(260deg, #EDEDED 0%, #E3E3E3 100%);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #DEDEDE;
  border-radius: 50px 50px 50px 50px;
  padding: 15px 20px 12px 20px;
}

.btn-banner-secondary {
  background-color: transparent;
  font-family: "Inter", Sans-serif;
  font-size: 19px;
  font-weight: 600;
  fill: #0B59B6;
  color: #0B59B6;
  background-image: linear-gradient(260deg, #FFD200 0%, #FDA800 100%);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #DEDEDE;
  border-radius: 50px 50px 50px 50px;
  padding: 15px 20px 12px 20px;
}

/* box urutkan */
.box {
  width:100%;
  padding:10px 2%;
  background-color:#fff;
  border:1px solid #ccc;
  border-radius:5px;
}

#page_list li {
  padding:10px 16px;
  background-color:#f9f9f9;
  border:1px dotted #ccc;
  cursor:move;
  margin-top:8px;
}

#page_list li.ui-state-highlight {
  padding:8px 16px;
  background-color:#ffffcc;
  border:1px dotted #ccc;
  cursor:move;
  margin-top:8px;
}

/* Video background */
.video-hero {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}

/* Backgroud Color */
.bg-purple {
  color: #fff;
  background-color: #8231D3 !important; /*ungu*/
}

/* Text Color */
.text-purple {
  color: #8231D3 !important; /*ungu*/
}

/* Text kuning gelap */
.text-kuning-gelap {
  color: #ffc20e; /*kuning gelap*/
}

.bg-haqi {
    color: #ccb43e; /*kuning*/
    /*background-color: #9c2424 !important;*/ /*merah*/
    background-color: #094594 !important; /*Biru UT*/
}

.bg-haqi-head {
    color: #ccb43e; /*kuning*/
    /*background-color: #9c2424 !important;*/ /*merah*/
    background-color: #ffc20ed9 !important; /*Biru UT*/
}

.bg-blue-light {
  color: #8ed1fc;
}

.text-haqi {
  /*color: #ccb43e;*/ /*kuning*/
  color: #0F448F;
}

.text-haqi-dark {
  color: #9c2424; /*merah*/
}

.text-banner-blue {
  color: #0B59B6;
}

.text-banner-blue-shadow {
  color: #0B59B6;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.text-title-berita-blue {
  color: #0B59B6;
}

.text-grey-shadow {
  color: grey;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}


/* ========================= CUSTOM POPUP EVENT ========================= */

.custom-event-popup .modal-dialog {
  max-width: 1080px;
  width: calc(100% - 30px);
  margin: 1.75rem auto;
}

.custom-event-popup .modal-content {
  border: none;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(8, 24, 48, 0.35);
}

.custom-event-popup .modal-body {
  position: relative;
}


/* BACKDROP */
.modal-backdrop.show {
  opacity: 0.78;
  background-color: #071a33;
}


/* TOMBOL CLOSE */
.popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;

  width: 38px;
  height: 38px;

  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);

  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);

  opacity: 1;
  padding: 10px;
}

.popup-close:hover {
  transform: scale(1.05);
}


/* AREA GAMBAR KIRI */
.popup-image-area {
  background: #eaf5ff;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 460px;
  padding: 30px 20px;
}

.popup-image-link {
  display: block;
  width: 100%;
  text-align: center;
}

.popup-main-image {
  width: 100%;
  max-width: 100%;
  height: auto;

  object-fit: contain;

  border: none;
  border-radius: 0;

  box-shadow: none;
}


/* AREA KONTEN KANAN */
.popup-content-area {
  background: #ffffff;
}

.popup-inner {
  padding: 48px 46px 38px;
}

.popup-title {
  margin: 0 0 18px;

  font-size: 35px;
  line-height: 1.2;
  font-weight: 800;

  color: #0B59B6;
}

.popup-description {
  margin-bottom: 28px;

  font-size: 16px;
  line-height: 1.6;

  color: #000000;
}

.popup-description p {
  margin-bottom: 10px;
}


/* CARD LINK */
.popup-card-link {
  margin-top: 18px;
}

.popup-event-link {
  display: flex;
  align-items: center;

  width: 100%;

  padding: 18px 20px;

  border: 1px solid #e4eaf1;
  border-radius: 16px;

  text-decoration: none;

  background: #ffffff;

  box-shadow: 0 6px 20px rgba(15, 35, 60, 0.06);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.popup-event-link:hover {
  transform: translateY(-2px);

  border-color: #c9d8e8;

  box-shadow: 0 10px 28px rgba(15, 35, 60, 0.10);
}

.popup-event-icon {
  width: 55px;
  height: 55px;

  flex-shrink: 0;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 15px;

  background: #eef6ff;
  color: #0c5aa6;

  font-size: 35px;
}

.popup-event-text {
  flex: 1;

  font-size: 20px;
  color: #0B59B6;
}

.popup-event-arrow {
  margin-left: 15px;

  color: #7a8ba3;

  font-size: 14px;
}

@media (max-width: 767px) {

  .custom-event-popup .modal-dialog {
    width: calc(100% - 20px);
    margin: 20px auto;
  }

  .custom-event-popup .modal-content {
    border-radius: 18px;
  }

  .popup-image-area {
    min-height: auto;
    padding: 28px 20px 20px;
  }

  .popup-main-image {
    max-width: 180px;
  }

  .popup-inner {
    padding: 28px 22px 26px;
  }

  .popup-title {
    font-size: 24px;
  }

  .popup-description {
    font-size: 14px;
  }

  .popup-close {
    top: 12px;
    right: 12px;

    width: 34px;
    height: 34px;
  }

}


/* ===================== Banner Atas =======================*/
.banner-fullwidth {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  overflow: hidden;
}

.banner-fullwidth.bg-image {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero-title-rotating {
  color: #ffc20e;
  line-height: 1.2;
}

/* wadah kata bergantian */
.rotating-words {
  position: relative;
  display: inline-block;
  min-width: 260px;
  height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
}

/* semua kata */
.rotating-word {
  position: absolute;
  left: 0;
  top: 100%;

  width: 100%;

  opacity: 0;

  white-space: nowrap;

  animation: slideWordUp 9s infinite;
}

/* warna berbeda */
.word-profesional {
  color: #0B59B6;
  animation-delay: 0s;
}

.word-kompeten {
  color: #00a6d6;
  animation-delay: 3s;
}

.word-sejahtera {
  color: #7ac943;
  animation-delay: 6s;
}

/* animasi naik bergantian */
@keyframes slideWordUp {

  0% {
    top: 100%;
    opacity: 0;
  }

  10% {
    top: 0;
    opacity: 1;
  }

  25% {
    top: 0;
    opacity: 1;
  }

  33% {
    top: -100%;
    opacity: 0;
  }

  100% {
    top: -100%;
    opacity: 0;
  }

}

/*==============
Responsive
===============*/
@media (max-width: 767.98px) {

  .rotating-words {
    min-width: 210px;
  }

}

/*======================== ZI-WBK ============================*/
.bg-ziwbk {
    color: #ccb43e; /*kuning*/
    background-color: #ffc20ed9 !important; /*Kuning Gelap UT*/
}

.text-ziwbk {
  color: #0F448F;
}

/* Effect Text Metal */
.efek-metal {
  font-size: 5rem;
  font-weight: bold;
  background: linear-gradient(
    90deg, 
    #0F448F 0%, 
    #ffffff 25%, 
    #0F448F 50%, 
    #ffffff 75%, 
    #0F448F 100%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: metalWalk 20s linear infinite;
}

@keyframes metalWalk {
  to {
    background-position: -200% center;
  }
}

.ziwbk-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ziwbk-stop-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

@media (max-width: 576px) {
  .ziwbk-title {
    gap: 8px;
    line-height: 1.4;
  }

  .ziwbk-stop-img {
    width: 24px;
    height: 24px;
  }
}

/* alert */
.alert, .alert-info, .alert-warning, .alert-success, .alert-danger {
  border-radius: 15px;
}

.dropdown-item {
	white-space: normal;
}

.logo-wrap {
    position: relative;
    display: inline-block;
    padding: 20px 35px;
}

.logo-wrap h1 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 72px;
    font-weight: 700;
    color: #0b5dbb;
    font-family: Arial, sans-serif;
}

.yellow-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.yellow-line path {
    fill: none;
    stroke: #ffb800;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;

    animation: drawYellowLine 7s ease infinite;
}

@keyframes drawYellowLine {
    from {
        stroke-dashoffset: 1500;
    }

    to {
        stroke-dashoffset: 0;
    }
}


/* ============================== Client ================================*/
.client-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clientScroll 25s linear infinite;
}

.client-item {
  flex: 0 0 auto;
  width: 180px;
  padding: 0 20px;
}

.client-item figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-item img {
  width: 100%;
  max-width: 140px;
  height: 80px;
  object-fit: contain;
  display: block;
}

@keyframes clientScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .client-item {
    width: 130px;
    padding: 0 12px;
  }

  .client-item img {
    max-width: 100px;
    height: 60px;
  }

  .client-track {
    animation-duration: 20s;
  }
}


/* ============================== About =================================*/
.bg-about {
  color: #ccb43e;
  background-color: rgba(9, 69, 148, 0.88) !important;
}

.about-heading {
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #0056a8;
  text-align: center;
}

.about-subtitle {
  max-width: 560px;
  margin: 0 auto 54px;
  font-size: 15px;
  line-height: 1.6;
  color: #52647c;
}

.judul-sambutan-wrap {
  display: inline-block;
  position: relative;
}

.garis-kuning-sambutan {
  display: block;
  width: 500px;
  height: 50px;
  margin: 0 auto;
}

.garis-kuning-sambutan path {
  fill: none;
  stroke: #f4c400;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: 600;
  stroke-dashoffset: 600;

  animation: garisJalanKiriKanan 5s ease infinite;
}

@keyframes garisJalanKiriKanan {
  from {
    stroke-dashoffset: 600;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 576px) {
  .garis-kuning-sambutan {
    width: 180px;
    height: 22px;
  }

  .garis-kuning-sambutan path {
    stroke-width: 6;
  }
}

/* ============================== Keunggulan ============================== */

.keunggulan-section {
  background: #ffffff;
}


/* =========================
   HEADING
========================= */

.keunggulan-heading-wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 12px;
}

.keunggulan-heading {
  margin-bottom: 0;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #0056a8;
  text-align: center;
}


/* =========================
   GARIS KUNING SVG
========================= */

.keunggulan-yellow-line {
  display: block;
  width: 500px;
  height: 50px;
  margin: 2px auto 0;
  overflow: visible;
}

.keunggulan-yellow-line path {
  fill: none;
  stroke: #f4c400;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: 600;
  stroke-dashoffset: 600;

  animation: keunggulanLineMove 5s ease-in-out infinite;
}

@keyframes keunggulanLineMove {

  0% {
    stroke-dashoffset: 600;
    opacity: 1;
  }

  75% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  90% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -600;
    opacity: 0;
  }

}

/* =========================
   GARIS KUNING SVG
========================= */

.keunggulan-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
}

.keunggulan-section .container {
  position: relative;
  z-index: 2;
}


/* =========================
   FLOATING ICON BACKGROUND
========================= */

.keunggulan-floating {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.14;
  color: #0056a8;
}

.keunggulan-floating i {
  display: block;
}


/* TOGA */
.keunggulan-toga {
  top: 12%;
  left: 4%;
  font-size: 74px;

  animation:
    togaFloat 5s ease-in-out infinite,
    togaRotate 8s ease-in-out infinite;
}


/* BUKU */
.keunggulan-book {
  bottom: 10%;
  right: 5%;
  font-size: 68px;
  color: #f4c400;

  animation:
    bookFloat 6s ease-in-out infinite,
    bookRotate 9s ease-in-out infinite;
}


/* SERTIFIKAT */
.keunggulan-certificate {
  top: 38%;
  right: 8%;
  font-size: 62px;

  animation:
    certificateFloat 7s ease-in-out infinite,
    certificateRotate 10s ease-in-out infinite;
}


/* =========================
   ANIMASI TOGA
========================= */

@keyframes togaFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes togaRotate {
  0%,
  100% {
    rotate: -8deg;
  }

  50% {
    rotate: 8deg;
  }
}


/* =========================
   ANIMASI BUKU
========================= */

@keyframes bookFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-22px) translateX(-8px);
  }
}

@keyframes bookRotate {
  0%,
  100% {
    rotate: 6deg;
  }

  50% {
    rotate: -6deg;
  }
}


/* =========================
   ANIMASI SERTIFIKAT
========================= */

@keyframes certificateFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(16px) translateX(-10px);
  }
}

@keyframes certificateRotate {
  0%,
  100% {
    rotate: -5deg;
  }

  50% {
    rotate: 7deg;
  }
}

@media (max-width: 767.98px) {

  .keunggulan-toga {
    top: 6%;
    left: 2%;
    font-size: 44px;
  }

  .keunggulan-book {
    bottom: 4%;
    right: 2%;
    font-size: 42px;
  }

  .keunggulan-certificate {
    top: 46%;
    right: 3%;
    font-size: 38px;
  }

  .keunggulan-floating {
    opacity: 0.08;
  }

}



/* =========================
   SUBTITLE
========================= */

.keunggulan-subtitle {
  max-width: 560px;
  margin: 0 auto 54px;
  font-size: 15px;
  line-height: 1.6;
  color: #52647c;
}


/* =========================
   ROW
========================= */

.keunggulan-row {
  align-items: stretch;
}

.keunggulan-row > div {
  display: flex;
}


/* =========================
   CARD
========================= */

.keunggulan-card {
  width: 100%;
  height: 100%;
  min-height: 320px;

  padding: 36px 24px 30px;

  border: 1px solid #edf0f4;
  border-radius: 12px;

  background: #ffffff;

  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.keunggulan-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);

  border-color: #dbe7f5;
}


/* =========================
   ICON
========================= */

.keunggulan-icon-wrap {
  width: 80px;
  height: 80px;

  margin: 0 auto 22px;

  border-radius: 50%;

  background: #eef3f9;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.keunggulan-icon-wrap img {
  width: 80px;
  height: 80px;

  object-fit: contain;
}


/* =========================
   TITLE
========================= */

.keunggulan-title {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;

  color: #0B59B6;

  margin-bottom: 14px;
}


/* =========================
   DESCRIPTION
========================= */

.keunggulan-desc {
  font-size: 18px;
  line-height: 1.55;

  color: #64748b;

  margin-bottom: 0;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767.98px) {

  .keunggulan-heading {
    font-size: 30px;
  }

  .keunggulan-yellow-line {
    width: 210px;
    height: 26px;
  }

  .keunggulan-yellow-line path {
    stroke-width: 7;
  }

  .keunggulan-card {
    min-height: 300px;
  }

}

/* ================================= Berita ================================ */
.berita-section {
  background: #f6f8fb;
}

.berita-heading {
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #0056a8;
  text-align: center;
}

.berita-card {
  height: 100%;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
}

.berita-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: #e5e7eb;
}

.berita-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.berita-card:hover .berita-thumb img {
  transform: scale(1.06);
}

.berita-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #0056a8;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 10px rgba(0, 86, 168, 0.35);
  z-index: 2;
}

.berita-body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.berita-date {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  color: #0056a8;
}

.berita-title {
  color: var(--ut-blue);
  margin-bottom: 12px;
  line-height: 1.35;
}

.berita-title a {
  color: #0f172a;
}

.berita-title a:hover {
  color: #0056a8;
}

.berita-desc {
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.6;
  color: #6b7280;
}

.berita-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0056a8;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;

  margin-top: auto;
  width: fit-content;
}

.berita-link:hover {
  color: #003f7d;
}

.berita-link i {
  font-size: 14px;
  line-height: 1;
}

.berita-button-wrap {
  margin-top: 28px;
  text-align: center;
}

.berita-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  background: #0056a8;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 86, 168, 0.28);
  transition: all 0.3s ease;
}

.berita-button:hover {
  transform: translateY(-2px);
  background: #004987;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 86, 168, 0.36);
}

.berita-button i {
  font-size: 15px;
}

@media (max-width: 767.98px) {
  .berita-thumb {
    height: 190px;
  }

  .berita-desc {
    min-height: auto;
  }
}

/* ==================================== Prestasi atau Apa Kata Mereka ========================================= */
.prestasi-testimoni-section {
  background: #f4f8fd;
}

.prestasi-heading {
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #0056a8;
  text-align: center;
}

.prestasi-heading span {
  color: #ffde7a;
  font-size: 42px;
}

.prestasi-subtitle {
  max-width: 560px;
  margin: 0 auto 54px;
  font-size: 15px;
  line-height: 1.6;
  color: #52647c;
}

.prestasi-testimoni-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.prestasi-profile-card {
  max-width: 270px;
  margin: 0 auto;
  padding: 14px 14px 16px;
  border-radius: 16px;
  background: #d9efff;
  box-shadow: 0 16px 34px rgba(0, 86, 168, 0.13);
  text-align: center;
}

.prestasi-photo-box {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid #ffffff;
  background: #ffffff;
}

.prestasi-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prestasi-profile-info {
  padding: 14px 6px 0;
}

.prestasi-profile-info h3 {
  margin-bottom: 4px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
  color: #0056a8;
}

.prestasi-profile-info p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #4d96df;
}

.prestasi-content-area {
  max-width: 520px;
}

.prestasi-quote-box {
  position: relative;
  min-height: 86px;
  padding: 24px 28px;
  border: 1px solid #d9e2ee;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.prestasi-quote-box::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 26px;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-left: 1px solid #d9e2ee;
  border-bottom: 1px solid #d9e2ee;
  transform: rotate(45deg);
}

.prestasi-quote-box p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #18284a;
}

.prestasi-control-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.prestasi-nav-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #d7e2ef;
  border-radius: 50%;
  background: #ffffff;
  color: #0056a8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.prestasi-nav-btn:hover {
  background: #0056a8;
  color: #ffffff;
  border-color: #0056a8;
}

.prestasi-nav-btn i {
  font-size: 16px;
}

.prestasi-counter {
  min-width: 48px;
  padding: 6px 12px;
  border: 1px solid #0056a8;
  border-radius: 999px;
  background: #ffffff;
  color: #0056a8;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
}

.prestasi-thumb-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.prestasi-thumb-btn {
  width: 50px;
  height: 50px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  opacity: 0.38;
  filter: grayscale(1);
  transition: all 0.25s ease;
}

.prestasi-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prestasi-thumb-btn.active {
  opacity: 1;
  filter: grayscale(0);
  border-color: #0056a8;
  box-shadow: 0 6px 16px rgba(0, 86, 168, 0.22);
}

.prestasi-thumb-btn:hover {
  opacity: 1;
}

@media (max-width: 991.98px) {
  .prestasi-content-area {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .prestasi-heading {
    font-size: 30px;
  }

  .prestasi-subtitle {
    margin-bottom: 36px;
    font-size: 14px;
  }

  .prestasi-profile-card {
    max-width: 260px;
  }

  .prestasi-content-area {
    text-align: center;
  }

  .prestasi-quote-box {
    margin-top: 8px;
    padding: 22px 20px;
  }

  .prestasi-quote-box::before {
    display: none;
  }

  .prestasi-control-row,
  .prestasi-thumb-row {
    justify-content: center;
  }
}

/* =========================================== Staff ============================================== */
.staff-directory-section {
  background: #f5f8fc;
}

.staff-panel {
  margin-top: -90px;
  position: relative;
  z-index: 5;
  padding: 42px 34px 46px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.staff-header {
  margin-bottom: 28px;
}

.staff-main-title {
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: #0056a8;
}

.staff-main-subtitle {
  margin-bottom: 0;
  font-size: 15px;
  color: #64748b;
}

.staff-toolbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 38px;
}

.staff-search-wrap {
  position: relative;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}

.staff-search-wrap i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #0056a8;
  font-size: 18px;
  z-index: 2;
}

.staff-search-input {
  width: 100%;
  height: 50px;
  padding: 0 18px 0 48px;
  border: 1px solid #dbe4ef;
  border-radius: 999px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

.staff-search-input:focus {
  border-color: #0056a8;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 86, 168, 0.10);
}

.staff-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.staff-filter-btn {
  border: 1px solid #dbe4ef;
  border-radius: 999px;
  padding: 9px 16px;
  background: #ffffff;
  color: #52647c;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.staff-filter-btn:hover,
.staff-filter-btn.active {
  border-color: #0056a8;
  background: #0056a8;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 86, 168, 0.22);
}

.staff-category-block {
  margin-top: 42px;
}

.staff-category-block:first-of-type {
  margin-top: 0;
}

.staff-category-title-wrap {
  margin-bottom: 22px;
  text-align: center;
}

.staff-category-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
  color: #0056a8;
}

.staff-category-title::before,
.staff-category-title::after {
  content: "";
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: #f4b000;
}

.staff-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e6edf5;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
  transition: all 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-7px);
  border-color: #c9def4;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.staff-photo-link {
  display: block;
  text-decoration: none;
}

.staff-photo {
  position: relative;
  height: 265px;
  overflow: hidden;
  background: #eaf1f8;
}

.staff-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 58%, rgba(0, 86, 168, 0.18));
  pointer-events: none;
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.staff-card:hover .staff-photo img {
  transform: scale(1.06);
}

.staff-card-body {
  padding: 18px 18px 20px;
  text-align: center;
}

.staff-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef7ff;
  color: #0056a8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.staff-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.staff-name {
  min-height: 48px;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  color: #0f172a;
}

.staff-name a {
  color: #0f172a;
  text-decoration: none;
}

.staff-name a:hover {
  color: #0056a8;
}

.staff-role {
  min-height: 40px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}

.staff-tags {
  min-height: 34px;
  margin-bottom: 14px;
}

.staff-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
}

.staff-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #0056a8;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.staff-detail-link:hover {
  color: #003f7d;
}

.staff-detail-link i {
  font-size: 15px;
}

.staff-empty {
  padding: 18px 20px;
  border-radius: 14px;
  background: #f8fafc;
  color: #64748b;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.staff-empty-global {
  margin-top: 30px;
}

@media (max-width: 1199.98px) {
  .staff-photo {
    height: 245px;
  }
}

@media (max-width: 991.98px) {
  .staff-panel {
    margin-top: -70px;
    padding: 34px 24px 38px;
  }

  .staff-main-title {
    font-size: 32px;
  }

  .staff-photo {
    height: 260px;
  }
}

@media (max-width: 767.98px) {
  .staff-panel {
    margin-top: -60px;
    padding: 30px 18px 34px;
    border-radius: 18px;
  }

  .staff-main-title {
    font-size: 28px;
  }

  .staff-main-subtitle {
    font-size: 14px;
  }

  .staff-category-title {
    font-size: 21px;
  }

  .staff-category-title::before,
  .staff-category-title::after {
    width: 26px;
  }

  .staff-photo {
    height: 320px;
  }
}

@media (max-width: 575.98px) {
  .staff-photo {
    height: 360px;
  }
}

/* ==================================== FAQ ============================================= */
.faq-bg {
  color: #f4f8fd;
}

.faq-head {
  color: #0B59B6;
}

.faq-head-hover {
  color: #ffc20e;
}

.faq-text {
  color: #1f2937;
}

.faq-muted {
  color: #6b7280;
}

.faq-title {
  color: #0B59B6;
}

.faq-border {
  color: #e5e7eb;
}

.faq-shadow {
  color: 0 6px 18px rgba(16,24,40,.06), 0 2px 6px rgba(16,24,40,.04);
}

.faq-shadow-hover {
  color: 0 10px 24px rgba(16,24,40,.10), 0 3px 10px rgba(16,24,40,.06);
}

.faq-heading-top {
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #0056a8;
  text-align: center;
}

.faq-section {
  background: #f4f8fd;
}


.faq-accordion .accordion-item{
  border: 0 !important;                 /* hilangkan border hitam */
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(16,24,40,.06), 0 2px 6px rgba(16,24,40,.04);
  transition: box-shadow .25s ease, transform .25s ease;
}

.faq-accordion .accordion-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16,24,40,.10), 0 3px 10px rgba(16,24,40,.06);
}


.faq-accordion .accordion-button{
  position: relative;
  display: block;                        /* biar judul gampang di-center */
  width: 100%;
  background: linear-gradient(180deg, #0B59B6, #fff);
  color: #1f2937;
  padding: 18px 60px 18px 22px;          /* ruang kanan untuk ikon */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2px;
  line-height: 1.35;
  box-shadow: none !important;
  border: 0 !important;                  /* hilangkan border */
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, padding .2s ease;
}

.faq-accordion .accordion-button:hover{
  background: #ffc20e;
}

.faq-accordion .accordion-button:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(59,130,246,.15) !important;
}

.faq-accordion .accordion-button::after{
  display: none;                        /* hilangkan caret bootstrap */
} 


.faq-title{
  /*display: block;*/
  text-align: center;
  word-break: break-word;
  font-size: clamp(15px, 1.8vw, 18px);
  margin: 0;
}

.text-banner-blue {
  color: #0B59B6;
}

.toggle-icon{
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  line-height: 1;
  color: #111827;
  background:#f3f6fb;
  border: 0 !important;                  /* tanpa ring hitam */
  transition: transform .25s ease, background .2s ease, color .2s ease;
}

.faq-accordion .accordion-item.is-open .accordion-button{
  background: #fff;
}

.faq-accordion .accordion-item.is-open .toggle-icon{
  transform: translateY(-50%) rotate(180deg);
}

.faq-accordion .accordion-collapse{
  transition: height .25s ease;
}

.faq-accordion .accordion-body{
  padding: 22px 28px;
  text-align: center;
  color: #374151;
  line-height: 1.7;
  font-size: 16px;
  border-top: 0 !important;              /* tanpa border hitam */
  background:#fff;
}

@media (min-width: 992px){
  .faq-accordion .accordion-body{ font-size: 25px; }
}

/* ====================================== Style Staff ====================================*/
/* Header halaman */
.page-head-uni{
  background: var(--ph-bg);
  border-bottom: 1px solid var(--ph-sep);
  padding: clamp(18px, 4vw, 28px) 0;
  margin-bottom: clamp(12px, 2vw, 20px);
}
.ph-title{
  margin: 0 0 6px 0;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ph-text);
}
.ph-breadcrumb ol{
  list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:.5rem;
  color: var(--ph-crumb); font-size: 14px;
}
.ph-breadcrumb a{ color: var(--ph-crumb); text-decoration:none; }
.ph-breadcrumb a:hover{ text-decoration: underline; text-underline-offset: 3px; }
.ph-breadcrumb li+li::before{ content:"›"; margin: 0 .35rem 0 .1rem; }

/* Utility justify untuk isi konten panjang (tetap ada) */
.text-justify{
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* Kartu container utama, memberi jarak isi dengan tepi */
.org-card{
  background:#fff; border:1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.org-card__inner{ padding: clamp(16px, 3vw, 28px); color: var(--ink); }
.org-card__inner p{ margin-bottom: 1rem; }

/* Judul per kategori */
.sect-title{
  margin: 10px 0 14px; text-align:center; font-weight:800;
  color: var(--ink); font-size: clamp(18px, 2vw, 22px);
  position: relative;
}
.sect-title span{
  background:#f7f9fc; padding: 2px 12px; border-radius: 999px;
  border:1px solid var(--border);
}
.sect-title::after{
  content:""; position: absolute; left:0; right:0; bottom:-10px; margin:auto;
  width: 100%; height:1px; background: linear-gradient(90deg,#ffffff00,#dfe8f2,#ffffff00);
}

/* Baris kartu: pastikan grid berada di tengah */
.team-section .row{ justify-content: center; }

/* Kartu orang: isi dibuat di TENGAH */
.person-card{
  background:#fff; border:1px solid var(--border);
  border-radius: 14px; padding: 18px 14px;
  box-shadow: 0 2px 8px rgba(16,24,40,.05);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;

  /* pusatkan isi kartu */
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:6px;
}
.person-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(16,24,40,.08);
  border-color:#dbe7f2;
}

/* Avatar */
.avatar-wrap{
  display:grid; place-items:center; margin-bottom: 8px; width:100%;
}
.avatar{
  width: 110px; height: 110px; object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #e8eef7;
}

/* Nama & role: pusatkan sepenuhnya */
.person-name{
  margin: 4px 0 0; font-size: 18px; font-weight: 800; line-height:1.25; width:100%;
}
.person-name a{ color: var(--ink); text-decoration:none; display:inline-block; }
.person-name a:hover{ color: var(--accent); }

.person-role{ color: var(--muted); font-size: 14px; width:100%; }

/* Tag keahlian: pusat */
.person-tags{ margin-top: 4px; width:100%; display:flex; justify-content:center; gap:6px; flex-wrap:wrap; }
.tag{
  display:inline-block; background:#eef4ff; color:#0b2b5a;
  border:1px solid #dbe7ff; border-radius:999px;
  padding:.18rem .55rem; font-size:12.5px; font-weight:700;
}


pre.language-php, pre.language-js, pre.language-markup {
  background-color: #f5f5f5;
  border:  solid thin #eee;
  margin-bottom: 1em;
}