/* =====================================================
   HERO (Premium – rasmsiz)
===================================================== */
.plain-hero {
  background: linear-gradient(135deg, #0b2c3d, #14506b);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.plain-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: .3px;
}

.plain-hero p {
  opacity: .9;
  font-size: 18px;
  max-width: 800px;
  margin: auto;
}


/* =====================================================
   PAGE STRUCTURE
===================================================== */
.malaka-section {
  padding: 60px 0;
  background: #f4f7fb;
}

.malaka-wrapper {
  display: flex;
  gap: 32px;
  max-width: 1250px;
  margin: auto;
  padding: 0 15px;
}


/* =====================================================
   LEFT MENU (SIDEBAR)
===================================================== */
.malaka-menu {
  width: 290px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  position: sticky;
  top: 120px;
}

.menu-item {
  background: #f3f6fa;
  border-radius: 10px;
  padding: 15px 18px;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 700;               /* 🔥 BOLD */
  color: #1f2d3d;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: .25s ease;
}

.menu-item i {
  font-size: 18px;
  color: #14506b;
}

.menu-item:hover {
  background: #e7f0f7;
}

.menu-item.active {
  background: #0b2c3d;
  color: #fff;
}

.menu-item.active i {
  color: #fff;
}


/* =====================================================
   RIGHT CONTENT AREA
===================================================== */
.malaka-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-box {
  display: none;
  background: #fff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  animation: fadeUp .35s ease;
}

.content-box.show {
  display: block;
}

.content-box h2 {
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 800;
  color: #0b2c3d;
}

.content-box h3 {
  font-size: 18px;
  margin: 22px 0 10px;
  font-weight: 700;
  color: #14506b;
}

.content-box p {
  font-size: 15.8px;
  line-height: 1.7;
  color: #333;
}


/* =====================================================
   DOCUMENT LIST
===================================================== */
.doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doc-list li {
  margin-bottom: 10px;
  font-size: 15.5px;
  font-weight: 700;             /* 🔥 */
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}

.doc-list i {
  color: #14506b;
  font-size: 16px;
}


/* =====================================================
   COURSES PDF
===================================================== */
.course-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.course-item {
  padding: 14px 16px;
  border-radius: 10px;
  background: #eef4f7;
  color: #0b2c3d;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 700;             /* 🔥 */
  text-decoration: none;
  transition: .25s;
}

.course-item i {
  color: #c30000;
  font-size: 18px;
}

.course-item:hover {
  background: #ddebf2;
}


/* =====================================================
   TABLE
===================================================== */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

thead {
  background: #0b2c3d;
  color: #fff;
}

thead th {
  padding: 13px;
  font-weight: 700;
  text-align: left;
}

tbody td {
  padding: 12px;
  border-bottom: 1px solid #e3e6ee;
}

tbody tr:hover {
  background: #f1f6fb;
}


/* =====================================================
   ANIMATION
===================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =====================================================
   MOBILE FIX
===================================================== */
@media(max-width: 900px) {
  .malaka-wrapper {
    flex-direction: column;
  }

  .malaka-menu {
    width: 100%;
    position: relative;
    top: 0;
  }

  .content-box {
    padding: 24px;
  }

  .plain-hero h1 {
    font-size: 34px;
  }
}
