        :root {
            --teal-primary: rgb(21, 165, 155);
            --teal-light: #47D4CC;
            --teal-dark: #0D7A70;
            --bs-primary: #15A59B;
            --bg-optional: #cddc29;
            --bs-primary-rgb: 21, 165, 155;
            --gray-900: #111827;
            --gray-800: #1F2937;
            --gray-750: #252d3a;
            --gray-700: #374151;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-700: #334155;
            --slate-800: #1e293b;
            --slate-900: #0f172a;

        }
 
        html, body {
            max-width: 100%;
            overflow-x: hidden; /* Memotong apapun yang keluar jalur ke samping */
        }
        body {
            font-family: 'Poppins', sans-serif !important;;
            font-size: 14px !important;
        }
        .footer-bg{
          background-color:var(--gray-900);
        }
        .bg-teal-primary {
            background-color: var(--teal-primary) !important;
        }
        
        .bg-teal-light {
            background-color: var(--teal-light) !important;
        }
        
        .bg-teal-dark {
            background-color: var(--teal-dark) !important;
        }
        
        .text-teal-primary {
            color: var(--teal-primary) !important;
        }
        
        .text-teal-light {
            color: var(--teal-light) !important;
        }
        
        .border-teal-primary {
            border-color: var(--teal-primary) !important;
        }
        
        .bg-slate-50 { background-color: var(--slate-50) !important; }
        .bg-slate-100 { background-color: var(--slate-100) !important; }
        .bg-slate-200 { background-color: var(--slate-200) !important; }
        .text-slate-600 { color: var(--slate-600) !important; }
        .text-slate-700 { color: var(--slate-700) !important; }
        .text-slate-800 { color: var(--slate-800) !important; }
        .text-slate-900 { color: var(--slate-900) !important; }
        .border-slate-200 { border-color: var(--slate-200) !important; }
        .border-slate-300 { border-color: var(--slate-300) !important; }


        .btn-teal-primary {
            background-color: var(--teal-primary);
            border-color: var(--teal-primary);
            color: white;
        }
        
        .btn-teal-primary:hover {
            background-color: var(--teal-dark);
            border-color: var(--teal-dark);
            color: white;
        }
        
        .btn-outline-teal {
            color: var(--teal-primary);
            border-color: var(--teal-primary);
        }
        
        .btn-outline-teal:hover {
            background-color: var(--teal-primary);
            border-color: var(--teal-primary);
            color: white;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #15A59B 0%, #0D7A70 100%);
        }
        
        .hover-scale {
            transition: transform 0.3s ease;
        }
        
        .hover-scale:hover {
            transform: translateY(-8px);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        }
        
        .navbar-nav .dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
            overflow: hidden;
        }
        
        .hero-pattern::before {
            content: '';
            position: absolute;
            top: 80px;
            left: 80px;
            width: 128px;
            height: 128px;
            border: 4px solid white;
            border-radius: 50%;
        }
        
        .hero-pattern::after {
            content: '';
            position: absolute;
            bottom: 128px;
            right: 128px;
            width: 96px;
            height: 96px;
            border: 2px solid white;
            border-radius: 50%;
        }
        
        .tab-content-custom {
            display: none;
        }
        
        .tab-content-custom.active {
            display: block;
        }
        
        .nav-pills .nav-link.active {
            background-color: var(--teal-primary);
        }
        
        .card-hover {
            transition: all 0.3s ease;
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.08); 
            
        }
        
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.25);
        }
        
        .icon-circle {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .feature-dot {
            width: 6px;
            height: 6px;
            background-color: var(--teal-primary);
            border-radius: 50%;
            display: inline-block;
            margin-right: 12px;
        }
        
        .badge-custom {
            font-size: 0.75rem;
            padding: 0.375rem 0.75rem;
        }
                /* Public Services Section */
                .ikm-layanan-section {
                  background-color: var(--gray-900);
                  color: white;
                  border-top: 1px solid var(--gray-700);
                  padding: 3rem 0;
              }
              
              .ikm-layanan-section h3 {
                  font-size: 2rem;
                  margin-bottom: 2rem;
                  text-align: center;
                  color: var(--teal-primary);
                  font-weight: 600;
              }
              
              .ikm-service-card {
                  background-color: var(--gray-800);
                  border-radius: 0.5rem;
                  padding: 1.5rem;
                  transition: background-color 0.3s ease;
                  height: 100%;
              }
              
              .ikm-service-card:hover {
                  background-color: var(--gray-750);
              }
              
              .ikm-service-header {
                  display: flex;
                  align-items: center;
                  margin-bottom: 1rem;
              }
              
              .ikm-service-icon {
                  background-color: var(--teal-primary);
                  padding: 0.75rem;
                  border-radius: 0.5rem;
                  margin-right: 1rem;
                  width: 48px;
                  height: 48px;
                  display: flex;
                  align-items: center;
                  justify-content: center;
              }
              
              .ikm-service-icon i {
                  color: white;
                  font-size: 1.5rem;
              }
              
              .ikm-service-title {
                  font-size: 1.125rem;
                  color: white;
                  font-weight: 600;
                  margin: 0;
              }
              
              .ikm-service-description {
                  color: var(--gray-300);
                  margin-bottom: 1rem;
                  line-height: 1.625;
              }
              
              .btn-ikm-primary {
                  background-color: var(--teal-primary);
                  border-color: var(--teal-primary);
                  color: white;
                  width: 100%;
                  font-weight: 500;
                  transition: all 0.3s ease;
              }
              
              .btn-ikm-primary:hover {
                  background-color: var(--teal-dark);
                  border-color: var(--teal-dark);
                  color: white;
              }
              
              .btn-ikm-outline {
                  border-color: var(--teal-primary);
                  color: var(--teal-primary);
                  background-color: transparent;
                  width: 100%;
                  font-weight: 500;
                  transition: all 0.3s ease;
              }
              
              .btn-ikm-outline:hover {
                  background-color: var(--teal-primary);
                  border-color: var(--teal-primary);
                  color: white;
              }
              
              /* IKM Statistics specific styles */
              .ikm-current {
                  display: flex;
                  align-items: center;
                  justify-content: space-between;
                  margin-bottom: 0.5rem;
              }
              
              .ikm-score {
                  font-size: 2rem;
                  color: var(--teal-primary);
                  font-weight: 700;
              }
              
              .ikm-stars {
                  display: flex;
                  align-items: center;
                  margin-bottom: 0.75rem;
              }
              
              .star-filled {
                  color: #FCD34D;
                  margin-right: 2px;
              }
              
              .star-empty {
                  color: #FCD34D;
                  opacity: 0.4;
                  margin-right: 2px;
              }
              
              .ikm-stars-text {
                  font-size: 0.875rem;
                  color: var(--gray-400);
                  margin-left: 0.5rem;
              }
              
              .ikm-trend {
                  display: flex;
                  align-items: center;
                  justify-content: space-between;
                  margin-bottom: 0.5rem;
              }
              
              .ikm-trend-text {
                  font-size: 0.875rem;
                  color: var(--gray-400);
              }
              
              .ikm-trend-increase {
                  font-size: 0.75rem;
                  color: #10B981;
              }
              
              .ikm-progress-bar {
                  background-color: var(--gray-700);
                  border-radius: 9999px;
                  height: 0.5rem;
                  margin-bottom: 1rem;
                  overflow: hidden;
              }
              
              .ikm-progress-fill {
                  background-color: var(--teal-primary);
                  height: 100%;
                  border-radius: 9999px;
                  width: 89.4%;
                  transition: width 0.3s ease;
              }
              
              .chart-container {
                  height: 66px;
                  margin-bottom: 1rem;
              }
              
              /* Demo header */
              .ikm-demo-header {
                  background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
                  color: white;
                  padding: 3rem 0;
                  text-align: center;
              }
              
              .ikm-demo-title {
                  font-size: 2.5rem;
                  font-weight: 700;
                  margin-bottom: 1rem;
              }
              
              .ikm-demo-subtitle {
                  font-size: 1.125rem;
                  opacity: 0.9;
              }
        @media (max-width: 768px) {
            .hero-pattern::before,
            .hero-pattern::after {
                display: none;
            }
        }

@media (max-width: 768px) {
    /* Menyembunyikan h5 dan h6 di mobile */
    .navbar-brand h5,
    .navbar-brand h6 {
        display: none;
    }

    /* Menyesuaikan ukuran lebar logo di navbar untuk mobile */
    .navbar-brand .bg-teal-primary {
        width: 80px; /* Mengurangi ukuran logo */
        height: auto;
    }

    /* Menyuaikan ukuran gambar logo di mobile */
    .navbar-brand .bg-teal-primary img {
        width: 100%;
        height: auto;
    }

    /* Menyesuaikan ukuran font untuk small di mobile */
    .navbar-brand small {
        font-size: 0.75rem;
    }

    /* Memperbaiki layout navbar dan spasi */
    .navbar-nav {
        margin-top: 1rem;
    }

    /* Mengatur ukuran tombol navbar di mobile */
    /* .navbar-toggler {
        font-size: 1.2rem;
        display: block;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }
        */

    .navbar-toggler-icon {
        display: none !important;
    } 
        /* Hamburger jadi X */
.navbar-toggler {
    border: none;
    padding: 8px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* .navbar-toggler .navbar-toggler-icon {
    background-image: none;
    width: 28px;
    height: 20px;
    position: relative;
    display: block;
} */

/* .navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after,
.navbar-toggler .navbar-toggler-icon span {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s ease;
    left: 0;
} */

/* .navbar-toggler .navbar-toggler-icon::before { top: 0; }
.navbar-toggler .navbar-toggler-icon span { top: 8px; }
.navbar-toggler .navbar-toggler-icon::after { bottom: 0; }

/* Saat dibuka → jadi X */
/* .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
} */ */

    /* Menyesuaikan tampilan navbar mobile */
    .navbar-collapse {
        flex-grow: 1;
        justify-content: flex-end;
    }

    /* Mengubah tampilan menu items di navbar untuk mobile */
    .navbar-nav .nav-link {
        font-size: 1rem;
    }
}
        /* Mobile Navbar Toggler */
        .navbar-toggler {
          border: none;
          padding: 0.375rem;
          color: #6b7280;
          background: none;
      }

      .navbar-toggler:focus {
          box-shadow: none;
          border: none;
      }

.nav-item {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
button.nav-link {
  color: var(--teal-primary); /* Changes text color to red */
}
button.nav-link:hover {
  color: var(--teal-dark); /* Changes text color to red */
}
.header.scrolled .nav-item {
  color: var(--gray-700);
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .nav-item:hover {
  background: var(--gray-50);
  color: var(--teal-primary);
}

.nav-item.active {
  background: rgba(255, 255, 255, 0.2);
}

.header.scrolled .nav-item.active {
  background: var(--teal-light);
  color: var(--teal-primary);
}
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-btn {
  color: var(--gray-700);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
      display: none;
  }
}

.language-switcher a {
    text-decoration: none;
}

.dropdown-toggle {
    color: var(--teal-primary);
}

        /* Hero Section */
        .hero-gradient {
            background: linear-gradient(135deg, var(--slate-50) 0%, white 100%);
        }

        /* Dot pattern background */
        .dot-pattern {
            background-image: radial-gradient(circle, var(--slate-200) 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.4;
        }

        /* Timeline */
        .timeline-container {
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 1.5rem;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, var(--teal-primary), var(--slate-300), var(--teal-primary));
            z-index: 1;
        }

        @media (min-width: 768px) {
            .timeline-line {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        /* Timeline dots - FIXED to be perfectly round */
        .timeline-dot {
            position: absolute;
            left: 1.5rem;
            width: 16px;
            height: 16px;
            background-color: var(--teal-primary);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 10;
            border: 4px solid white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .timeline-dot {
                left: 50%;
            }
        }

        /* Professional card styling */
        .card-professional {
            border: 1px solid var(--slate-200);
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }

        .card-professional:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            transform: translateY(-2px);
        }

        /* Icon containers */
        .icon-container {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem;
            background-color: rgba(21, 165, 155, 0.1);
            border-radius: 50%;
            margin-bottom: 1.5rem;
        }

        /* Professional hover effects */
        .image-hover {
            transition: transform 0.5s ease;
        }

        .image-hover:hover {
            transform: scale(1.05);
        }

        .overlay-hover {
            transition: all 0.3s ease;
        }

        .card:hover .overlay-hover {
            background-color: rgba(0,0,0,0.2) !important;
        }

        .card:hover .zoom-icon {
            opacity: 1 !important;
        }

        /* Line clamp utility */
        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Professional spacing */
        .section-spacing {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        /* Elegant gradients */
        .gradient-teal-subtle {
            background: linear-gradient(135deg, rgba(21, 165, 155, 0.05) 0%, rgba(21, 165, 155, 0.1) 100%);
        }

        .gradient-slate-subtle {
            background: linear-gradient(135deg, var(--slate-50) 0%, white 100%);
        }

        /* Button refinements */
        .btn-teal-primary {
            background-color: var(--teal-primary);
            border-color: var(--teal-primary);
            color: white;
        }

        .btn-teal-primary:hover {
            background-color: var(--teal-dark);
            border-color: var(--teal-dark);
            color: white;
        }

        .btn-outline-slate {
            border-color: var(--slate-300);
            color: var(--slate-600);
        }

        .btn-outline-slate:hover {
            background-color: var(--slate-50);
            border-color: var(--slate-400);
            color: var(--slate-900);
        }

        .card-title a {
        /* Menghilangkan gaya default link agar sama seperti judul */
        text-decoration: none;  /* Menghapus garis bawah */
        color: inherit;         /* Mengambil warna teks dari induknya (h3.card-title) */
        }

        .card-title a:hover {
            color: var(--teal-primary); /* Mengubah warna saat hover */
        }

       h5 a.list-title {
            /* Menghilangkan gaya default link agar sama seperti judul */   
            text-decoration: none !important;
            text-decoration-line: none !important;  /* Menghapus garis bawah */
            color: inherit;         /* Mengambil warna teks dari induknya (h5) */
        }

        h5 a.list-title:hover {
            color: var(--gray-750) !important; /* Mengubah warna saat hover */
        }

    #hero-animation-canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1; /* Lapisan 1: Paling bawah setelah background */
    }

    .hero-pattern {
        /* Pastikan z-index hero-pattern lebih tinggi dari canvas */
        /* agar lingkaran statis tetap terlihat di atas partikel */
        z-index: 2; /* Lapisan 2: Di atas animasi partikel */
    }

    /* Container konten utama harus memiliki z-index tertinggi 
    agar selalu berada di paling depan.
    Kita tambahkan `z-index: 3;` langsung di HTML pada tag <div class="container...">
    untuk memastikan ini.
    */
    
    
    /* Pagination custom color */
    .page-item.active .page-link {
        background-color: var(--teal-primary) !important;
        border-color: var(--teal-primary) !important;
        color: white !important;
    }
    .page-link {
        color: var(--teal-primary) !important;
    }
    .page-link:hover {
        background-color: var(--teal-light) !important;
        border-color: var(--teal-light) !important;
        color: white !important;
    }
            




    .download-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 3rem 0;
        border-radius: 15px;
        margin-top: 3rem;
    }
    
    .curriculum-content {
        padding: 1.5rem;
    }
    
    .course-item {
        display: flex;
        align-items: center;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 10px;
        margin-bottom: 1rem;
        border-left: 4px solid var(--teal-primary);
        transition: all 0.3s ease;
    }
    
    .course-item:hover {
        background: #e8f5f4;
        transform: translateX(5px);
    }
    
    .course-code {
        background: var(--teal-primary);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-weight: 600;
        margin-right: 1rem;
        min-width: 80px;
        text-align: center;
    }
    
    .course-details h6 {
        color: var(--teal-dark);
        margin-bottom: 0.25rem;
        font-weight: 600;
    }
    
    .course-details p {
        color: #666;
        margin-bottom: 0;
        font-size: 0.9rem;
    }
    
    .sks-badge {
        background: #e3f2fd;
        color: #1976d2;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 500;
        margin-left: auto;
    }
    
    .semester-tab {
        background: linear-gradient(45deg, var(--teal-dark), var(--teal-primary));
        color: white;
        padding: 1rem;
        border-radius: 10px;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .competency-item {
        display: flex;
        align-items: flex-start;
        padding: 1.5rem;
        background: white;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        margin-bottom: 1.5rem;
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }
    
    .competency-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(21, 165, 155, 0.15);
    }
    
    .competency-icon {
        background: var(--teal-gradient);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    :root {
        --teal-primary: #15A59B;
        --teal-light: #47D4CC;
        --teal-dark: #0D7A70;
        --teal-gradient: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
    }
    
    * {
        font-family: 'Poppins', sans-serif;
    }
    
    body {
        background-color: #f8fafc;
        line-height: 1.6;
    }
    
    .hero-section {
        background: var(--teal-gradient);
        color: white;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 20px 20px;
        animation: float 20s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        33% { transform: translate(30px, -30px) rotate(120deg); }
        66% { transform: translate(-20px, 20px) rotate(240deg); }
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        color: var(--teal-dark);
        font-weight: 600;
        margin-bottom: 1rem;
        position: relative;
    }
    
    .section-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--teal-gradient);
        border-radius: 2px;
    }
    
    .visi-misi-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        border: none;
        overflow: hidden;
    }
    
    .visi-misi-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(21, 165, 155, 0.15);
    }
    
    .visi-card .card-header {
        background: var(--teal-gradient);
        color: white;
        border: none;
        padding: 1.5rem;
    }
    
    .misi-card .card-header {
        background: linear-gradient(135deg, var(--teal-light), var(--teal-primary));
        color: white;
        border: none;
        padding: 1.5rem;
    }
    
    .icon-box {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--teal-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        box-shadow: 0 10px 20px rgba(21, 165, 155, 0.3);
    }
    
    .icon-box i {
        font-size: 2rem;
        color: white;
    }
    
    .stat-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: none;
        padding: 2rem 1.5rem;
        text-align: center;
        height: 100%;
    }
    
    .stat-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(21, 165, 155, 0.15);
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--teal-primary);
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .stat-label {
        color: #64748b;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .timeline {
        position: relative;
        padding-left: 2rem;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--teal-gradient);
    }
    
    .timeline-item {
        position: relative;
        padding-bottom: 2rem;
        margin-left: 1rem;
    }
    
    .timeline-item::before {
        content: '';
        position: absolute;
        left: -1.5rem;
        top: 0.5rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--teal-primary);
        border: 3px solid white;
        box-shadow: 0 0 0 3px var(--teal-light);
    }
    
    .timeline-year {
        background: var(--teal-primary);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    
    .value-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: none;
        padding: 2rem;
        text-align: center;
        height: 100%;
    }
    
    .value-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(21, 165, 155, 0.15);
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--teal-light), var(--teal-primary));
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
    }
    
    .value-icon i {
        font-size: 1.5rem;
        color: white;
    }
    
    .achievement-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: none;
        overflow: hidden;
    }
    
    .achievement-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(21, 165, 155, 0.15);
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--teal-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .achievement-icon i {
        font-size: 1.2rem;
        color: white;
    }
    
    .facility-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: none;
        overflow: hidden;
        height: 100%;
    }
    
    .facility-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(21, 165, 155, 0.15);
    }
    
    .facility-img {
        height: 200px;
        background: var(--teal-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 3rem;
    }
    
    .video-wrapper {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(21, 165, 155, 0.2);
        transition: all 0.3s ease;
    }
    
    .video-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 60px rgba(21, 165, 155, 0.3);
    }
    
    .video-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 50%);
    }
    
    .gallery-item {
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(21, 165, 155, 0.2) !important;
    }
    
    .gallery-item img {
        transition: transform 0.5s ease;
    }
    
    .gallery-item:hover img {
        transform: scale(1.05);
    }
    
    .accreditation-badge {
        background: var(--teal-gradient);
        color: white;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        box-shadow: 0 5px 15px rgba(21, 165, 155, 0.3);
        margin-bottom: 1rem;
    }
    
    .contact-section {
        background: var(--teal-gradient);
        color: white;
        padding: 3rem 0;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .btn-teal {
        background: var(--teal-primary);
        border: none;
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .btn-teal:hover {
        background: var(--teal-dark);
        color: white;
        transform: translateY(-2px);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero-section {
            padding: 3rem 0;
        }
        
        .hero-section h1 {
            font-size: 2rem;
        }
        
        .timeline {
            padding-left: 1rem;
        }
        
        .timeline-item {
            margin-left: 0.5rem;
        }
    }

    
/**
* Template Name: BizLand - v3.7.0
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

.vl {
    padding-left: 30px;
    border-right: 1px solid rgb(214, 214, 214);
    height: 40px;
  }
  .homepage .schome-spotlight {
    padding-bottom: 0;
  }
  .homepage .schome-spotlight:before, .homepage .schome-spotlight:after {
    content: " ";
    display: table;
  }
  .homepage .schome-spotlight:after {
    clear: both;
  }
  .homepage .schome-spotlight img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .homepage .schome-spotlight h3 {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 auto 15px;
    letter-spacing: 2px;
  }
  .homepage .schome-spotlight p {
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    max-height: 60px;
    overflow: hidden;
  }
  .homepage .schome-spotlight a {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 10px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .homepage .schome-spotlight__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
  }
  .homepage .schome-spotlight__box {
    padding: 30px 15px;
    background-color: #16B3AC;
    position: absolute;
    bottom: 0;
    width: 50%;
  }
  .homepage .schome-spotlight__box:after {
    content: "";
    font-family: "Open Sans", sans-serif;
    font-size: 80px;
    line-height: 1;
    position: absolute;
    top: 40%;
    right: -25px;
    color: #B5FF00;
  }
  .homepage .schome-spotlight__block {
    position: relative;
  }
  .homepage .schome-spotlight__block.right-top .text-center, .homepage .schome-spotlight__block.right-bottom .text-center {
    top: 0;
    color: ;
  }
  .homepage .schome-spotlight__block.right-top .text-center {
    background-color: #49e0d9;
  }
  .homepage .schome-spotlight__block.right-top .text-center:after {
    color: #49e0d9;
  }
  .homepage .schome-spotlight__block.right-bottom .text-center {
    background-color: #16B3AC;
    right: 0;
  }
  .homepage .schome-spotlight__block.right-bottom .text-center:after {
    color: #16B3AC;
    left: -25px;
    right: auto;
    content: "";
  }
  .homepage .schome-spotlight__block.right-bottom .text-center a {
    color: #fff;
  }
  @media (min-width: 1024px) {
    .homepage .schome-spotlight {
      padding-top: 60px;
      height: 680px;
      margin-bottom: 0;
    }
    .homepage .schome-spotlight p {
      font-size: 16px;
      line-height: 24px;
      max-height: 72px;
    }
    .homepage .schome-spotlight a {
      font-size: 14px;
    }
    .homepage .schome-spotlight__box {
      padding: 30px;
    }
    .homepage .schome-spotlight__block {
      width: 50%;
    }
    .homepage .schome-spotlight__block.left-full {
      height: 100%;
      float: left;
    }
    .homepage .schome-spotlight__block.left-full .text-center {
      height: 50%;
    }
    .homepage .schome-spotlight__block.right-top, .homepage .schome-spotlight__block.right-bottom {
      height: 50%;
      float: right;
    }
  }
  @media (min-width: 1400px) {
    .homepage .schome-spotlight {
      height: 840px;
      margin-bottom: 60px;
    }
    .homepage .schome-spotlight__wrap h3 {
      font-size: 20px;
    }
    .homepage .schome-spotlight p {
      font-size: 18px;
      line-height: 30px;
      max-height: 120px;
      margin-bottom: 30px;
    }
  }
  @media (max-width: 1023px) {
    .homepage .schome-spotlight {
      height: 1200px;
      margin: 15px 0;
    }
    .homepage .schome-spotlight__box:after {
      font-size: 40px;
      right: -12px;
    }
    .homepage .schome-spotlight__block {
      width: 100%;
    }
    .homepage .schome-spotlight__block.left-full {
      height: 50%;
    }
    .homepage .schome-spotlight__block.left-full img {
      height: 80%;
    }
    .homepage .schome-spotlight__block.left-full .schome-spotlight__box {
      width: 100%;
      height: 40%;
    }
    .homepage .schome-spotlight__block.left-full .schome-spotlight__box:after {
      content: '';
      left: 47%;
      right: auto;
      top: -26px;
    }
    .homepage .schome-spotlight__block.right-top, .homepage .schome-spotlight__block.right-bottom {
      height: 25%;
    }
    .homepage .schome-spotlight__block.right-bottom .text-center:after {
      left: -12px;
    }
  }
  @media (max-width: 767px) {
    .homepage .schome-spotlight {
      height: 900px;
    }
    .homepage .schome-spotlight__wrap {
      width: 90%;
    }
    .homepage .schome-spotlight__wrap h3 {
      font-size: 12px;
    }
    .homepage .schome-spotlight__block.left-full {
      height: 60%;
    }
    .homepage .schome-spotlight__block.right-top, .homepage .schome-spotlight__block.right-bottom {
      height: 20%;
    }
  }
  
  /* General */
  body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
  }
  
  a {
    color: #28166f;
    text-decoration: none;
  }
  
  a:hover {
    color: #3b8af2;
    text-decoration: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
  }
  
  .vertical-center {
    display: flex;
    align-items: center;
  }
  
  .laporan {
    background-color: #ffffff;
  }
  
  /* Postlist */
  .post {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E6E6E6;
  }
  .post .post-img a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .post .post-content .post-title > h3 {
    margin: 0 0 5px;
    padding: 15px;
    line-height: 1.3;
    font-weight: bold;
    font-size: 18px;
  }
  .post .post-content .post-title > h3 a {
    color: inherit;
    text-decoration: none;
  }
  .post .post-content .post-title .post-category a {
    margin: 0 7px 7px 0;
    display: inline-block;
    text-decoration: none;
    color: #a6a6a6;
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bold;
  }
  
  /* Header */
  #header {
    background: #fffdfd;
    transition: all 0.5s;
    z-index: 1030;
    width: 100%;
    height: 86px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0);
  }
  
  #header.fixed-top {
    height: 90px;
  }
  
  #header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-family: "Poppins", sans-serif;
  }
  
  #header .logo a {
    color: #28166f;
  }
  
  #header .logo a span {
    color: #106eea;
  }
  
  #header .logo img {
    max-height: 40px;
  }
  
  /* Navigation Menu */
  .navbar {
    padding: 0;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 10px;
  }
  
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 600;
    color: #00B9AD;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #B5FF00;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    width: 100%;
  }
  
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #B5FF00;
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 1px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }
  
  .navbar .dropdown ul li {
    min-width: auto !important;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-weight: 400;
  }
  
  .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: #030303;
  }
  .nav-item.dropdown .dropdown-item:active {
    background-color: var(--teal-light);
}
  .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-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  @media (max-width: 991px) {
    #navbarNav {
        background: white;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #f3f4f6;
    }

    /* Pastikan menu muncul */
    .navbar-nav {
        width: 100%;
    }
    
    
    .mobile-nav-toggle {
      display: block;
    }
    .navbar-collapse {
      background: white;
      margin-top: 1rem;
      padding: 1rem;
      border-radius: 0.5rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .nav-link {
      padding: 0.75rem 0;
      border-bottom: 1px solid #f3f4f6;
  }

  .navbar-nav .nav-link:last-child {
      border-bottom: none;
  }

  .action-buttons {
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #f3f4f6;
  }
    /* .navbar ul {
      display: none;
    } */
  }
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 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;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
  }
  
  .navbar-mobile > ul > li {
    padding: 0;
  }
  
  .navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
    visibility: hidden;
  }
  
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #106eea;
  }
  
  .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    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: #106eea;
  }
  
  .navbar-mobile .dropdown > .dropdown-active {
    display: block;
  }
  .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030; /* Ensure the header stays above other content */
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow to the fixed header for better visibility */
    transition: top 0.3s ease-in-out; /* Smooth transition */
  }
  
  /* To avoid content being hidden behind the fixed header, add padding to the body */
  body {
    padding-top: 100px; /* Adjust based on the height of your header */
  }
  .hero-section {
    position: relative;
    height: 60vh; /* Mengatur tinggi video menjadi full screen */
    overflow: hidden;
}
.hero-section-profil {
  background: var(--teal-gradient);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.hero-video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Memastikan video menutupi seluruh area tanpa merusak aspek rasio */
  z-index: 10; /* Membuat video berada di belakang konten */
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 13; /* Konten akan berada di atas video */
}
.video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 98.5%;
object-fit: cover;
background-color: rgba(21, 165, 155, 0.7); /* Warna hitam dengan transparansi 50% */
z-index: 10; /* Pastikan overlay berada di atas video */
}
.image-container {
position: relative;
width: 250px;
height: 100%; /* Tentukan tinggi kontainer */
}

.image-bottom-center {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
max-width: 100%; /* Pastikan gambar tidak melebihi lebar kontainer */
}

/* Responsif untuk layar dengan lebar 1365px ke bawah */
@media (max-width: 1365px) {
.image-container {
  width: 40%; /* Lebar penuh pada layar smartphone */
  height: auto; /* Pastikan tinggi menyesuaikan aspek rasio gambar */
  max-height: 300px; /* Menetapkan batas tinggi jika diperlukan, misalnya 300px */
}
}

/* Responsif untuk layar dengan lebar 1024px ke bawah (tablet) */
@media (max-width: 1024px) {
.image-container {
  width: 40%; /* Lebar penuh pada layar smartphone */
  height: 100%; /* Pastikan tinggi menyesuaikan aspek rasio gambar */
  max-height: 600px; /* Menetapkan batas tinggi jika diperlukan, misalnya 300px */
}
}

/* Responsif untuk layar dengan lebar 768px ke bawah (smartphone) */
@media (max-width: 768px) {
  .image-container {
    width: 40%; /* Lebar penuh pada layar smartphone */
    height: 100%; /* Pastikan tinggi menyesuaikan aspek rasio gambar */
    max-height: 600px; /* Menetapkan batas tinggi jika diperlukan, misalnya 300px */
  }
}

/* Responsif untuk layar dengan lebar 480px ke bawah (ponsel kecil) */
@media (max-width: 480px) {
.image-container {
  width: 40%; /* Lebar penuh pada layar smartphone */
  height: 100%; /* Pastikan tinggi menyesuaikan aspek rasio gambar */
  max-height: 600px; /* Menetapkan batas tinggi jika diperlukan, misalnya 300px */
}
}
/* Menurunkan z-index modal backdrop */
  .modal-backdrop {
      z-index: 1010 !important; /* Menurunkan z-index agar modal bisa muncul di atas */
  }

  /* Pastikan modal memiliki z-index yang lebih tinggi */
  .modal {
      z-index: 1051 !important; /* Modal berada di atas backdrop */
  }

  .zoom-effect {
        animation: zoom-animation 4s infinite ease-in-out;
    }

    /* Animasi untuk zoom yang berdenyut */
    @keyframes zoom-animation {
        0% {
            transform: scale(1);  /* Ukuran normal */
        }
        50% {
            transform: scale(1.01);  /* Zoom sedikit */
        }
        100% {
            transform: scale(1);  /* Kembali ke ukuran normal */
        }
    }
           /* Gaya untuk seluruh body konten di Voyager */
    .voyager-body {
        font-family: 'Poppins', sans-serif !important;
    }

    /* Gaya untuk elemen-elemen dalam body konten (seperti h1, p, span, dll.) */
    .voyager-body span, 
    .voyager-body p, 
    .voyager-body li, 
    .voyager-body a {
        font-family: 'Poppins', sans-serif !important;
        font-size: 14px !important;
        color: inherit; /* Pastikan teks mengikuti warna dari container */
    }

    /* Menyesuaikan ukuran font untuk h1 hingga h6 */
    .voyager-body h1 {
        font-size: 2rem !important; /* Ukuran font untuk h1 */
        font-weight: 700; /* Bold untuk h1 */
    }

    .voyager-body h2 {
        font-size: 1.75rem !important; /* Ukuran font untuk h2 */
        font-weight: 700; /* Bold untuk h2 */
    }

    .voyager-body h3 {
        font-size: 1.5rem !important; /* Ukuran font untuk h3 */
        font-weight: 600; /* Bold untuk h3 */
    }

    .voyager-body h4 {
        font-size: 1.25rem !important; /* Ukuran font untuk h4 */
        font-weight: 600; /* Bold untuk h4 */
    }

    .voyager-body h5 {
        font-size: 1.125rem !important; /* Ukuran font untuk h5 */
        font-weight: 500; /* Bold untuk h5 */
    }

    .voyager-body h6 {
        font-size: 1rem !important; /* Ukuran font untuk h6 */
        font-weight: 500; /* Bold untuk h6 */
    }

    /* Margin untuk elemen-elemen besar seperti h1, h2, dll */
    .voyager-body p, 
    .voyager-body h1, 
    .voyager-body h2, 
    .voyager-body h3, 
    .voyager-body h4, 
    .voyager-body h5, 
    .voyager-body h6 {
        margin-bottom: 1rem;
    }

    .voyager-body img, .prose img {
    max-width: 100% !important;  /* Agar gambar tidak melebihi lebar kontainer */
    height: auto !important;     /* Menjaga rasio aspek gambar agar tetap proporsional */
    display: block !important;   /* Menghindari spasi bawah yang tidak diinginkan */
    margin: 0 auto !important;   /* Untuk menjaga gambar tetap berada di tengah */
}

    .voyager-body table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .voyager-body img, .prose img {
        max-width: 100%;  /* Maksimal lebar gambar mengikuti lebar kontainer */
        height: auto;     /* Rasio gambar tetap proporsional */
    }
}

:root {
    --teal-primary: #14b8a6;
    --teal-secondary: #99f6e4;
    --teal-accent: #0d9488;
}

.milestone-page {
    min-height: 100vh;
    background-color: ;
    padding: 4rem 2rem;
}

.milestone-title {
    font-size: 3.75rem;
    font-weight: bold;
    color: var(--teal-accent);
}

.logo-container {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--teal-secondary);
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.milestone-container {
    position: relative;
    height: 800px;
}

.milestone-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.milestone-items {
    position: relative;
    width: 100%;
    height: 100%;
}

.milestone-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.milestone-year {
    background-color: var(--teal-primary);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 80px;
    text-align: center;
    flex-shrink: 0;
    font-weight: bold;
}

.milestone-label {
    background-color: var(--teal-secondary);
    color: var(--teal-accent);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    text-align: center;
    flex-shrink: 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .milestone-title {
        font-size: 2.5rem;
    }
    
    .milestone-page {
        padding: 2rem 1rem;
    }
    
    .milestone-container {
        height: 600px;
    }
}

    :root {
      --teal-primary: #15A59B;
      --teal-light: #47D4CC;
      --teal-dark: #0D7A70;
      --teal-gradient: linear-gradient(135deg, #15A59B 0%, #47D4CC 100%);
  }
  
  * {
      font-family: 'Poppins', sans-serif;
  }
  
  .hero-section {
      background: var(--teal-gradient);
      color: white;
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
  }
  
  .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>') no-repeat bottom center;
      background-size: cover;
  }
  
  .btn-teal {
      background: var(--teal-primary);
      border-color: var(--teal-primary);
      color: white;
      transition: all 0.3s ease;
  }
  
  .btn-teal:hover {
      background: var(--teal-dark);
      border-color: var(--teal-dark);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(21, 165, 155, 0.3);
  }
  
  .section-header {
      text-align: center;
      margin-bottom: 3rem;
  }
  
  .section-header h2 {
      color: var(--teal-dark);
      margin-bottom: 1rem;
      position: relative;
  }
  
  .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--teal-gradient);
      border-radius: 2px;
  }
  
  .accreditation-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 1px solid #e0e0e0;
      overflow: hidden;
      margin-bottom: 2rem;
  }
  
  .accreditation-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(21, 165, 155, 0.15);
  }
  
  .accreditation-header {
      background: var(--teal-gradient);
      color: white;
      padding: 1.5rem;
      position: relative;
  }
  
  .accreditation-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: rgba(255, 255, 255, 0.3);
  }
  
  .program-icon {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1rem;
  }
  
  .accreditation-body {
      padding: 2rem;
  }
  
  .timeline {
      position: relative;
      padding-left: 2rem;
  }
  
  .timeline::before {
      content: '';
      position: absolute;
      left: 0.75rem;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--teal-light);
  }
  
  .timeline-item {
      position: relative;
      margin-bottom: 2rem;
      padding-left: 2rem;
  }
  
  .timeline-item::before {
      content: '';
      position: absolute;
      left: -0.5rem;
      top: 0.25rem;
      width: 12px;
      height: 12px;
      background: var(--teal-primary);
      border-radius: 50%;
      border: 3px solid white;
      box-shadow: 0 0 0 3px var(--teal-light);
  }
  
  .timeline-year {
      background: var(--teal-primary);
      color: white;
      padding: 0.25rem 0.75rem;
      border-radius: 15px;
      font-size: 0.875rem;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 0.5rem;
  }
  
  .grade-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      border-radius: 25px;
      font-weight: 600;
      margin-top: 0.5rem;
  }
  
  .grade-a {
      background: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
  }
  
  .grade-b {
      background: #fff3cd;
      color: #856404;
      border: 1px solid #ffeaa7;
  }
  
  .grade-c {
      background: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
  }
  
  .grade-unggul {
      background: #e7f3ff;
      color: #0066cc;
      border: 1px solid #b3d9ff;
  }
  
  .grade-baik-sekali {
      background: #f0f9f4;
      color: #0d7a43;
      border: 1px solid #a7d4b4;
  }
  
  .service-card-layanan {
      background: var(--gray-750);
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
  }
  .service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 100%;
}
  
  .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(21, 165, 155, 0.15);
  }
  
  .service-icon {
      width: 80px;
      height: 80px;
      background: var(--teal-gradient);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      margin: 0 auto 1.5rem;
  }
  
  .status-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      padding: 0.375rem 0.75rem;
      border-radius: 15px;
      font-size: 0.75rem;
      font-weight: 600;
  }
  
  .status-active {
      background: #d4edda;
      color: #155724;
  }
  
  .status-expired {
      background: #f8d7da;
      color: #721c24;
  }
  
  .status-process {
      background: #fff3cd;
      color: #856404;
  }
  
  .stats-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 4rem 0;
      margin: 3rem 0;
      border-radius: 20px;
  }
  
  .stats-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(21, 165, 155, 0.15);
  }
  
  .stats-number {
      font-size: 2.5rem;
      color: var(--teal-primary);
      margin-bottom: 0.5rem;
  }
  
  .stats-label {
      color: #666;
  }
  
  .filter-tabs {
      background: white;
      border-radius: 15px;
      padding: 1rem;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 2rem;
  }
  
  .filter-tabs .nav-link {
      border: none;
      border-radius: 25px;
      padding: 0.75rem 1.5rem;
      color: var(--teal-dark);
      font-weight: 500;
      transition: all 0.3s ease;
  }
  
  .filter-tabs .nav-link.active {
      background: var(--teal-primary);
      color: white;
      box-shadow: 0 3px 10px rgba(21, 165, 155, 0.3);
  }
  
  .filter-tabs .nav-link:hover:not(.active) {
      background: #f0f9f8;
      color: var(--teal-primary);
  }
  
  .certificate-link {
      color: var(--teal-primary);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
  }
  
  .certificate-link:hover {
      color: var(--teal-dark);
      text-decoration: underline;
  }
  
  .validity-info {
      background: #f8f9fa;
      border-left: 4px solid var(--teal-primary);
      padding: 1rem;
      border-radius: 0 8px 8px 0;
      margin-top: 1rem;
  }
  
  .summary-info {
      background: rgba(21, 165, 155, 0.02);
      border-radius: 10px;
      padding: 1.5rem;
      border: 1px solid rgba(21, 165, 155, 0.1);
  }
  
  .toggle-detail {
      border-color: var(--teal-primary);
      color: var(--teal-primary);
      transition: all 0.3s ease;
      border-radius: 20px;
      padding: 0.5rem 1rem;
  }
  
  .toggle-detail:hover {
      background: var(--teal-primary);
      border-color: var(--teal-primary);
      color: white;
      transform: translateY(-1px);
  }
  
  .toggle-detail.collapsed .toggle-icon {
      transform: rotate(0deg);
      transition: transform 0.3s ease;
  }
  
  .toggle-detail:not(.collapsed) .toggle-icon {
      transform: rotate(180deg);
      transition: transform 0.3s ease;
  }
  
  .collapse {
      transition: all 0.4s ease;
  }
  
  .collapsing {
      opacity: 0.5;
      transition: height 0.4s ease, opacity 0.3s ease;
  }
  
  .collapse.show {
      opacity: 1;
  }
  
  @media (max-width: 768px) {
      .hero-section {
          padding: 2rem 0;
      }
      
      .timeline {
          padding-left: 1.5rem;
      }
      
      .timeline-item {
          padding-left: 1.5rem;
      }
      
      .stats-section {
          padding: 2rem 0;
      }
      
      .filter-tabs .nav-link {
          padding: 0.5rem 1rem;
          font-size: 0.9rem;
      }
  }

  /* css untuk dokumen publik */
  /* Header Styles */
      .page-header {
          background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
          color: white;
          padding: 3rem 0 2rem 0;
          margin-bottom: 3rem;
      }

      .page-header h1 {
          font-size: 2.5rem;
          font-weight: 700;
          margin-bottom: 0.5rem;
      }

      .page-header .subtitle {
          font-size: 1.125rem;
          opacity: 0.9;
      }

      /* Navigation Sidebar Styles */
      .nav-sidebar {
          background-color: white;
          border-radius: 12px;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          padding: 1.5rem;
          position: sticky;
          top: 2rem;
          height: fit-content;
      }

      .nav-sidebar h5 {
          color: var(--slate-900);
          font-weight: 600;
          margin-bottom: 1.5rem;
          padding-bottom: 0.75rem;
          border-bottom: 2px solid var(--teal-primary);
      }

      .nav-pills .nav-link {
          font-size: 0.95rem;
          color: var(--slate-700);
          text-decoration: none;
          padding: 12px 16px;
          margin-bottom: 0.5rem;
          border-radius: 8px;
          transition: all 0.3s ease;
          border: 1px solid transparent;
          display: flex;
          align-items: center;
      }

      .nav-pills .nav-link i {
          width: 20px;
          margin-right: 0.75rem;
          font-size: 1rem;
      }

      .nav-pills .nav-link:hover {
          background-color: rgba(21, 165, 155, 0.1);
          color: var(--teal-dark);
          border-color: var(--teal-light);
          transform: translateX(4px);
      }

      .nav-pills .nav-link.active {
          background-color: var(--teal-primary);
          color: white;
          font-weight: 600;
          box-shadow: 0 4px 12px rgba(21, 165, 155, 0.3);
      }

      .nav-pills .nav-link.active:hover {
          background-color: var(--teal-dark);
          transform: translateX(0);
      }

      /* Content Area Styles */
      .content-area {
          background-color: white;
          border-radius: 12px;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          min-height: 600px;
      }

      .content-header {
          background-color: var(--slate-100);
          padding: 1.5rem;
          border-radius: 12px 12px 0 0;
          border-bottom: 1px solid var(--slate-200);
      }

      .content-header h3 {
          color: var(--slate-900);
          font-weight: 600;
          margin: 0;
          display: flex;
          align-items: center;
      }

      .content-header h3 i {
          color: var(--teal-primary);
          margin-right: 0.75rem;
          font-size: 1.25rem;
      }

      .content-body {
          padding: 2rem;
      }

      /* Document Card Styles */
      .document-card {
          border: 1px solid var(--slate-200);
          border-radius: 10px;
          margin-bottom: 1.5rem;
          transition: all 0.3s ease;
          overflow: hidden;
      }

      .document-card:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
          border-color: var(--teal-light);
      }

      .document-card-header {
          background-color: var(--teal-primary);
          color: white;
          font-weight: 600;
          padding: 1rem 1.25rem;
          display: flex;
          align-items: center;
          justify-content: space-between;
      }

      .document-card-header i {
          font-size: 1.125rem;
      }

      .document-card-body {
          padding: 1.5rem 1.25rem;
          background-color: white;
      }

      .document-link {
          color: var(--slate-700);
          text-decoration: none;
          padding: 0.75rem 1rem;
          border-radius: 6px;
          transition: all 0.3s ease;
          display: flex;
          align-items: center;
          justify-content: between;
          border: 1px solid var(--slate-200);
          margin-bottom: 0.75rem;
      }

      .document-link:last-child {
          margin-bottom: 0;
      }

      .document-link:hover {
          background-color: var(--slate-50);
          color: var(--teal-primary);
          border-color: var(--teal-light);
          transform: translateX(4px);
      }

      .document-link .document-info {
          flex: 1;
      }

      .document-link .document-title {
          font-weight: 500;
          margin-bottom: 0.25rem;
      }

      .document-link .document-meta {
          font-size: 0.875rem;
          color: var(--slate-500);
      }

      .document-link .download-icon {
          color: var(--teal-primary);
          font-size: 1.125rem;
          opacity: 0.7;
          transition: all 0.3s ease;
      }

      .document-link:hover .download-icon {
          opacity: 1;
          transform: translateY(-1px);
      }

      /* Empty State */
      .empty-state {
          text-align: center;
          padding: 3rem 2rem;
          color: var(--slate-500);
      }

      .empty-state i {
          font-size: 3rem;
          color: var(--slate-300);
          margin-bottom: 1rem;
      }

      .empty-state h5 {
          color: var(--slate-600);
          margin-bottom: 0.5rem;
      }

      /* Stats Cards */
      .stats-card {
          background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
          color: white !important;
          border-radius: 10px;
          padding: 1.5rem;
          text-align: center;
          margin-bottom: 1.5rem;
      }

      .stats-number {
          font-size: 2rem;
          font-weight: 700;
          margin-bottom: 0.5rem;
          color: inherit !important;
      }

      .stats-label {
          font-size: 0.875rem;
          opacity: 0.9;
          color: inherit !important;
      }

              /* Filter Box */
        .filter-box {
            background-color: var(--slate-50);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid var(--slate-200);
        }
        
        .filter-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .filter-header i {
            color: var(--slate-600);
            margin-right: 0.5rem;
        }
        
        .filter-header span {
            color: var(--slate-700);
            font-weight: 500;
        }
        
        /* Prestasi List Styles */
        .prestasi-list {
            border: 1px solid var(--slate-200);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .prestasi-item {
            padding: 1.5rem;
            border-bottom: 1px solid var(--slate-200);
            transition: background-color 0.2s ease;
        }
        
        .prestasi-item:last-child {
            border-bottom: none;
        }
        
        .prestasi-item:hover {
            background-color: var(--slate-50);
        }
        
        .prestasi-index {
            width: 40px;
            height: 40px;
            background-color: var(--teal-primary);
            color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            flex-shrink: 0;
        }
        
        .prestasi-title {
            color: var(--slate-800);
            font-weight: 500;
            margin-bottom: 0.5rem;
            transition: color 0.2s ease;
        }
        
        .prestasi-title:hover {
            color: var(--teal-primary);
        }
        
        .category-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.375rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-right: 0.75rem;
        }
        
        .category-mahasiswa {
            background-color: #fef3c7;
            color: #92400e;
            border: 1px solid #fde68a;
        }
        
        .category-dosen {
            background-color: #dcfce7;
            color: #166534;
            border: 1px solid #bbf7d0;
        }
        
        .category-tendik {
            background-color: #dbeafe;
            color: #1e40af;
            border: 1px solid #bfdbfe;
        }
        
        .category-institusi {
            background-color: #f3e8ff;
            color: #7c3aed;
            border: 1px solid #e9d5ff;
        }
        
        .date-meta {
            display: inline-flex;
            align-items: center;
            color: var(--slate-500);
            font-size: 0.875rem;
        }
        
        .date-meta i {
            margin-right: 0.25rem;
        }
        
        .btn-lihat {
            background-color: var(--teal-primary);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: background-color 0.2s ease;
        }
        
        .btn-lihat:hover {
            background-color: var(--teal-dark);
            color: white;
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 3rem 2rem;
            color: var(--slate-500);
        }
        
        .empty-state i {
            font-size: 3rem;
            color: var(--slate-300);
            margin-bottom: 1rem;
        }
        
        .empty-state h5 {
            color: var(--slate-600);
            margin-bottom: 0.5rem;
        }
        
        /* Results Info */
        .results-info {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .results-info i {
            color: var(--slate-500);
            margin-right: 0.5rem;
        }
        
        .results-info .result-count {
            font-weight: 600;
            color: var(--teal-primary);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2rem;
            }
            
            .page-header .subtitle {
                font-size: 1rem;
            }
            
            .nav-sidebar {
                margin-bottom: 2rem;
                position: static;
            }
            
            .nav-pills .nav-link {
                font-size: 0.9rem;
                padding: 10px 14px;
            }
            
            .content-body {
                padding: 1.5rem;
            }
            
            .prestasi-item {
                padding: 1.25rem;
            }
            
            .prestasi-index {
                width: 35px;
                height: 35px;
            }
            
            .stats-card {
                padding: 1.25rem;
            }
            
            .stats-number {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-header {
                padding: 2rem 0 1.5rem 0;
                margin-bottom: 2rem;
            }
            
            .nav-pills .nav-link {
                padding: 8px 12px;
                font-size: 0.85rem;
            }
            
            .content-header {
                padding: 1.25rem;
            }
            
            .content-body {
                padding: 1.25rem;
            }
            
            .filter-box {
                padding: 1.25rem;
            }
            
            .prestasi-item {
                padding: 1rem;
            }
        }


              .mission-badge {
        background: var(--teal-primary);
        color: white;
        border: none;
    }
    
    .feature-box {
        text-align: center;
        padding: 1.5rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        border: 1px solid #e9ecef;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
    }
    
    @media (max-width: 768px) {
        .hero-section {
            padding: 4rem 0;
        }
        
        .display-4 {
            font-size: 2rem;
        }
        
        .lead {
            font-size: 1.1rem;
        }
    }
    
    .animate-fade-in {
        animation: fadeIn 1s ease-in;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .card-hover {
        transition: all 0.3s ease;
        border-left: 4px solid var(--teal-primary);
    }
    
    .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .card-hover:hover .icon-wrapper {
        transform: scale(1.1);
    }
    
    .vision-card {
        border-left: 4px solid var(--teal-primary);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .vision-highlight {
        color: var(--teal-primary);
        font-weight: 600;
    }
    
    .value-item {
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }
    
    .value-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .cta-section {
        background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    }
    
    .btn-outline-white {
        border: 2px solid white;
        color: white;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .btn-outline-white:hover {
        background: white;
        color: var(--teal-primary);
    }
    
    .btn-teal {
        background: white;
        color: var(--teal-primary);
        font-weight: 500;
        border: none;
        transition: all 0.3s ease;
    }
    
    .btn-teal:hover {
        background: #f8f9fa;
        color: var(--teal-primary);
    }
    
    .img-rounded {
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    /* Language Switcher Styles - Simple & Elegant */
    .language-btn {
        background-color: transparent;
        border: 1px solid rgba(21, 165, 155, 0.3);
        color: var(--teal-primary);
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 8px;
        margin: 0 4px;
        min-width: 140px;
        font-size: 0.95rem;
    }
    
    .language-btn:hover {
        background-color: rgba(21, 165, 155, 0.08);
        border-color: var(--teal-primary);
        color: var(--teal-primary);
        transform: translateY(-1px);
    }
    
    .language-btn.active {
        background-color: var(--teal-primary);
        border-color: var(--teal-primary);
        color: white;
        box-shadow: 0 2px 8px rgba(21, 165, 155, 0.25);
    }
    
    .language-btn.active:hover {
        background-color: var(--teal-dark);
        border-color: var(--teal-dark);
        color: white;
    }
    
    .language-btn i {
        color: inherit;
        opacity: 0.8;
    }
    
    .language-btn.active i {
        opacity: 1;
    }
    
    .language-transition {
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
    
    .language-changing {
        opacity: 0.7;
        transform: translateY(-2px);
    }
    
    /* Language section enhancement */
    .language-section {
        background-color: #ffffff;
        border-top: 1px solid rgba(21, 165, 155, 0.1);
        border-bottom: 1px solid rgba(21, 165, 155, 0.1);
    }
    
    .btn-group-lg .language-btn {
        border-radius: 8px !important;
    }
    
    .btn-group-lg .language-btn:first-child {
        border-top-left-radius: 8px !important;
        border-bottom-left-radius: 8px !important;
    }
    
    .btn-group-lg .language-btn:last-child {
        border-top-right-radius: 8px !important;
        border-bottom-right-radius: 8px !important;
    }
    
    @media (max-width: 768px) {
        .btn-group-lg {
            flex-direction: column;
            width: 100%;
            align-items: center;
        }
        
        .btn-group-lg .language-btn {
            margin: 4px 0;
            border-radius: 8px !important;
            width: 100%;
            max-width: 240px;
            min-width: auto;
        }
    }
    



    
        /* Laboratory cards */
        .lab-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(21, 165, 155, 0.1);
            overflow: hidden;
            height: 100%;
        }
        
        .lab-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(21, 165, 155, 0.15);
            border-color: var(--teal-primary);
        }
        
        .lab-image {
            position: relative;
            overflow: hidden;
            height: 200px;
        }
        
        .lab-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .lab-card:hover .lab-image img {
            transform: scale(1.05);
        }
        
        .lab-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;lab-description
            font-weight: 500;
            box-shadow: 0 5px 15px rgba(21, 165, 155, 0.3);
        }
        
        .lab-content {
            padding: 1.5rem;
        }
        
        .lab-title {
            color: var(--teal-dark);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
        }
        
        .lab-description {
            color: #666;
            font-size: 0.75rem;
            line-height: 1.6;
            height: 100px;
            overflow-y: auto;
            margin-bottom: 1rem;
        }
        
        .lab-facilities {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .facility-tag {
            background: var(--teal-lightest);
            color: var(--teal-dark);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .lab-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        
        /* Info section */
        .info-section {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            margin-bottom: 3rem;
        }
        
        .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(21, 165, 155, 0.3);
        }
        
        /* Lab Terpadu special styles */
        .space-lab-hero {
            background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 50%, #1A1A2E 100%);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .space-lab-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(71,212,204,0.15) 0%, transparent 50%);
            z-index: 1;
        }
        
        .space-lab-content {
            position: relative;
            z-index: 2;
        }
        
        .tech-icon {
            width: 50px;
            height: 50px;
            background: var(--teal-lightest);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal-primary);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        
        .tech-feature:hover .tech-icon {
            background: var(--teal-primary);
            color: white;
            transform: translateY(-3px);
        }
        
        .integration-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border: 1px solid rgba(21, 165, 155, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .integration-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--teal-primary), var(--teal-light));
        }
        
        .integration-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(21, 165, 155, 0.15);
        }
        
        .program-integration {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .program-tag {
            background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        /* Animations */
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            
            .lab-content {
                padding: 1rem;
            }
            
        }
        
        @media (max-width: 480px) {
            .breadcrumb-custom {
                padding: 0.4rem 1rem;
                font-size: 0.9rem;
            }
        }
        /* Statistics grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--teal-primary);
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--teal-primary);
            margin-bottom: 0.5rem;
        }
        
        .stat-card .label {
            color: #666;
            font-weight: 500;
        }
        
        /* Program tabs */
        .program-tabs {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 1rem;
            margin-bottom: 3rem;
        }

        #tarifTabs.nav-tabs {
        border-bottom: none;
        }

        /* 2. Atur Tampilan TAB (INACTIVE) */
        #tarifTabs .nav-link {
        background-color: var(--teal-light) !important; /* Gunakan warna teal muda */
        color: white; /* Ganti warna teks agar terbaca */
        border: none; /* Hapus border bawaan */
        border-radius: 8px 8px 0 0; /* Beri lengkungan di atas */

        /* Ini menggantikan H4: buat font lebih besar dan tebal */
        font-size: 1.1rem;
        font-weight: 600;
        
        /* Beri padding yang pas */
        padding: 12px 16px;
        }

        /* 3. Atur Tampilan TAB (ACTIVE) */
        #tarifTabs .nav-link.active {
        background-color: var(--gray-400) !important; /* Gunakan warna abu-abu saat aktif */
        color: white; /* Ganti warna teks agar seragam */
        }

        /* 4. Atur Tampilan HOVER (Saat mouse di atasnya) */
        #tarifTabs .nav-link:hover {
        /* Sedikit lebih gelap dari teal saat di-hover */
        background-color: #38b0a8 !important; 
        color: white !important;
        border: none;
        }

        /* 5. Atur HOVER untuk tab yang active (agar tidak berubah) */
        #tarifTabs .nav-link.active:hover {
        background-color: var(--gray-400) !important; /* Tetap abu-abu saat di-hover */
        }

        /* 6. Atur warna border di konten tab agar matching */
        #tarifTabsContent .border {
            border-color: #DEE2E6 !important; /* Sesuaikan jika perlu */
        }

        /*css aduan*/

        .about-border {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--teal-primary, #15A59B), var(--teal-light, #94E2DB));
            border-radius: 2px;
        }

        /* Card Aduan - Bisa diklik seluruhnya */
        .aduan-card {
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            border-left: 4px solid transparent !important;
            background-color: #ffffff !important;
            overflow: hidden;
        }

        .aduan-card:hover {
            background-color: #f0fdfa !important; /* Teal sangat muda */
            border-left-color: var(--teal-primary, #15A59B) !important;
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(21, 165, 155, 0.18) !important;
        }

        /* Stretched link: klik di mana saja */
        .aduan-card .stretched-link {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 1;
        }

        /* Hover scale halus */
        .hover-scale {
            transition: all 0.3s ease;
        }

        .aduan-card:hover img {
        filter: brightness(0.98) hue-rotate(5deg);
        mix-blend-mode: multiply;
        opacity: 0.95;
        transition: filter 0.3s ease, opacity 0.3s ease;
        }

        /* Jika ingin lebih halus (opsional) */
        .aduan-card img {
            transition: all 0.3s ease;
        }

        .aduan-card:hover .icon-wrapper {
            background-color: var(--teal-dark) !important;
            transform: scale(1.05);
        }

        

        /* Responsif mobile */
        @media (max-width: 576px) {
            .aduan-card img {
                height: 45px !important;
            }
            .aduan-card p {
                font-size: 0.875rem;
            }
            .aduan-card .me-4 {
                margin-right: 0.75rem !important;
            }
        }

        .custom-table {
        border-collapse: separate;
        border-spacing: 0;
        width: 100%;
        border: 1px solid var(--slate-200);
        border-radius: 8px; /* Rounded corners untuk tabel */
        overflow: hidden;
    }

    .custom-table thead {
        background-color: var(--slate-100); /* Header abu-abu muda */
    }

    .custom-table th {
        color: var(--gray-700);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        padding: 12px 16px;
        border-bottom: 2px solid var(--slate-200);
    }

    .custom-table td {
        padding: 12px 16px;
        vertical-align: middle;
        color: var(--slate-600);
        border-bottom: 1px solid var(--slate-200);
        font-size: 0.95rem;
    }

    .custom-table tbody tr:last-child td {
        border-bottom: none; /* Hilangkan border di baris terakhir */
    }

    /* Row Hover Effect */
    .custom-table tbody tr:hover {
        background-color: var(--slate-50);
    }

        .card-detail {
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        overflow: hidden;
    }
    
    .card-header-teal {
        background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
        color: white;
        padding: 2rem;
    }

    .detail-icon-box {
        width: 40px;
        height: 40px;
        background-color: var(--slate-100);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--teal-primary);
        flex-shrink: 0;
    }

    .info-label {
        font-size: 0.875rem;
        color: var(--slate-500);
        font-weight: 500;
        margin-bottom: 0.25rem;
        display: block;
    }

    .info-value {
        font-size: 1rem;
        color: var(--gray-800);
        font-weight: 600;
    }

    .badge-event {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .collapse-link[aria-expanded="true"] .icon-toggle {
        transform: rotate(180deg);
    }
    .icon-toggle {
        transition: transform 0.3s ease;
    }
    .collapse-link {
        cursor: pointer;
    }

        /* Mengunci tinggi area testimoni & mengaktifkan scroll */
    .testimonial-box {
        height: 110px; /* Tinggi fix agar semua kartu sejajar */
        overflow-y: auto; /* Munculkan scroll jika teks kepanjangan */
        padding-right: 5px; /* Jarak agar teks tidak tertutup scrollbar */
    }

    /* Mempercantik Scrollbar (Chrome, Safari, Edge) */
    .testimonial-box::-webkit-scrollbar {
        width: 4px; /* Scrollbar tipis */
    }

    .testimonial-box::-webkit-scrollbar-track {
        background: #f1f1f1; 
        border-radius: 4px;
    }

    .testimonial-box::-webkit-scrollbar-thumb {
        background: #ccc; /* Warna scrollbar */
        border-radius: 4px;
    }

    .testimonial-box::-webkit-scrollbar-thumb:hover {
        background: #009688; /* Warna saat di-hover (Teal) */
    }

    /* Firefox */
    .testimonial-box {
        scrollbar-width: thin;
        scrollbar-color: #ccc #f1f1f1;
    }
    
/* Targetkan div yang memiliki id ticker di dalamnya */
div:has(> #announcement-ticker), 
.text-center.py-2.px-3.small {
    
    height: auto !important;             /* Lepaskan kunci 51px */
    min-height: 40px !important;
    max-height: none !important;         /* Pastikan tidak ada batas atas */
    width: 100% !important;              /* Matikan angka 540px, paksa lebar layar */
    display: flex !important;            /* Gunakan flex untuk kontrol total */
    flex-wrap: wrap !important;          /* Izinkan konten turun ke bawah */
    justify-content: center !important;
    align-items: center !important;
    overflow: visible !important;        /* Jangan sembunyikan teks yang meluap */
    box-sizing: border-box !important;
    padding-top: 15px !important;
}

#announcement-ticker {
    display: inline-block !important;
    width: auto !important;
    max-width: 100% !important;
    white-space: normal !important;      /* Wajib untuk wrapping */
    line-height: 1.5 !important;         /* Beri sedikit ruang antar baris */
}

/* Pastikan kontainer ticker berada paling depan */
div:has(> #announcement-ticker) {
    position: relative !important;
    z-index: 1020 !important; /* Lebih tinggi dari z-index: 9999 sebelumnya */
}

        /* Warna link agar kontras dengan abu-abu */
    #announcement-ticker a {
        color: #1f2937 !important; /* Biru gelap atau hitam agar menonjol */
        text-decoration: underline;
        font-weight: 700;
    }

@media (max-width: 768px) {
    /* Selector menargetkan div ticker */
    div:has(> #announcement-ticker) {
        /* Tinggi Navbar (64px) + Jarak Aman (6px) = 70px */
        margin-top: 50px !important;
        z-index: 1020 !important;  
        
        /* Pastikan posisi relative agar margin berfungsi */
        position: relative !important;
        
        /* Reset padding agar tidak terlalu tebal di dalam */
        padding-top: 15px !important; 
        padding-bottom: 15px !important;
    }
}

    