body {
  font-family: "Open Sans", sans-serif;
  color: #000000;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Poppins", sans-serif;
}

.tab-pane.active {
  animation: slide-down 1s ease-out;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #acabb9;;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  /*background: #1800a3;*/
  background: #e6a417;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# FOOTER text
--------------------------------------------------------------*/
.footer .copyright {
  color: #000000 !important;
}

.footer .copyright span {
  color: #000000 !important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: transparent;
}

/* Header transparan hanya jika class 'home' ada di body */
body.home #header.header-transparent {
  background: transparent;
}

/* Selain halaman home — header langsung berwarna gelap */
body:not(.home) #header {
  background: rgba(236, 157, 11, 0.9) !important;
}

#header.header-scrolled {
  background: rgba(236, 157, 11, 0.9);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  margin-right: 10px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px 7px 15px;
  margin-left: 5px;
  font-size: 12px;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 50px;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  background: #eca241;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 5px;
  top: calc(100% + 30px);
  margin: 5px 0 0 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgb(255, 255, 255);
  transition: 0.3s;
  border-radius: 15px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #2a2c39;
  margin: 0 5px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #fff;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 21, 28, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: #2a2c39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #fff;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #fff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-image: url("../img/bghome/foto-kolase10.webp"), linear-gradient(0deg, #e9a62a 100%, #c08609 100%);
  background-size: cover;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 70vh;
  padding-top: 60px;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  z-index: 10;
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #eca92c;
}

#hero .btn-get-started:hover {
  background: #eca92c;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}


@media (max-width: 768px) {
  #hero .carousel-container {
    height: 90vh;
  }
  #hero h2 {
    font-size: 12px;
  }
  #hero p{
    font-size: 12px;
  }
  #hero .btn-get-started {
    font-size: 12px !important;
  }
  .btn-selengkapnya {
    display: inline-block !important;
    background-color: #e6a417 !important;
    color: #fff !important;
    font-weight: 400 !important;
    border: none !important;
    padding: 5px 15px !important;
    border-radius: 15px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
  }
}


@media (max-width: 992px) {
  #hero .carousel-container {
    height: 90vh;
  }
  #hero h2 {
    font-size: 14px;
  }
  #hero p{
    font-size: 13px;
  }
  #hero .btn-get-started {
    font-size: 12px !important;
  }
  .btn-selengkapnya {
    display: inline-block !important;
    background-color: #e6a417 !important;
    color: #fff !important;
    font-weight: 400 !important;
    border: none !important;
    padding: 5px 15px !important;
    border-radius: 15px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
  }
}

.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 80px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #1800a3;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #e6a417;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #1800a3;
}

.about .content .btn-learn-more:hover {
  background: #e6a417;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.fasilitas {
  padding-top: 80px;
}

.fasilitas .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.fasilitas .content ul {
  list-style: none;
  padding: 0;
}

.fasilitas .content ul li {
  padding-left: 28px;
  position: relative;
}

.fasilitas .content ul li + li {
  margin-top: 10px;
}

.fasilitas .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #e6a417;
  line-height: 1;
}

.fasilitas .content p:last-child {
  margin-bottom: 0;
}

.fasilitas .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #e6a417;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #1800a3;
}

.fasilitas .content .btn-learn-more:hover {
  background: #e6a417;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 1px solid #d4d6df;
  padding: 15px;
  transition: 0.3s;
  color: #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: #e6a417;
}

.features .nav-link.active {
  background: #e6a417;
  color: #fff;
  border-color: #e6a417;
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }
  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #e6a417;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
  background: #fff;
  border-radius: 16px;
  padding: 25px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services .icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* 🧩 JUDUL */
.services .icon-box .title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0; /* ✅ Jarak antar judul dan paragraf diseragamkan */
  line-height: 1.4;
}

.services .icon-box .title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .icon-box .title a:hover {
  color: #e6a417;
}

.services .icon-box .description {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
  
  /* 🚫 Hilangkan pemenggalan & jaga spasi tetap alami */
  hyphens: none;
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;

  /* 🔧 Tambahan biar browser gak “maksa” spacing */
  text-rendering: optimizeLegibility;
  -webkit-hyphens: none;
  -moz-hyphens: none;

  margin: 0;
}


/* ===== Spasi antar kolom (untuk tampilan rapi di grid) ===== */
.services .col-lg-4,
.services .col-md-6 {
  display: flex;
}

.services .icon-box {
  width: 100%;
}

/* ===== Responsif (HP/tablet) ===== */
@media (max-width: 768px) {
  .services .icon-box {
    padding: 20px 18px;
  }

  .services .icon-box .title {
    font-size: 16px;
  }

  .services .icon-box .description {
    font-size: 14px;
    line-height: 1.7;
  }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  margin-top: 70px;
  background: #f7f8f9;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #404356;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #f6f9ff;
  padding: 0 0 30px 0;
  font-size: 14px;
}

.footer .footer-top {
  background: white no-repeat right top;
  background-size: contain;
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
  .other .ot {
    visibility: hidden;
    padding-bottom: 0px;
  }
}

.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

/* 🌟 Besarkan logo footer */
.footer .footer-top .footer-info .logo img {
  max-height: 70px; /* dari 40px jadi 70px */
  width: auto;
  height: auto;
  transition: all 0.3s ease;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e6a417;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  color: #5a4600 !important;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}

.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  color: #e6a417;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #e6a417;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-top .footer-links {
  margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #d0d4fc;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-top .footer-links ul a {
  color: #e6a417;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
  color: #e6a417;
}

.footer .footer-top .footer-contact p {
  color: #5a4600 !important;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #e6a417;
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #e6a417;
}

.ic {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ic a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.ic a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.ic a:hover {
  background: #ffffff;
}

.ic a:hover i {
  color: #fff;
}

.ic a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: auto;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 50%;
  border-radius: 50%;
  background-size: contain; /* try other properties here like cover, contain, etc */
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.team .member .picc {
  overflow: hidden;
  width: 50%;
  border-radius: 50%;
  background-size: contain; /* try other properties here like cover, contain, etc */
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #e6a417;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #e6a417;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #ffffff;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}

.timeline .h4,
h4 {
  font-size: 16px;
}
.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding-top: 50px;
  background: #1800a3;
}
.timeline ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  z-index: 2;
  background: #eee;
}
.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 500px;
  padding: 20px;
  height: 170px;
  background: #fff;
  box-shadow: 4px 13px 30px 1px rgba(182, 182, 182, 0.2);
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.timeline ul li div time {
  position: absolute;
  background: #f5af19;
  width: 80px;
  height: 30px;
  top: -15px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
}
.timeline ul li div div {
  height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.timeline ul li div div p {
  text-align: center;
}
/* .timeline ul li div .discovery {
  margin-right: 10px;
} */
.timeline ul li:nth-of-type(odd) > div {
  left: 45px;
}
.timeline ul li:nth-of-type(even) > div {
  left: -520px;
}

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.timeline ul li:nth-of-type(odd) div {
  transform: translate3d(100px, -10px, 0) rotate(10deg);
}
.timeline ul li:nth-of-type(even) div {
  transform: translate3d(-100px, -10px, 0) rotate(10deg);
}
.timeline ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 250px;
    flex-direction: column;
  }
  .timeline ul li div div {
    width: 102%;
    margin: 10px;
  }
  .timeline ul li:nth-of-type(even) > div {
    left: -289px;
  }
  .other {
    visibility: hidden;
  }
}
@media screen and (max-width: 992px) {
  /* body {
    background: #8bfff4;
  } */

  .timeline ul li {
    margin-left: 20px;
  }
  .timeline ul li div {
    width: calc(100vw - 91px);
  }
  .timeline ul li:nth-of-type(even) > div {
    left: 45px;
  }
  .other {
    visibility: hidden;
  }
}
.timeline {
  font: normal 16px Titillium Web, sans-serif;
  /* background: linear-gradient(54deg, #9164ff, #8bfff4); */
  color: #3c3f64;
  overflow-x: hidden;
  padding-bottom: 50px;
}
.modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}
body.home-page .modal-body {
  position: relative;
  padding: 0px;
  font-size: 14px !important;
}
.close {
  position: absolute;
  right: -30px;
  top: 0;
  z-index: 999;
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
  opacity: 1;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 50px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.owl-1 .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
}
.owl-1 .owl-nav .owl-next,
.owl-1 .owl-nav .owl-prev {
  border: 1px solid red;
  z-index: 92;
  position: absolute;
  top: 50%;
}
.owl-1 .owl-nav .owl-next:active,
.owl-1 .owl-nav .owl-next:focus,
.owl-1 .owl-nav .owl-prev:active,
.owl-1 .owl-nav .owl-prev:focus {
  outline: none;
}
.owl-1 .owl-nav .owl-next span,
.owl-1 .owl-nav .owl-prev span {
  color: #fff;
}
.owl-1 .owl-nav .owl-next span:before,
.owl-1 .owl-nav .owl-prev span:before {
  font-size: 40px !important;
}
.owl-1 .owl-nav .owl-next {
  border: 4px solid #e6a417;
  right: 20px;
}
.owl-1 .owl-nav .owl-prev {
  left: 20px;
}

.owl-1 .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.owl-1 .owl-dots .owl-dot {
  background: none;
  display: inline-block;
}
.owl-1 .owl-dots .owl-dot > span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 4px;
}
.owl-1 .owl-dots .owl-dot.active > span {
  background: white;
}
.owl-1 .owl-dots .owl-dot:active,
.owl-1 .owl-dots .owl-dot:focus {
  outline: none;
}

.media-29101 .img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.media-29101 .text {
  padding: 50px;
}

@media (max-width: 991.98px) {
  .media-29101 .text {
    padding: 20px;
    width: 100%;
  }
}
.media-29101 .text .category {
  color: #adb5bd;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.media-29101 .text h2 {
  font-family: "Playfair Display", times, serif;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 30px;
}
.media-29101 .text h2 a {
  color: #000;
}

.carousel-nav a {
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 18px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.carousel-nav a.active {
  background-color: #e6a417;
  color: #fff;
  border-color: #e6a417;
}

.carousel-nav a:hover {
  background-color: #fff;
  color: #e6a417;
  border-color: #e6a417;
}
.carousel-nav a.active {
  color: #ffffff;
}
.table-responsive .jurusan {
  overflow-x: hidden;
}
#program-studi {
  margin-top: 60px; /* kasih jarak antar section */
}

.crt-grid-post .crt-grid-post-image {
    position: absolute;
    margin: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

main {
  position: relative;
  z-index: 2;
}
#hero {
  z-index: 1;
}

#heroCarousel .carousel-item {
  transition: opacity 1.5s ease-in-out !important;
}

.jurusan {
  margin-top: 20px !important;
  margin-bottom: 40px !important;
}

.modal {
  z-index: 2000 !important;
}
.modal-backdrop {
  z-index: 1999 !important;
  background-color: rgba(0, 0, 0, 0.6) !important;
}
#hero, #bar {
  position: relative !important;
  z-index: 1 !important;
}

/* === FIX FINAL: Hero Wave Tidak Hilang === */

/* Hero utama: visible dan mengatur layer */
#hero {
  position: relative !important;
  overflow: visible !important;
  z-index: 1 !important;
  background: none !important; /* hilangkan background langsung */
}

/* Tambahkan background ke layer pseudo agar wave tidak tertimpa */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/bghome/foto-kolase10.webp") center center / cover no-repeat;
  z-index: 1; /* layer background tetap di bawah wave */
}

/* Carousel container (teks) di atas semuanya */
#hero .carousel-container,
#hero .carousel-inner,
#hero .carousel-item {
  position: relative !important;
  z-index: 3 !important;
  background: transparent !important;
}

/* SVG wave tetap di bawah teks, tapi di atas background */
.hero-waves {
  position: relative !important;
  z-index: 2 !important;
  display: block;
  width: 100%;
  height: 60px;
  bottom: 0;
  pointer-events: none;
  overflow: visible;
}

/* Pastikan wave terlihat meski carousel aktif */
.carousel-inner {
  overflow: visible !important;
}

/* Animasi wave bergerak */
.wave1 use {
  animation: move-forever1 10s linear infinite;
}
.wave2 use {
  animation: move-forever2 8s linear infinite;
}
.wave3 use {
  animation: move-forever3 6s linear infinite;
}

@keyframes move-forever1 {
  0% { transform: translateX(85px); }
  100% { transform: translateX(-90px); }
}
@keyframes move-forever2 {
  0% { transform: translateX(-90px); }
  100% { transform: translateX(85px); }
}
@keyframes move-forever3 {
  0% { transform: translateX(-90px); }
  100% { transform: translateX(85px); }
}

/* === SCROLL PROGRESS BAR ATAS (versi transparan dinamis) === */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #ffffff);
  z-index: 99999;
  transition: width 0.25s ease-out, opacity 0.3s ease;
  opacity: 0; 
  pointer-events: none;
}

/* ====================================== */
/* HEADER TRANSPARAN HANYA DI INDEX.PHP  */
/* ====================================== */

/* ✅ Default (halaman lain = solid) */
#header {
  background: #e6a417; /* Warna oranye jurusan */
  transition: all 0.4s ease;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

/* ✅ Khusus di home page (index.php), header transparan */
body.home-page #header {
  background: transparent !important;
  box-shadow: none !important;
}

/* Saat di-scroll (opsional), header berubah jadi solid */
body.home-page.scrolled #header {
  background: #e6a417 !important;
  transition: background 0.4s ease;
}

