 /* General Body Style */
 body {
     font-family: Poppins, sans-serif;
     margin: 0;
     background-color: #f9f9f9;
 }

 /* Main Content Area */
 .content-area {
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px;
 }

 /* NEW STYLES for Main Title */
 .main-title-container {
     margin-bottom: 25px;
 }

 .main-title {
     font-size: 2em;
     font-weight: bold;
     color: #005691;
     /* Warna biru sesuai gambar */
     border-left: 5px solid #005691;
     padding-left: 15px;
     margin: 0;
 }

 /* UPDATED STYLES for Filter Dropdown */
 .filter-container {
     margin-bottom: 40px;
 }

 #category-filter {
     text-align: center;
     text-align-last: center;
     width: 100%;
     padding: 12px 15px;
     font-size: 1em;
     color: #555;
     border: 1px solid #ccc;
     border-radius: 4px;
     background-color: #fff;
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
     background-repeat: no-repeat;
     background-position: right 15px center;
     background-size: .65em auto;
 }

 /* Section and Card Styles */
 .category-section {
     margin-bottom: 60px;
 }

 .category-title {
     font-size: 1.8em;
     color: #333;
     border-bottom: 3px solid #007BFF;
     padding-bottom: 10px;
     margin-bottom: 30px;
 }

 .software-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 25px;
 }

 .software-card {
     background-color: #ffffff;
     border: 1px solid #e0e0e0;
     border-radius: 8px;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
 }

 .software-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .software-card img {
     width: 100%;
     height: 160px;
     object-fit: cover;
     background-color: #eee;
     /* Fallback color for missing images */
 }

 .card-content {
     padding: 20px;
     flex-grow: 1;
 }

 .software-card h3 {
     margin-top: 0;
     font-size: 1.1em;
     color: #333;
 }

 .software-card p,
 .software-card ul {
     margin: 0;
     color: #666;
     font-size: 0.9em;
     line-height: 1.5;
     padding-left: 0;
 }

 .software-card ul {
     padding-left: 20px;
     margin-top: 10px;
 }

 .request-btn {
     display: inline-block;
     margin-top: 15px;
     padding: 10px 25px;
     background: linear-gradient(to right, #007BFF, #0056b3);
     /* Biru ke biru tua/hampir hitam */
     color: #fff;
     font-weight: bold;
     text-decoration: none;
     border-radius: 50px;
     /* Bentuk pill */
     font-size: 14px;
     transition: all 0.3s ease;
     box-shadow: none;
 }

 .request-btn:hover {
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
     /* Bayangan saat hover */
     background: linear-gradient(to right, #0069d9, #004080);
     /* Biru gelap saat hover */
 }


 /* Styling for the industry selection buttons */
 .separator-text {
     font-size: 1.2rem;
     font-weight: 600;
     color: #555;
     margin: 20px 0;
     text-align: center;
 }

 .rtcats-sub {
     text-align: center;
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 20px;
     color: #333;
 }

 .rtcats-grid {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 15px;
     padding: 10px;
 }

 .rtcats-pill {
     background: linear-gradient(145deg, #007bff, #0056b3);
     color: #ffffff;
     padding: 12px 24px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     font-size: 1rem;
     box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
 }

 .rtcats-pill:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
     background: linear-gradient(145deg, #0069d9, #004085);
 }

 /* Style untuk Tombol Buka/Tutup Panel Kategori */
.toggle-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px auto; /* Posisi di tengah dan beri jarak bawah */
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #005691;
    background-color: #e9f5ff; /* Warna biru muda */
    border: 2px solid #005691; /* Border biru tua */
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    background-color: #d1e9ff; /* Warna sedikit lebih gelap saat hover */
    transform: scale(1.02);
}

/* Penyesuaian kecil agar panel kategori punya jarak atas */
#category-panel {
    padding-top: 20px;
}

/* === Layout fixes to keep actions aligned === */
    .software-grid {
      display: grid;
      gap: 24px
    }

    .software-card {
      display: flex;
      flex-direction: column;
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
    }

    .software-card img {
      width: 100%;
      height: 120px;
      display: block
    }

    .card-link {
      display: block
    }

    .card-content {
      padding: 16px;
      flex: 1 1 auto;
    }

    .card-actions {
      padding: 12px 16px;
      border-top: 1px solid #eee;
      display: flex;
      justify-content: flex-end;
      margin-top: auto;
      /* push to bottom */
    }

    .btn {
      display: inline-block;
      padding: 10px 14px;
      border-radius: 10px;
      border: 0;
      cursor: pointer
    }

    .btn-primary {
      width: 100%;
    }

    /* === Minimal modal (if not provided by site CSS) === */
    .modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999
    }

    .modal.is-open {
      display: flex
    }

    .modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .4)
    }

    .modal-dialog {
      position: relative;
      background: #fff;
      max-width: 960px;
      width: 92%;
      max-height: 88vh;
      overflow: auto;
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
    }

    .modal-close {
      position: absolute;
      top: 8px;
      right: 8px;
      background: transparent;
      border: 0;
      font-size: 24px;
      cursor: pointer;
      line-height: 1
    }

    .modal-dialog h3 {
      margin-top: 0
    }

    .modal-section+.modal-section {
      margin-top: 16px
    }


    .long-desc {
      margin-bottom: 20px;
    }

    .list-of-features-title {
      font-size: 1.8em;
      font-weight: 600;
      margin-top: 0px;
      margin-bottom: 10px;
    }

    .list-of-features-subtitle {
      font-size: 1.3em;
      font-weight: 600;
    }


/* Untuk Software Group selector * /
/* Layout tetap */
.slr-layout{
  display:grid; grid-template-columns:280px 1fr; gap:22px;
  margin:24px auto;
}
@media (max-width: 992px){ .slr-layout{ grid-template-columns:1fr } }

/* Sticky + scrollable */
.slr-sidebar{
  position:sticky; top:120px; align-self:start;
  border:1px solid #e5e7eb; border-radius:12px; background:#fff;
}

@media (max-width: 450px)
  { 
    .slr-sidebar{
      top:130px; 
    }

  }

.slr-sidebar--scroll{
  max-height: calc(100vh - 25vh);
  overflow:auto;           /* scrollbar otomatis bila banyak */
}

/* Header kecil di sidebar */
.slr-sidehead{
  letter-spacing:.02em;
  padding:12px 14px; border-bottom:1px solid #eef2f7; 
}

/* Nav list */
.slr-nav{ padding:10px; display:flex; flex-direction:column; gap:6px; }
.slr-nav-item{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; width:100%; text-align:left; border:0; background:#fff;
  padding:10px 12px; border-radius:10px; cursor:pointer;
  font:inherit; color:#0f172a;
}
.slr-nav-item:hover{ background:#f7f9fc; }
.slr-nav-item.is-active{ outline:2px solid #0b74ff; background:#eef5ff; }

/* Pill jumlah */
.slr-nav-pill{
  display:inline-block; background:#edf2ff; color:#1e3a8a;
  border-radius:999px; padding:4px 8px; font-weight:700; font-size:12px;
}

/* Optional: rapikan judul section saat discroll via anchor/scrollIntoView */
.category-title{ scroll-margin-top: 80px; }


.slr-sidehead{
  display:flex; align-items:center; justify-content:space-between;
}

.slr-collapse{
  border:0; background:transparent; cursor:pointer;
  width:36px; height:36px; display:grid; place-items:center;
  border-radius:8px; color:#0f172a;
}
.slr-collapse:hover{ background:#f3f4f6 }

/* Animasi ikon saat collapse */
#slr-sidebar .fa-chevron-down{ transition: transform .2s ease }
.slr-sidebar.is-collapsed .fa-chevron-down{ transform: rotate(-90deg) }

/* Sembunyikan nav saat collapsed */
.slr-sidebar.is-collapsed .slr-nav{ display:none }

/* Opsional: rapikan padding saat collapsed */
.slr-sidebar.is-collapsed .slr-sidehead{ border-bottom:0 }

