:root {
  --primary-color: #014978;
  --secondary-color: #F3B414;
  --dark-color: #1c1e27;
  --bg-color: #757783;
  --light-color: #fff;
  --hover-color: #0178c7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: var(--bg-color);
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 10px;
}
/* Menyesuaikan tinggi item submenu */
.navbar .dropdown-menu .dropdown-item {
    padding: 4px 12px;
}
 
.dropdown-menu .dropdown-item:hover {
    background-color: #f2f2f2;
    color: #0d6efd;
}


body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

body::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 2px;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.btn-custom {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-custom:hover {
  background-color: var(--hover-color);
  color: var(--light-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-custom-small {
  background-color: var(--primary-color);
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-custom-small:hover {
  background-color: var(--hover-color);
  color: var(--light-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline-custom {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a:hover {
  color: var(--primary-color);
}

a {
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0px;
  color: var(--dark-color);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 40px;
}

@media (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  /* list-style-type: none; */
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin: 0px;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.error {
  color: orangered;
}

.success {
  color: green;
}

.scroll-top {
  border: 1px solid var(--light-color);
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--light-color) !important;
  border-radius: 10px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
  text-align: center;
  line-height: 45px;
}

.scroll-top:hover {
  color: var(--light-color);
  background: var(--hover-color);
}

.scroll-top {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: auto;
}

.scroll-top.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


@keyframes animation1 {
  0% {
    transform: translateY(30px);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(30px);
  }
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  overflow: hidden;
}

.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader-icon {
  width: 100px;
  height: 100px;
  display: inline-block;
  padding: 0px;
}

.preloader-icon span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: var(--primary-color);
  -webkit-animation: preloader-fx 1.6s linear infinite;
  animation: preloader-fx 1.6s linear infinite;
}

.preloader-icon span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader-fx {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}


/*======================================
	01. Start Header CSS
========================================*/
/* Topbar */
.header .toolbar-area {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-color);
  background: var(--primary-color);
  overflow: hidden;
  max-height: 100px;
  opacity: 1;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.navbar-area.sticky .toolbar-area {
  /* display: none; */
  padding: 0;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  /* agar tidak bisa diklik */
}

.header .toolbar-area .toolbar-contact {
  margin-top: 8px;
}

.header .toolbar-area .toolbar-contact p {
  display: inline-block;
  margin-right: 8px !important;
  margin-top: 2px;
  margin: 0;
  text-align: center;
  line-height: 0;
  font-size: 14px;
  color: var(--light-color);
}

.header .toolbar-area .toolbar-contact p:last-child {
  margin-right: 0px !important;
}

.header .toolbar-area .toolbar-contact p a {
  font-size: 14px;
  font-weight: 400;
  color: var(--light-color);
  margin-right: 7px;
}

.header .toolbar-area .toolbar-contact p i {
  display: inline-block;
  margin-right: 6px;
  color: var(--light-color);
  font-size: 15px;
}

.header .toolbar-area .toolbar-contact p a:hover {
  color: var(--hover-color);
}

.header .toolbar-area .toolbar-contact ul li p {
  margin: 0;
  float: right;
  font-size: 13px;
  margin-top: 8px;
  font-weight: 500;
  line-height: 18px;
  color: #777;
}

.header .toolbar-area .toolbar-contact ul li:last-child {}

.header .toolbar-area .toolbar-sl-share ul {
  float: right;
}

.header .toolbar-area .toolbar-sl-share ul li {
  margin: 0;
  text-align: center;
  display: inline-block;
  height: 40px;
  margin-right: 5px;
}

.header .toolbar-area .toolbar-sl-share ul li:last-child {
  margin-right: 0;
}

.header .toolbar-area .toolbar-sl-share ul li a {
  color: var(--light-color);
  height: 35px;
  width: 35px;
  text-align: center;
  display: block;
  border: 1px solid var(--light-color);
  line-height: 35px;
  text-align: center;
  border-radius: 6px;
}

.header .toolbar-area .toolbar-sl-share ul li a i {
  font-size: inherit;
}

.header .toolbar-area .toolbar-sl-share ul li a:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.header .button .btn {
  padding: 13px 30px;
}

.header .button {
  margin-left: 40px;
}

/*===== NAVBAR =====*/
.navbar-area {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-out 0s;
  padding: 0;
}

.navbar-area.header-3 {
  background: var(--light-color);
}

.navbar-area.sticky {
  position: fixed;
  z-index: 99;
  background: rgba(1, 73, 120, 0.8);
  /* background: var(--primary-color); */
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out 0s;
  /* background: var(--light-color); */
  padding: 0px 0;
   color: var(--light-color);
}



.navbar-area.sticky .navbar-nav .nav-item a:hover {
  color: var(--secondary-color);
}

.navbar-area.sticky .navbar-nav .nav-item a.active {
  color: var(--secondary-color);
}

.navbar-area.sticky .navbar-nav .nav-item .sub-menu li a {
  color: var(--primary-color);
}

.navbar-area .navbar-nav .nav-item.mm-active>a {
  color: var(--primary-color);
}

.navbar-area.sticky .navbar-nav .nav-item.mm-active>a {
  color: var(--secondary-color);
}

.navbar-area .navbar-nav .nav-item.mm-active ul li.active {
  background-color: rgba(1, 73, 120, 0.1);
  /* 20% opacity */
}

.header {
  background-color: var(--light-color);
}

.navbar {
  padding: 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  width: 50px;
}

.navbar-toggler {
  padding: 0px;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--dark-color);
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 165% !important;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    max-height: 350px;
    overflow-y: scroll;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 165% !important;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    max-height: 350px;
    overflow-y: scroll;
  }
}

.navbar-nav .nav-item {
  position: relative;
  z-index: 1;
}

.navbar-nav .nav-item:hover a {
  color: var(--primary-color);
}

#font navbar sebelum di sticky
.navbar-nav .nav-item a {
  font-size: 16px;
  color: #051441;
  transition: all 0.3s ease-out 0s;
  position: relative;
  padding: 32px 15px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-color);
  transition: all 0.3s ease-out 0s;
  position: relative;
  text-transform: capitalize;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a {
    padding: 32px 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item a {
    color: #051441;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
  }

  .nav-inner {
    padding: 25px 0;
  }
}

.navbar-nav .nav-item a.active {
  color: var(--primary-color);
}

.navbar-nav .nav-item a.dd-menu {
  padding-right: 34px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a.dd-menu {
    padding-right: 30px;
  }
}

.navbar-nav .nav-item a.dd-menu::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 17px;
  font-size: 10px;
  top: 50%;
  margin-left: 5px;
  transition: all 0.3s ease-out 0s;
  height: 10px;
  margin-top: -12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a.dd-menu::after {
    right: 13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item a.dd-menu::after {
    top: 16px;
    right: 0;
    transform: rotate(180deg);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item a.collapsed::after {
    transform: rotate(0deg);
  }
}

.navbar-nav .nav-item:hover>.sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar-nav .nav-item:hover>.sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.navbar-nav .nav-item .sub-menu {
  min-width: 220px;
  background-color: var(--light-color);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100% !important;
  left: -8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
  padding: 10px;
}

.navbar-nav .nav-item .sub-menu.left-menu {
  left: -100%;
}

.navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  .navbar-nav .nav-item .sub-menu::after {
    display: none;
  }
}

.navbar-nav .nav-item .sub-menu>li {
  display: block;
  margin-left: 0;
}

.navbar-nav .nav-item .sub-menu>li:last-child {
  border: none;
}

.navbar-nav .nav-item .sub-menu>li.active>a,
.navbar-nav .nav-item .sub-menu>li:hover>a {
  color: var(--primary-color);
}

.navbar-nav .nav-item .sub-menu>li>a {
  font-weight: 400;
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  color: var(--dark-color);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  font-weight: 400;
}

.navbar-nav .nav-item .sub-menu>li:first-child a {
  border: none;
}

.navbar-nav .nav-item .sub-menu>li>a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
}

/*======================================
   End Header CSS
========================================*/

/*======================================
   12. Start Clients CSS
========================================*/

.client-logo-section {
  background: #F9FAFF;
  padding: 50px 0;
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo {
  padding: 10px;
  text-align: center;
  margin: auto
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img {
  max-width: 220px;
  width: 100%;
  opacity: .3;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img:hover {
  opacity: 1
}

/*======================================
   Main Slider
========================================*/

.main-slider {
  position: relative;
  display: block;
  overflow: hidden;
}

.main-slider-one {
  position: relative;
  display: block;
  z-index: 1;
}

.main-slider.main-slider-one .swiper-slide .shape1 {
  position: absolute;
  top: -100px;
  left: -230px;
  z-index: 2;
  opacity: 0;
  transform: translateX(-100%);
}

.main-slider.main-slider-one .swiper-slide-active .shape1 {
  opacity: 1;
  transform: translateX(0);
  transition: all 1000ms ease;
  transition-delay: 200ms;
}

.main-slider-one .swiper-slide .shape2 {
  position: absolute;
  top: -35px;
  left: -325px;
  z-index: 3;
  opacity: 1;
  transform: translateX(-100%);
}

.main-slider.main-slider-one .swiper-slide-active .shape2 {
  opacity: 1;
  transform: translateX(0);
  transition: all 1000ms ease;
  transition-delay: 400ms;
}

.main-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.main-slider .swiper-slide .container {
  position: relative;
  z-index: 30;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
  transform: scale(1);
}

.main-slider .swiper-slide-active .image-layer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* abu-abu transparan */
  transition: background-color 0.5s ease-in-out;
  z-index: 1;
}

.main-slider .container {
  position: relative;
  padding-top: 185px;
  padding-bottom: 170px;
  z-index: 2;
}

.main-slider .main-slider__content {
  position: relative;
  display: block;
  z-index: 1;
}

.main-slider__content-icon-one {
  position: absolute;
  top: 220px;
  right: 340px;
  display: inline-block;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #ffffff;
  text-align: center;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  z-index: 1;
  opacity: 0;
  transform: translateY(100%);

}

.main-slider.main-slider-one .swiper-slide-active .main-slider__content-icon-one {
  opacity: 1;
  transform: translateY(0);
  transition: all 2000ms ease;
  transition-delay: 200ms;
}

.main-slider__content-icon-one::before {
  position: absolute;
  top: -19px;
  left: -19px;
  bottom: -19px;
  right: -19px;
  border: 20px solid #e4e7ec;
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.main-slider__content-icon-one span::before {
  font-size: 45px;
  line-height: 85px;
  color: var(--primary-color);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider__content-icon-one:hover span:before {
  color: #ffffff;
}

.main-slider__content-icon-one::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  background: var(--primary-color);
}

.main-slider__content-icon-one:hover:after {
  transform: scaleX(1.0);
}

.main-slider__content-icon-two {
  position: absolute;
  bottom: -70px;
  right: -40px;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  text-align: center;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateX(100%);
  z-index: 1;
}

.main-slider.main-slider-one .swiper-slide-active .main-slider__content-icon-two {
  opacity: 1;
  transform: translateX(0);
  transition: all 2000ms ease;
  transition-delay: 200ms;
}

.main-slider__content-icon-two::before {
  position: absolute;
  top: -20px;
  left: -20px;
  bottom: -20px;
  right: -20px;
  border-radius: 50%;
  border: 20px solid var(--dark-color);
  opacity: 0.07;
  content: "";
  z-index: -1;
}

.main-slider__content-icon-two span::before {
  color: var(--primary-color);
  font-size: 55px;
  line-height: 100px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider__content-icon-two:hover span::before {
  color: #ffffff;
}

.main-slider__content-icon-two::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  background: var(--primary-color);
}

.main-slider__content-icon-two:hover:after {
  transform: scaleX(1.0);
}

.main-slider-one__round-box {
  position: absolute;
  top: -130px;
  right: -130px;
  opacity: 0;
  transform: translateY(-100%);
}

.main-slider-one__round-box-inner {
  position: relative;
  display: block;
}

.main-slider.main-slider-one .swiper-slide-active .main-slider-one__round-box {
  opacity: 1;
  transform: translateY(0);
  transition: all 1000ms ease;
  transition-delay: 1000ms;
}

.main-slider-one__round-box p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  color: #ffffff;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  margin: 0;
  background: var(--primary-color);
}

.main-slider-one__round-box .icon {
  position: absolute;
  left: 20px;
  bottom: 2px;
  font-size: 40px;
  color: var(--primary-color);
  transform: rotate(-135deg);
}


.main-slider__content-tagline {
  position: relative;
  display: block;
  opacity: 0;
  transition: all 1000ms ease;
  transform: translateY(80px);
  width: 530px;
}

.main-slider__content-tagline h2 {
  color: var(--secondary-color);
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
  text-align: right;
}

.main-slider-one .swiper-slide-active .main-slider__content-tagline {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1000ms;
}

.main-slider__content-title {
  color: var(--light-color);
  font-size: 130px;
  line-height: 0.9em;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 27px;
  opacity: 0;
  transition: all 1000ms ease;
  transform: translateY(80px);

}

.main-slider-one .swiper-slide-active .main-slider__content-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1500ms;
}

.main-slider__content-text {
  position: relative;
  font-size: 24px;
  line-height: 40px;
  margin: 0;
  opacity: 0;
  transition: all 1000ms ease;
  transform: translateY(80px);
  z-index: 2;
}

.main-slider-one .swiper-slide-active .main-slider__content-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 2000ms;
}

.main-slider__content-btn {
  position: relative;
  display: block;
  margin-top: 46px;
  opacity: 0;
  transition: all 1000ms ease;
  transform: translateY(80px);
}

.main-slider-one .swiper-slide-active .main-slider__content-btn {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 2500ms;
}

.main-slider__nav {
  position: absolute;
  top: 50%;
  left: 0%;
  right: 0;
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  transform: translateY(-50%);
  z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  display: block;
  height: 60px;
  width: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
  z-index: 100;
}

.main-slider__nav .swiper-button-prev {
  float: left;
  left: 0;
}

.main-slider__nav .swiper-button-next {
  float: right;
  right: 0;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  color: var(--primary-color);
  background: #ffffff;
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev {
  margin-bottom: 0px;
  background-color: var(--dark-color);
}

.main-slider__nav .swiper-button-prev:hover {
  background-color: #fff;
  color: var(--dark-color);
}

.main-slider__nav .swiper-button-prev i::before {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 60px;
}

.main-slider__nav .swiper-button-next i::before {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 60px;
}


.main-slider-one #main-slider-pagination {
  display: none;
}

/***
=============================================
    Features One
=============================================
***/
.features-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
}

.features-one__single {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 35px 40px 26px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border: 1px solid #ffffff;
  margin-bottom: 30px;
  height: calc(100% - 30px);
}

.features-one__single:hover {
  border: 1px solid var(--primary-color);
}

.features-one__single::before {
  position: absolute;
  left: -1px;
  bottom: -1px;
  right: -1px;
  height: 10px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: var(--primary-color);
  content: "";
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.22);
  z-index: 1;
}

.features-one__single:hover:before {
  transform: scaleY(1.0);
}

.features-one__single-icon {
  position: relative;
  display: block;
  color: var(--dark-color);
  transition: all 500ms ease;
}

.features-one__single:hover .features-one__single-icon {
  transform: rotateY(180deg);
  color: var(--primary-color);
}

.features-one__single-icon span::before {
  font-size: 60px;
}

.features-one__single-text {
  position: relative;
  display: block;
  padding-left: 20px;
}

.features-one__single-text h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.features-one__single-text h4 a {
  color: var(--dark-color);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-one__single-text h4 a:hover {
  color: var(--primary-color);
}

.features-one__single-text p {
  margin: 0;
  line-height: 28px;
}


/***
=============================================
    About One
=============================================
***/
.about-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0 120px;
}

.about-one__left {
  position: relative;
  display: block;
  margin-left: -130px;
  margin-right: 30px;
}

.about-one__left-img-box {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
  z-index: 1;
}

.about-one__left::before {
  position: absolute;
  top: 30px;
  left: -20px;
  bottom: 30px;
  background: var(--primary-color);
  width: 40px;
  border-radius: 8px;
  content: "";
  z-index: 1;
}

.about-one__left-single {
  position: relative;
  float: left;
  padding: 0px 5px 0px;
}

.about-one__left-img1 {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.about-one__left-img1::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.about-one__left-img1:hover:before {
  -webkit-animation: circle .75s;
  animation: circle .75s;
}

.about-one__left-img1 img {
  border-radius: 8px;
  width: 100%;
  transform: scale(1);
  transition: all 0.7s ease 0s;
}

.about-one__left-img1:hover img {
  transform: scale(1.1);
}

.about-one__left-overlay {
  position: absolute;
  bottom: 20px;
  right: 0px;
  display: flex;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 29px 50px 21px 30px;
  z-index: 10;
}

.about-one__left-overlay .icon {
  position: relative;
  display: block;
}

.about-one__left-overlay .icon span::before {
  font-size: 60px;
  color: var(--primary-color);
}

.about-one__left-overlay .title {
  position: relative;
  display: block;
  padding-left: 19px;
}

.about-one__left-overlay .title h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.about-one__left-overlay .title h6 span {
  position: relative;
  display: inline-block;
  line-height: 28px;
}

.about-one-right {
  position: relative;
  display: block;
}

.about-one-right .section-title {
  position: relative;
  display: block;
  margin-top: -7px;
  margin-bottom: 35px;
}

.about-one-right .section-title span {
  position: relative;
  display: inline-block;
  color: var(--secondary-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.about-one-right .section-title h2 {
  color: var(--primary-color);
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
}


.about-one__right-inner {
  position: relative;
  display: block;
}

.about-one__right-text {
  margin: 0;
}

.about-one__right-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 40px;
}

.about-one__right-list-item {
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.about-one__right-list-item:last-child {
  margin-bottom: 0;
}

.about-one__right-list-item .icon {
  position: absolute;
  top: 3px;
  left: 0;
  color: var(--primary-color);
  font-size: 20px;
  transform: scale(1);
  transition: color 500ms ease, transform 500ms ease;
}

.about-one__right-list-item:hover .icon {
  color: var(--dark-color);
  transform: scale(.8);
}

.about-one__right-list-item .text {
  position: relative;
  display: block;
  padding-left: 35px;
}

.about-one__right-list-item .text p {
  margin: 0;
}

.about-one__btn {
  position: relative;
  display: block;
  margin-top: 54px;
}


/*--------------------------------------------------------------
# Featured Programs Section
--------------------------------------------------------------*/

.featured-programs {
  padding-top: 60px !important;
}

.featured-programs .section-title {
  margin-bottom: 40px;
}

.featured-programs .section-title h2 {
  color: var(--primary-color);
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.featured-programs .section-title p {
  position: relative;
  display: inline-block;
  color: var(--bg-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.featured-programs .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  ;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.featured-programs .isotope-filters li {
  cursor: pointer;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: all 0.3s ease;
}

.featured-programs .isotope-filters li:hover,
.featured-programs .isotope-filters li.filter-active {
  background-color: var(--primary-color);
  color: var(--contrast-color);
}

.featured-programs .program-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-programs .program-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.featured-programs .program-item:hover .program-btn i {
  transform: translateX(5px);
}

.featured-programs .program-item:hover .program-image-wrapper img {
  transform: scale(1.1);
}

.featured-programs .program-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}

.featured-programs .program-image-wrapper {
  height: 100%;
  overflow: hidden;
}

.featured-programs .program-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-programs .program-content {
  padding: 25px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-programs .program-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.featured-programs .program-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.featured-programs .program-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}

.featured-programs .program-highlights span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--primary-color), transparent 30%);
  display: flex;
  align-items: center;
}

.featured-programs .program-highlights span i {
  margin-right: 5px;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.featured-programs .program-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.featured-programs .program-btn span {
  position: relative;
}

.featured-programs .program-btn span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.featured-programs .program-btn i {
  transition: transform 0.3s ease;
}

.featured-programs .program-btn:hover {
  color: var(--primary-color);
}

.featured-programs .program-btn:hover span:after {
  width: 100%;
}

.featured-programs .swiper-wrapper {
  height: auto !important;
}

@media (max-width: 992px) {
  .featured-programs .isotope-filters {
    margin-bottom: 30px;
  }

  .featured-programs .isotope-filters li {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .featured-programs .program-image-wrapper {
    height: 200px;
  }

  .featured-programs .program-content {
    padding: 20px 15px;
  }

  .featured-programs .program-content h3 {
    font-size: 1.15rem;
  }

  .featured-programs .program-highlights {
    flex-direction: column;
    gap: 8px;
  }
}

/*======================================
	News
========================================*/
.news {
  padding: 60px 0px !important;
  background-color: #f4f4f4;
}

.news .section-title {
  margin-bottom: 40px;
}

.news .section-title h2 {
  color: var(--primary-color);
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.news .section-title p {
  position: relative;
  display: inline-block;
  color: var(--bg-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.badge-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--light-color);
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 999px;
}

.news-card {
  border: none;
  border-radius: 0.75rem;
  height: calc(100% - 10px);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.news-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-meta {
  font-size: 0.875rem;
  color: var(--bg-color);
}

.news-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.news-desc {
  font-size: 0.9rem;
  color: var(--bg-color);
}

.news .news-card .description {
  padding: 10px !important;
}

.news .news-card .description .news-title a:hover {
  color: var(--primary-color);
}


.news .news-card .description .news-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news .news-card .description .news-highlights span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--primary-color), transparent 30%);
  display: flex;
  align-items: center;
}

.news .news-card .description .news-highlights span i {
  margin-right: 5px;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.news-highlights span {
  position: relative;
  padding-right: 0.75rem;
  margin-right: 0.75rem;
}

.news-highlights span:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -8px;
  color: #ccc;
}


.news .program-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.news .program-btn span {
  position: relative;
}

.news .program-btn span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.news .program-btn i {
  transition: transform 0.3s ease;
}

.news .program-btn:hover {
  color: var(--primary-color);
}

.news .program-btn:hover span:after {
  width: 100%;
}

/***
=============================================
    Services
=============================================
***/
.services {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.services .section-title {
  margin-bottom: 40px;
}

.services .section-title h2 {
  color: var(--primary-color);
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.services .section-title p {
  position: relative;
  display: inline-block;
  color: var(--bg-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.services a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.services .icon-circle {
  position: relative;
  display: block;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  text-align: center;
  background: #f1f2f6;
  margin: 0 auto;
  margin-bottom: 25px;
  z-index: 1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services .icon-circle span {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 65px;
  line-height: 115px;
}

.services .services-card {
  border-radius: 10px;
  padding: 20px 0px 18px !important;
}

.services .services-card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.services .services-card:hover .icon-circle {
  background: var(--primary-color);
  /* jadi biru */
  transition: all 0.3s ease-in-out;
}

.services .services-card:hover .icon-circle span {
  color: var(--light-color);
  /* jadi putih */
  transition: all 0.3s ease-in-out;
}

.services .services-card:hover h6 {
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}


/***
=============================================
    graphic 
=============================================
***/

.graphic {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 60px 0px 90px;
  z-index: 1;
}

.graphic .section-title {
  margin-bottom: 40px;
}

.graphic .section-title h2 {
  color: var(--primary-color);
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.graphic .section-title p {
  position: relative;
  display: inline-block;
  color: var(--bg-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

/***
=============================================
    Publication 
=============================================
***/

.publication {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 60px 0px 90px;
  z-index: 1;
}

.publication .section-title {
  margin-bottom: 40px;
}

.publication .section-title h2 {
  color: var(--primary-color);
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.publication .section-title p {
  position: relative;
  display: inline-block;
  color: var(--bg-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.publication .nav-pills .nav-link.active {
  color: var(--light-color);
  background-color: var(--primary-color);
}

.comment-one {
  position: relative;
  display: block;
}

.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--thm-black);
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 47px;
}

.comment-one__content {
  position: relative;
  display: block;
}

.comment-one__content p {
  margin: 0;
}

.comment-one__content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment-one__content-text {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.comment-one__content-text h3 {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.comment-one__content-text h3 span {
  color: var(--primary-color);
  font-size: 14px;
  line-height: 24px;
  padding-left: 8px;
}

.comment-form .comment-form__title {
  margin-top: -6px;
}


.publication .program-btn {
  padding-top: 10px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.publication .program-btn span {
  position: relative;
}

.publication .program-btn span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.publication .program-btn i {
  transition: transform 0.3s ease;
}

.publication .program-btn:hover {
  color: var(--primary-color);
}

.publication .program-btn:hover span:after {
  width: 100%;
}

.publication .tab-pane .card {
  margin-bottom: 20px;
}

.publication .tab-pane {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.publication .tab-pane.show.active {
  opacity: 1;
  transform: translateY(0);
}

.publication .nav-pills .nav-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(--primary-color);
  background-color: transparent;
  transition: color 0.3s ease;
}

/* efek animasi dari kanan ke kiri */
.publication .nav-pills .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.9s ease;
  z-index: -1;
}

/* saat hover, munculkan background dari kanan ke kiri */
.publication .nav-pills .nav-link:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

/* saat hover, ubah warna teks */
.publication .nav-pills .nav-link:hover {
  color: var(--light-color);
}


/***
=============================================
    Testimonials One
=============================================
***/
.testimonials-one {
  position: relative;
  display: block;
  padding: 120px 0px 108px;
  background: var(--primary-color);
  overflow: hidden;
  z-index: 1;
}

.testimonials-one::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  height: 425px;
  content: "";
}

.testimonials-one .section-title {
  margin-bottom: 42px;
}

.testimonials-one .section-title__tagline {
  color: var(--light-color);
}

.testimonials-one .section-title__title {
  color: var(--secondary-color);
}


.testimonials-one__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.testimonials-one__wrapper .shape1 {
  position: absolute;
  top: -475px;
  right: -325px;
  z-index: -1;
}

.testimonials-one__pattern {
  position: absolute;
  left: -325px;
  top: -680px;
  z-index: -1;
  opacity: 0.15;
}

.testimonials-one__single {
  position: relative;
  display: block;
}

.testimonials-one__single-inner {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 8px;
  padding: 45px 51px 50px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.testimonials-one__single-title {
  color: var(--thm-base);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 23px;
}

.testimonials-one__single-text {
  margin: 0;
  font-weight: 300;
}

.testimonials-one__single-client-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 18px;
}

.testimonials-one__single-client-info-img {
  position: relative;
  display: block;
}

.testimonials-one__single-client-info-img img {
  width: 100%;
}

.testimonials-one__single-client-info-text {
  position: relative;
  display: block;
  padding-left: 20px;
}

.testimonials-one__single-client-info-text h5 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.testimonials-one__single-client-info-text p {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}



.testimonials-one__carousel.owl-theme .owl-stage-outer {
  overflow: visible;
}

.testimonials-one__carousel .owl-stage-outer .owl-item {
  opacity: 0;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.testimonials-one__carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
}

/*======================================
	Google Map
========================================*/
.contact-page-google-map {
  position: relative;
  display: block;
  z-index: 3;
}

.contact-page-google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 580px;
  width: 100%;
}

/*======================================
	17. Start Footer CSS
========================================*/
.footer {
  background-color: rgba(0, 0, 0, 0.9);
  /* hitam dengan transparansi */
  color: #fff;
  /* teks putih */
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.footer .container,
.footer .row,
.footer .footer-top,
.footer .single-footer,
.footer .f-about p,
.footer .f-link ul li a,
.footer .f-contact p,
.footer .f-contact ul li,
.footer .f-contact ul li a {
  color: var(--light-color) !important;
}

.footer .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.09;
  z-index: 1;
}

.footer .container,
.footer .row {
  position: relative;
  z-index: 2;
}


.footer .footer-top {
  padding-top: 80px;
  padding-bottom: 50px;
}

.footer .logo {
  margin-bottom: 25px;
}

.footer .logo img {
  width: 70px;
}

.footer .f-about {
  padding-right: 30px;
}

.footer .f-about p {
  color: #777;
  font-size: 14px;
  display: block;
  line-height: 27px;
}

.footer .f-about .footer-social {
  margin-top: 35px;
}

.footer .f-about .footer-social ul {}

.footer .f-about .footer-social ul li {
  display: inline-block;
  margin-right: 6px;
}

.footer .f-about .footer-social ul li:last-child {
  margin: 0;
}

.footer .f-about .footer-social ul li a {
  font-size: 14px;
  color: var(--dark-color);
  height: 35px;
  width: 35px;
  text-align: center;
  display: block;
  border: 1px solid var(--light-color);
  line-height: 35px;
  background: var(--primary-color);
  border: none;
  border-radius: 8px;
  color: var(--light-color);
}

.footer .f-about .footer-social ul li a:hover {
  background: var(--dark-color);
  ;
  color: var(--light-color);
}

.footer .newsletter-form {
  padding: 41px;
  border: 1px solid var(--light-color);
}

.footer .newsletter-form form {}

.footer .newsletter-form input {
  width: 400px;
  border-bottom: 3px solid var(--light-color);
  color: var(--dark-color);
  height: 60px;
  display: inline-block;
  border: none;
  border: 2px solid var(--light-color);
  border-radius: 0;
  font-weight: 500;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 0px 20px;
}

.footer .newsletter-form .button {
  display: inline-block;
  width: 100%;
}

.footer .newsletter-form .button .btn {
  height: 60px;
  width: 100%;
  display: block;
  margin-top: 14px;
}

.footer .footer-middle {
  padding-bottom: 50px;
  padding-top: 50px;
}

.footer .single-footer {
  margin-top: 30px;
}

.footer .single-footer h3 {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
  margin-bottom: 25px;
}

/* Footer Link */
.footer .f-link ul li {
  margin-bottom: 13px;
  position: relative;
}

.footer .f-link ul li:last-child {
  margin: 0;
}

.footer .f-link ul li:hover:before {
  background: var(--dark-color);
  ;
}

.footer.index2 .f-link ul li:hover:before {
  background: var(--dark-color);
  ;
}

.footer .f-link ul li:last-child {
  margin-bottom: 0px;
}

.footer .f-link ul li a {
  display: inline-block;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}

.footer .f-link ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* Footer Contact */
.footer .f-contact {}

.footer .f-contact p {
  color: #555;
  margin-bottom: 20px;
  line-height: 30px;
}

.footer .f-contact ul {}

.footer .f-contact ul li {
  display: inline-block;
  color: #555;
  font-size: 14px;
  font-weight: 400;
}

.footer .f-contact ul li a {
  display: inline-block;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  font-weight: 400;
}

.footer .f-contact ul li a:hover {
  padding: 0;
}

.footer .f-contact ul li a i {}

.footer .f-contact ul li i {
  display: inline-block;
  margin-right: 7px;
  font-size: 17px;
  color: var(--primary-color);

}

.footer .custom-flex {
  margin-right: -15px;
}

.footer .custom-flex li {
  width: calc(33.33% - 15px);
  margin-bottom: 15px;
  margin-right: 15px;
}

.footer .footer-bottom {
  background-color: var(--primary-color);
  opacity: 1;
}

.footer .footer-bottom .inner {
  padding: 30px 0;
}

.footer .footer-bottom p {
  color: var(--light-color);
}

.footer .footer-bottom .right {
  text-align: right;
}

/*======================================
	End Footer	CSS
========================================*/


/***
=============================================
    Contact Details One
=============================================
***/
.contact {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
}

.contact-details {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}

.contact-details .icon {
  width: 60px;
  height: 60px;
  background-color: #e0f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.contact-details .text {
  text-align: left;
}

.contact-details .text h4 {
  margin: 0 0 5px;
  font-size: 16px;
}

.contact-details .text p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.contact-details .text h4 a {
  color: #000;
  text-decoration: none;
}

.contact-details:hover {
  border-color: var(--primary-color);
}

.contact-details:hover .icon {
  background-color: var(--primary-color);
  color: #fff;
}


/***
=============================================
    Contact Page
=============================================
***/
.contact-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 120px;
}

.contact-page__left {
  position: relative;
  display: block;
}

.contact-page__left .section-title {
  margin: 0;
}

.contact-page__right {
  position: relative;
  display: block;
}


.contact-title {
  position: relative;
  display: block;
  margin-top: -7px;
  margin-bottom: 35px;
}

.contact-tagline {
  position: relative;
  display: inline-block;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-title h2 {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  background: #f1f2f6;
  padding: 0 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  color: var(--thm-gray);
  font-weight: 400;
  text-transform: capitalize;
}

.comment-form__input-box textarea {
  font-size: 16px;
  color: var(--thm-gray);
  height: 200px;
  width: 100%;
  background: #f1f2f6;
  padding: 22px 30px 30px;
  border: none;
  border-radius: 8px;
  outline: none;
  margin-bottom: 20px;
  font-weight: 400;
  text-transform: capitalize;
}

/***
=============================================
    Download
=============================================
***/

.download {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 60px 0px 90px;
  z-index: 1;
}

.download .section-title {
  margin-bottom: 40px;
}

.download .section-title h2 {
  color: var(--primary-color);
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.download .section-title p {
  position: relative;
  display: inline-block;
  color: var(--bg-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.download .nav-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 0;
  overflow-x: auto;
  /* scroll horizontal */
  white-space: nowrap;
  padding-bottom: 10px;
  scrollbar-width: thin;
  /* Firefox */
}

/* Scrollbar untuk Chrome, Edge, Opera */
.download .nav-pills::-webkit-scrollbar {
  height: 6px;
}

.download .nav-pills::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* mirip track body */
  border-radius: 10px;
}

.download .nav-pills::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  /* warna utama */
  border-radius: 10px;
}

.download .nav-pills::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color);
}

/* Scrollbar untuk Firefox */
.download .nav-pills {
  scrollbar-color: var(--primary-color) #f1f1f1;
  scrollbar-width: thin;
}


.download .nav-pills .nav-link {
  white-space: nowrap;
  border-radius: 20px;
  padding: 0.5rem 1.2rem;
  transition: background-color 0.3s ease;
  font-weight: 500;
  color: #333;
  border: 1px solid transparent;
}

.download .nav-pills .nav-link:hover {
  background-color: #d0e2ff;
  color: var(--primary-color);
}

.download .nav-pills .nav-link.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  font-weight: 600;
}

.document-timeline {
  position: relative;
  margin-left: 30px;
  border-left: 3px solid #dee2e6;
  padding-left: 20px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-marker {
  position: absolute;
  left: -30px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #6c757d;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #dee2e6;
}

.timeline-content ul li i {
  min-width: 20px;
}

.download .container .card {
  max-height: 1000px;
  overflow-y: auto;
  border-radius: 1rem;
  /* sudut membulat */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* bayangan halus */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.download .container .card:hover {
  transform: translateY(-5px);
  /* efek angkat saat hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  /* bayangan lebih besar saat hover */
}

.download .container .document-timeline ul li a {
  color: #000;
  /* warna hitam */
  transition: color 0.3s ease;
  text-decoration: none;
  /* hilangkan garis bawah jika ingin clean */
}

.download .container .document-timeline ul li a:hover {
  color: var(--primary-color);
  /* warna biru saat hover */
}

.download .container .card::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.download .container .card::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.download .container .card::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.download .container .card::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.download .tab-pane {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.download .tab-pane.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}


/***
=============================================
    Google Map
=============================================
***/
.contact-page-google-map {
  position: relative;
  padding-top: 60px;
  display: block;
  z-index: 3;
}

.contact-page-google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 580px;
  width: 100%;
}

.free-version-banner .button .btn .dir-part {
  background-color: var(--dark-color);
  ;
}


/* css visi-misi  */
.visi-misi-section {
  background-color: #555;
  /* abu-abu gelap */
  color: white;
}

.visi-misi-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
  position: relative;
}

.circle-icon {
  background-color: #FFD700;
  /* kuning */
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  font-weight: bold;
}

.line {
  width: 2px;
  height: 100%;
  background-color: white;
  margin-top: 5px;
}

.content h5 {
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 10px;
}

.content p {
  color: #eee;
  text-align: justify;
}

/* program studi */
.hero {
  background: linear-gradient(to right, #002244, #004080);
  color: #ffffff;
  padding: 60px 0;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero .subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.video-wrapper iframe {
  border-radius: 12px;
  width: 100%;
  height: 300px;
}

.info-cards {
  margin-top: 30px;
}

.info-box {
  background-color: #ffffff;
  border-left: 5px solid #004080;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}

.info-box h6 {
  font-weight: 600;
  margin-bottom: 5px;
}


/* Download */

.nav-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem;
  scroll-snap-type: x mandatory;
}

.tab-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  white-space: nowrap;
  scroll-snap-align: center;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
}

.tab-slider::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.nav-link {
  scroll-snap-align: center;
  white-space: nowrap;
}


.breadcrumbs:before {
  content: '';
  background-color: #000;
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;

}

.breadcrumbs .breadcrumbs-content {
  position: relative;
}

.breadcrumbs .breadcrumbs-content.right {
  margin-top: 50px;
}

.breadcrumbs .breadcrumbs-content p {
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
}

.breadcrumbs .breadcrumbs-content .page-title {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  position: relative;
  padding-bottom: 22px;
}

.breadcrumbs .breadcrumbs-content .page-title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 2px;
  width: 80px;
  background: var(--secondary-color);
}

.breadcrumbs .breadcrumbs-content .breadcrumb-nav {
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  display: block;
  display: inline-block;
  float: right;
}

.breadcrumbs .breadcrumbs-content .breadcrumb-nav li {
  display: inline-block;
}

.breadcrumbs .breadcrumbs-content .breadcrumb-nav li,
.breadcrumbs .breadcrumbs-content .breadcrumb-nav li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumbs .breadcrumbs-content .breadcrumb-nav li a {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}

.breadcrumbs .breadcrumbs-content .breadcrumb-nav li a:hover {
  color: var(--secondary-color);
}

.breadcrumbs .breadcrumbs-content .breadcrumb-nav li a:after {
  content: '';
  height: 80%;
  width: 2px;
  background-color: #fff;
  position: absolute;
  top: 2px;
  right: 0;
}

.breadcrumbs .breadcrumbs-content .breadcrumb-nav li.active {
  color: var(--secondary-color);
}


/***
=============================================
    Services
=============================================
***/
.services-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.services-two .section-title {
  margin-bottom: 40px;
}

.services-two .section-title h2 {
  color: var(--primary-color);
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.services-two .section-title p {
  position: relative;
  display: inline-block;
  color: var(--bg-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.services-two img {
  width: 100%;
  height: 350px;
  /* Tinggi tetap */
  object-fit: cover;
  /* Cegah distorsi gambar */
  border: 1px solid rgba(1, 73, 120, 0.4);
  /* Bingkai transparan */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.services-two img:hover {
  transform: scale(1.02);
}

.services-two .accordion-border-box .accordion-item {
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}

.services-two .accordion-border-box .accordion-item:not(:first-of-type) {
  margin-top: 8px;
}

.services-two .accordion-border-box .accordion-item .accordion-button {
  border-radius: 5px;
}

.services-two .accordion-border-box .accordion-item .accordion-button:not(.collapsed) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.services-two .custom-accordion-border .accordion-item {
  border-left: 3px solid var(--primary-color);
}

.services-two .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.services-two .accordion-button::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  /* chevron-right */
  font-size: 1rem;
  color: var(--primary-color);
  background-image: none !important;
  transition: transform 0.3s ease;
}

.services-two .accordion-button:not(.collapsed)::after {
  content: "\f107";
  /* chevron-down */
  transform: rotate(0deg);
  color: white;
  /* tetap putih saat terbuka */
}

.services-two .accordion-body {
  text-align: justify;
}


/***
=============================================
    Student
=============================================
***/
.student {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.student .section-title {
  margin-top: 40px;
  margin-bottom: 40px;
}

.student .section-title h2 {
  color: var(--primary-color);
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.student .section-title p {
  position: relative;
  display: inline-block;
  color: var(--bg-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}


.student .card {
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--primary-color);
  border-radius: 12px;
  background-color: var(--light-color);
}

.student .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.student .card span {
  transition: transform 0.6s ease, color 0.6s ease;
  display: inline-block;
  color: var(--primary-color);
}

.student .card:hover i {
  transform: rotateY(180deg);
  color: var(--primary-color);
}

.student .gradient-card {
  background: linear-gradient(rgba(1, 73, 120, 0.85), rgba(1, 73, 120, 0.93)),
    url('../images/poliwangi-gkt.webp') center/cover no-repeat;
  background-blend-mode: overlay;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
}

.student .gradient-card h5 {
  color: var(--light-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.student .gradient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.student .gradient-card .card-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.student .section-heading {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.student .section-heading h4 {
  color: var(--primary-color);
  margin: 0;
  font-weight: bold;
  font-size: 1.25rem;
  white-space: nowrap;
}

.student .section-heading::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #ddd;
  margin-left: 15px;
}

.btn-stacked {
  position: relative;
  display: inline-block;
  padding: 0;
}

.btn-stacked .btn-main {
  background-color: var(--primary-color);
  color: var(--light-color);
  position: relative;
  z-index: 1;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-stacked .btn-shadow {
  background-color: var(--secondary-color);
  /* kuning */
  color: transparent;
  border: none;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-stacked:hover .btn-main {
  transform: translate(-2px, -2px);
  /* naik sedikit */
}

.btn-stacked:hover .btn-shadow {
  top: 8px;
  left: 8px;
}


/***
=============================================
    Alumni
=============================================
***/

.testimonials-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.testimonials-one .section-title {
  margin-top: 40px;
  margin-bottom: 40px;
}

.testimonials-one .section-title h2 {
  color: var(--primary-color);
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.testimonials-one .section-title p {
  position: relative;
  display: inline-block;
  color: var(--bg-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

/***
=============================================
Graduated
=============================================
***/

.graduated {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.graduated .section-title {
  margin-top: 40px;
  margin-bottom: 40px;
}

.graduated .section-title h2 {
  color: var(--primary-color);
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.graduated .section-title p {
  position: relative;
  display: inline-block;
  color: var(--bg-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.graduated .vertical-alur.prosedur {
  border-left: 2px solid var(--secondary-color);
  margin-left: 20px;
  position: relative;
  padding-left: 60px;
  /* tambah ruang agar dot besar muat */
  box-sizing: border-box;
}

.graduated .prosedur .alur-box {
  position: relative;
  margin-bottom: 30px;
  padding-left: 0;
  /* padding sudah di vertical-alur */
}

.graduated .prosedur .alur-box .dot {
  position: absolute;
  top: 0;
  left: -80px;
  /* geser lebih ke kiri supaya dot berada tepat di border */
  width: 40px;
  /* besarkan dot */
  height: 40px;
  /* besarkan dot */
  background-color: var(--primary-color);
  border: 3px solid var(--secondary-color);
  border-radius: 50%;
  z-index: 2;
  display: flex;
  /* supaya icon bisa center */
  align-items: center;
  /* vertikal center */
  justify-content: center;
  /* horizontal center */
  color: #fff;
  /* warna icon supaya kontras */
  font-size: 18px;
  /* ukuran icon lebih besar */
}

.graduated .prosedur .alur-box .alur-content h6 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
  margin-left: 10px;
  /* beri spasi agar sejajar dengan dot */
}

.graduated .prosedur .alur-box .alur-content p {
  font-size: 0.95rem;
  color: #555;
  text-align: justify;
  margin-left: 10px;
}

.graduated .prosedur .alur-content a {
  margin-left: 10px;
  margin-top: 5px;
}

/* Alur */

.graduated .vertical-alur {
  border-left: 2px solid var(--secondary-color);
  margin-left: 20px;
  position: relative;
  padding-left: 40px;
  /* ruang untuk dot */
  box-sizing: border-box;
}

.graduated .alur-box {
  position: relative;
  margin-bottom: 30px;
  padding-left: 0;
  /* padding sudah di vertical-alur */
}

.graduated .alur-box .dot {
  position: absolute;
  top: 0;
  left: -48px;
  /* geser dot agar di tepi border */
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border: 3px solid var(--secondary-color);
  border-radius: 50%;
  z-index: 2;
}

.graduated .alur-box .alur-content h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
  margin-left: 10px;
  /* beri spasi agar sejajar dengan dot */
}

.graduated .alur-box .alur-content p {
  font-size: 0.95rem;
  color: #555;
  text-align: justify;
  margin-left: 10px;
}





/***
=============================================
    Services
=============================================
***/
.graduation-post {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.graduation-post .section-title {
  margin-bottom: 40px;
}

.graduation-post .section-title h2 {
  color: var(--primary-color);
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.graduation-post .section-title p {
  position: relative;
  display: inline-block;
  color: var(--bg-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.graduation-post img {
  width: 100%;
  height: 350px;
  /* Tinggi tetap */
  object-fit: cover;
  /* Cegah distorsi gambar */
  border: 1px solid rgba(1, 73, 120, 0.4);
  /* Bingkai transparan */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.graduation-post img:hover {
  transform: scale(1.02);
}

.graduation-post .accordion-border-box .accordion-item {
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}

.graduation-post .accordion-border-box .accordion-item:not(:first-of-type) {
  margin-top: 8px;
}

.graduation-post .accordion-border-box .accordion-item .accordion-button {
  border-radius: 5px;
}

.graduation-post .accordion-border-box .accordion-item .accordion-button:not(.collapsed) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.graduation-post .custom-accordion-border .accordion-item {
  border-left: 3px solid var(--primary-color);
}

.graduation-post .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.graduation-post .accordion-button::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  /* chevron-right */
  font-size: 1rem;
  color: var(--primary-color);
  background-image: none !important;
  transition: transform 0.3s ease;
}

.graduation-post .accordion-button:not(.collapsed)::after {
  content: "\f107";
  /* chevron-down */
  transform: rotate(0deg);
  color: white;
  /* tetap putih saat terbuka */
}

.graduation-post .accordion-body h6 {
  font-size: 0.9rem !important;
  color: #555;
  text-align: justify;
}

.graduation-post .accordion-body ol {
  padding-left: 20px;
  margin-top: 10px;
}

.graduation-post .accordion-body ol li {
  margin-bottom: 5px;
  color: var(--bg-color);
}

.graduation-post .accordion-body ol li a:hover {
  color: var(--primary-color);
}

.custom-pagination {
  padding-top: 30px;
  display: flex;
  justify-content: center;
}

.custom-pagination .pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-pagination .pagination li {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.custom-pagination .pagination li:not(.active):hover {
  background-color: #e0e0e0;
}

.custom-pagination .pagination .active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
