/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}



/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: var(--heading-font);
  font-size: 14px;
}



/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}



/*--------------------------------------------------------------
# Custom Education Timeline Section
--------------------------------------------------------------*/
.custom-edu-timeline {
  position: relative;
  padding: 20px 0;
}

/* Garis Tengah - Menggunakan warna accent yang transparan murni */
.custom-edu-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.edu-tl-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

/* Pengaturan Sisi Kiri & Kanan */
.edu-tl-item.edu-tl-left {
  left: 0;
  text-align: right;
}

.edu-tl-item.edu-tl-right {
  left: 50%;
  text-align: left;
}

/* Wadah Kartu Konten - Menggunakan variabel warna permukaan template */
.edu-tl-content {
  background: var(--surface-color);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* Efek Hover yang Halus */
.edu-tl-item:hover .edu-tl-content {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Badge Tahun - Selaras dengan Accent Color */
.edu-tl-year {
  display: inline-block;
  padding: 5px 14px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 20px;
  margin-bottom: 12px;
}

.edu-tl-content p {
  margin: 0;
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* Icon Bulatan di Tengah Garis */
.edu-tl-icon {
  position: absolute;
  top: 24px;
  width: 40px;
  height: 40px;
  background: var(--surface-color);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--accent-color);
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.edu-tl-item.edu-tl-left .edu-tl-icon {
  right: -20px;
}

.edu-tl-item.edu-tl-right .edu-tl-icon {
  left: -20px;
}

/* Efek Hover Ikon */
.edu-tl-item:hover .edu-tl-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

