/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  width: 100%;
  height: 100%;
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

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

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

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

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.bubble-button {
  margin: auto;
  padding: auto;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 999;
  display: flex; /* Ensure it is always displayed */
  flex-direction: column; /* Stack the options vertically */
  opacity: 0; /* Start hidden */
  transition: opacity 0.4s ease; /* Smooth transition for opacity */
}

.toggle-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #af404f;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s;
  z-index: 999;
}

.toggle-button i {
  margin: auto;
  padding: auto;
  transition: transform 0.4s;
}

.bubble-options {
  margin: auto;
  padding: auto;
  display: none; /* Hidden initially */
  opacity: 0;
  transition: opacity 0.4s ease;
  position: absolute;
  right: 0;
  bottom: 40px;
}

.bubble-options a {
  margin: auto;
  padding: auto;
  display: block;
  margin-bottom: 10px;
}

.toggle-button:hover {
  background-color: rgba(19, 20, 27, 0.9);
  color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.486) !important;
}

#hamburger {
  margin: auto;
  padding: auto;
  font-size: 18px; /* Mengubah ukuran ikon, sesuaikan dengan ukuran yang diinginkan */
}

.bubble-whatsapp i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #00df13;
  color: #fff;
  transition: all 0.4s;
}

.bubble-whatsapp i:hover {
  background-color: #00a00d;
  color: #fff;
}

.bubble-user i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #af404f;
  color: #fff;
  transition: all 0.4s;
}

.bubble-user i:hover {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #af404f;
  color: #fff;
  transition: all 0.2s;
}

.back-to-top i:hover {
  background-color: rgba(19, 20, 27, 0.9);
  color: #fff;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #af404f;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

.show-bubble-button { /* Show bubble-button when scrolled to main section */
  display: flex;
}

/* Bubble Notification */
.bubble-whatsapp {
  position: relative; /* Set the context for positioning the notification */
}

.bubble-notification {
  background-color: #f1c40f; /* Color of the bubble */
  color: #333; /* Text color */
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold; /* Make the text bold */
  display: none; /* Hidden by default */
  position: absolute; /* Position it absolutely */
  right: 115%; /* Position it to the left of the WhatsApp button */
  top: 50%;
  transform: translateY(-50%); /* Center it vertically */
  margin-right: 10px; /* Space between notification and WhatsApp button */
  white-space: nowrap; /* Prevent text from wrapping to a new line */
  text-align: center; /* Center-align the text horizontally */
}

.bubble-whatsapp:hover .bubble-notification {
  display: block; /* Show notification when hovering over the WhatsApp button */
}

.bubble-notification::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 6.8rem; /* Adjust based on the position of the notification bubble */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #f1c40f; /* Arrow pointing to the right */
}

@media (max-width: 1090px) {
  .bubble-notification {
    display: block;
  }
}

/*--------------------------------------------------------------
# Bar Progress
--------------------------------------------------------------*/
#bar {
  width: 0;
  height: 4px;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  transition: width 0.3s ease-in-out;
  z-index: 99999;
  border-radius: 50px;
} 

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  background-color: rgba(19, 20, 27, 0.9);
}

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

.featured {
  margin-top: 30px;
  margin-bottom: 190px;
}

@media (max-width: 560px) {
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 30px;
  }
}

@media (max-width: 425px) {
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 30px;
  }
}

@media (max-width: 375px) {
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 30px;
  }
}

@media (max-width: 320px) {
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 30px;
  }
}

/*--------------------------------------------------------------
# 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;
}

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

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

.navbar .active {
  color: #fff;
  background-color: #af404f;
}

.navbar a:hover,
.navbar li:hover > a {
  color: #fff;
  background-color: #af404f;
}

/* Dropdown Styles */
.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-color: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 15px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #14151c;
  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 {
  background-color: rgba(175, 65, 79, 0.9);
  color: white;
}

.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%;
  }
}

/* Get Started Button */
.get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 50px;
  padding: 7px 20px 8px 20px; /* bottom-right-top-left*/
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;  
  background-color: transparent;
  border: 2px solid #af404f;
}

.get-started-btn:hover {
  background-color: rgba(175, 65, 79, 0.9);
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
  }
}

@media (max-width: 580px) {
  .get-started-btn {
    margin-top: 8px;
  }
}

@media (max-width: 425px) {
  .get-started-btn {
    margin-top: -5px;
  }
}

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

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

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: 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 .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background-color: #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;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-family: "Jost", sans-serif; 
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #af404f;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background-color: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background-color: #af404f;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    margin-bottom: 0;
    font-size: 16px;
  }
}

@media (max-width: 990px) {
  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Table
--------------------------------------------------------------*/

table {
  border-color: #dee2e6;
}

.table {
  border-color: #dee2e6;
}

.table-bordered {
  border-color: #dee2e6;
}

tr, td, th { /* Menambahkan border di sisi kiri dan kanan */
  border-left: 1px solid #dee2e6; /* Border sisi kiri */
  border-right: 1px solid #dee2e6; /* Border sisi kanan */
  border-top-color: #dee2e6; /* Warna border atas */
  border-bottom-color: #dee2e6; /* Warna border bawah */
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.table>:not(:last-child)>:last-child>* {
  border-bottom-color: #dee2e6;
}

/*--------------------------------------------------------------
# Prestasi
--------------------------------------------------------------*/
.faq {
  margin-bottom: -32px;
}

.faq .faq-list {
  padding: 0 100px;
}

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

.li {
  margin-top: -22px;
}

.faq .faq-list li { /* List Per Tahun */
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 4px;
}

.faq .faq-list i { /* Simbol icon */
  font-size: 18px;
  margin-top: -1px;
}

.faq .faq-list a { /* Tulisan Tahun */
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list li + li { /* List Anggota Tim */
  margin-top: 15px;
  line-height: 1.5;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #af404f;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #af404f;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #af404f;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  tr, td, th {
    font-size: 14px;
  }

  .faq .faq-list {
    padding: 0 20px;
  }

  .faq .faq-list li .icon-help { /* Icon Tahun */
    font-size: 22px;
  }

  .faq .faq-list a {
    font-size: 16px;
    font-weight: 600;
  }
}

@media (max-width: 990px) {
  tr, td, th {
    font-size: 12px;
  }

  .faq .faq-list {
    padding: 0 10px;
  }

  .faq .faq-list li .icon-help { /* Icon Tahun */
    font-size: 22px;
    margin-top: 0;
  }

  .faq .faq-list a {
    font-size: 14px;
    padding: 0 25px;
  }

  .faq .faq-list li a i {  /* Icon Chevron */
    margin-top: 3px;
  }

  .faq .faq-list .icon-show,
  .faq .faq-list .icon-close {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  tr, td, th {
    font-size: 13px;
  }
  
  .faq .faq-list {
    padding: 0 10px;
  }

  .faq .faq-list li .icon-help { /* Icon Tahun */
    font-size: 20px;
    margin-top: 1px;
  }

  .faq .faq-list a {
    font-size: 13px;
    padding: 0 25px;
  }

  .faq .faq-list li a i {  /* Icon Chevron */
    margin-top: 4px;
  }

  .faq .faq-list .icon-help {
    left: 15px;
  }

  .faq .faq-list li {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  tr, td, th {
    font-size: 12px;
  }

  .faq .faq-list li .icon-help { /* Icon Tahun */
    font-size: 18px;
    margin-top: 2px;
  }

  .faq .faq-list a {
    font-size: 12px;
    padding: 0 20px;
  }

  .faq .faq-list li a i {  /* Icon Chevron */
    margin-top: 6px;
  }

  .faq .faq-list .icon-help {
    left: 10px;
  }

  .faq .faq-list .icon-show,
  .faq .faq-list .icon-close {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Modal Details
--------------------------------------------------------------*/
.modal {
  z-index: 9999999;
}

.modal-header h5 {
  font-size: 22px;
}

.modal-header .close {
  outline: none;
  font-size: 22px;
}

.modal-header button {
  width: 40px;
  height: 40px;
  border: 2px solid #af404f;
  border-radius: 5px;
  font-size: 20px;
  background-color: #af404f;
  color: white;
}

@media (max-width: 1024px) {
  .modal-header h5 {
    font-size: 18px;
  }

  .modal-header .close {
    font-size: 18px;
  }

  .modal-footer .btn {
    font-size: 18px;
  }
}

@media (max-width: 990px) {
  .modal-header h5 {
    font-size: 16px;
  }

  .modal-header .close {
    font-size: 16px;
  }

  .modal-header button {
    width: 30px;
    height: 30px;
    border: 1px solid #af404f;
    margin-top: 2px;
  }

  .modal-footer .btn {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .modal-header h5 {
    font-size: 14px;
  }

  .modal-header .close {
    font-size: 14px;
  }

  .modal-footer .btn {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .modal-header h5 {
    font-size: 13px;
  }

  .modal-header .close {
    font-size: 13px;
  }

  .modal-footer .btn {
    font-size: 13px;
  }
}

.modal-open .modal,
.btnms:focus {
  outline: none !important;
}

.btnms {
  width: 40px;
  height: 40px;
  border: 2px solid #af404f;
  border-radius: 10px;
  background-color: transparent;
  color: #af404f;
  text-align: center;
  vertical-align: middle;
  animation-name: reverse;
  animation-duration: 1s;
  cursor: pointer;
}

.btnms:hover {
  width: 40px;
  height: 40px;
  border: 2px solid #af404f;
  border-radius: 10px;
  background-color: #af404f;
  color: white;
  text-align: center;
  vertical-align: middle;
  animation-name: myanimation;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .btnms {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 990px) {
  .btnms {
    width: 35px;
    height: 35px;
  }
}

@keyframes myanimation {
  from {
    transform: rotate(0deg) scale(1);
    border-radius: 10px;
  }
  to {
    border-radius: 100px;
    transform: rotate(360deg) scale(0.7);
  }
}

@keyframes reverse {
  from {
    border-radius: 100px;
    transform: rotate(360deg) scale(0.7);
  }
  to {
    border-radius: 10px;
    transform: rotate(0deg) scale(1);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  position: relative;
  bottom: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  padding-top: 33px; /* Agar tabel prestasi tidak tumpang tindih */
}

#footer .footer-top {  
  padding: 50px 0 0px 0;
  background-color: #000000;
}

#footer .footer-top a img {
  width: 75%; 
  padding: 0 0 20px 0;
}

#footer .footer-top p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;  
  color: white;
}

#footer .footer-top h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #af404f;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #af404f;
  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: #af404f;
  font-size: 18px;
  line-height: 1;
}

#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: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1.5;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #af404f;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background-color: #af404f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background-color: white;
  color: #af404f;
  text-decoration: none;
}

#footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 15px;
  background-color: #af404f;
  color: #fff;
}

#footer .copyright {
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  color: white;
  float: center;
}

@media (max-width: 1080px) {
  #footer .footer-top {
    display: none;
  }
  #footer .footer-top .footer-links {
    display: none;
  }
  #footer .copyright {
    text-align: center;
    float: center;
  }
}

/* Scrollbar Width */
::-webkit-scrollbar {
  width: 10px;
}

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

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

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