/* 1. Tarik font dari Google */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* 2. Override variabel Bootstrap sekali saja */
:root{
  --bs-body-font-family: 'Inter', ui-sans-serif, system-ui, -apple-system,
                         "Segoe UI", Roboto, "Helvetica Neue", Arial,
                         "Noto Sans", sans-serif;
  /* (opsional) kalau mau ubah ukuran dasar dsb., di sini juga) */
}

.text-blue-900 {
    color: #1e3a8a;
}

body {
    background-color: #fff;
}

.main-bg {
    background-color: #5e9bbd;
}

.bg-slate {
    background-color: #fafafa;
}

.bg-blue-50 {
    background-color: #3b82f6;
}

.text-blue-50 {
    color: #3b82f6;
}

.bg-blue-10 {
    background-color: #eff6ff;
}

.bg-blue-20 {
    background-color: #5e9bbd;
}

.text-blue-950 {
    color: #3A86FF;
}

.bg-blue-950 {
    background-color: #3A86FF;
}

.text-yellow {
    color: #fde047;
}

.grayscale {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.bg-blue-gradient {
    background: linear-gradient(89.38deg, #06335d 0.49%, #0a4786 98.74%);
}

.bg-blue-30 {
    background-color: rgb(147 197 253);
}

.bg-bulat {
    background-image: url("../assets/tentang/bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-origin: content-box;
}

.bg-sop {
    background-image: url("../assets/sop/bg-blue.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-origin: content-box;
}

.bg-contact {
    background-image: url("../assets/bg-contact.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
}

.bg-lms {
    background-image: url("../assets/lms/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
}

.bg-karir {
    background-image: url("../assets/karir/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-origin: content-box;
}

.bg-waralaba {
    background-image: url("../assets/waralaba/bg1.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    background-origin: content-box;
}

.bg-waralaba2 {
    background-image: url("../assets/waralaba/bg2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-origin: content-box;
}

.bg-blue-awan {
    background-color: #c7dafc;
}

.checklist {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
}

.checklist li {
    position: relative; /* Positioning context for pseudo-element */
    padding-left: 30px; /* Space for the checkmark */
    margin-bottom: 10px; /* Optional: add some space between items */
}

.checklist li::before {
    content: "✔"; /* Unicode for checkmark */
    position: absolute; /* Position it absolutely */
    left: 0; /* Position it to the left of the list item */
    color: blue; /* Change the color to blue */
    font-size: 1.2em; /* Optional: change the size of the checkmark */
    line-height: 1; /* Match the line-height of the list item */
}

.floating-whatsapp {
    z-index: 1000;
    padding: 40px;
    position: fixed;
    bottom: 100px;
    right: 20px;

    width: 120px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-whatsapp img {
    width: 150px;
}

.floating-join {
    z-index: 1000;
    padding: 40px;
    position: fixed;
    bottom: 190px;
    right: 20px;
    width: 120px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
}

.floating-join:hover {
    transform: scale(1.1);
}

.floating-join img {
    width: 150px;
}


/* Tambahan untuk navbar capsule */
#navbar {
    background-color: transparent;
    padding-top: 1rem;
}

.navbar-container-capsule {
    background-color: #ffffff !important;
    border-radius: 9999px; /* Full rounded */
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav .nav-link {
    color: rgb(0, 0, 0) !important;
    margin-right: 1rem;
    font-weight: 500;
}

.btn-masuk {
    background-color: #ffd60a;
    color: #000;
    font-weight: bold;
    border-radius: 9999px;
    padding: 0.4rem 1rem;
}

.btn-daftar {
    border: 1px solid #3a86ff;
    color: #3a86ff;
    background: transparent;
    font-weight: bold;
    border-radius: 9999px;
    padding: 0.4rem 1rem;
}

.btn-daftar:hover {
    background-color: white;
    color: #3a86ff;
}

.left-border {
    border-left: 4px solid #3b82f6; /* Warna biru */
    padding-left: 1rem;
    margin-bottom: 1rem;
    background-color: #f9f9f9;
}
.rounded-pill-blue {
    background-color: #eff6ff;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.rounded-pill-orange {
    background-color: #eff6ff;
    color: #ecb606;
    border: 1px solid #ecb606;
}

.left-border-orange {
    border-left: 4px solid #ecb606; /* Warna biru */
    padding-left: 1rem;
    margin-bottom: 1rem;
    background-color: #f9f9f9;
}

.pill-outline {
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.icon-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    gap: 0.3rem;
}
.section-box {
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    max-width: 500px;
}

.accordion-button:not(.collapsed) {
    color: #0d6efd;
    background-color: #fff;
    font-weight: 500;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button {
    font-weight: 500;
}
.accordion-body {
    color: #4b5563;
    font-size: 0.95rem;
}
.accordion-item {
    border: none;
    border-bottom: 1px solid #e5e7eb;
}


  .swiper-slide {
    transition: transform 0.3s ease;
    opacity: 0.5;
    scale: 0.95;
  }

  .swiper-slide-active {
    opacity: 1;
    scale: 1;
    z-index: 2;
  }

  .swiper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .swiper {
  overflow: visible !important;
}


  .swiper-button-next,
  .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .object-fit-cover {
    object-fit: cover;
    aspect-ratio: 4/3; /* Biar seragam dan tidak gepeng */
}



.menu-item {
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
}

.menu-text {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

.section-box {
  padding: 20px;
  border-radius: 12px;
}





    .menu-item:hover {
      background-color: #3A86FF;
      color: white;
    }

    .menu-item i {
      font-size: 1.5rem;
    }

