/* ===== STATISTIC STYLE ===== */
.minimal-stats {
  display: flex;
  gap: 48px;
}

.minimal-stats .stat-number {
  font-size: 42px;
  font-weight: 600;
  color: #009879;
}

.minimal-stats .stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #777;
}


.image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}


.image-badge i {
  font-size: 28px;
  color: #009879;
}
.image-badge {
  position: absolute;
  z-index: 2;
  max-width: 240px;
}


.badge-bottom-left {
  bottom: 20px;
  left: 20px;
}


.image-badge i {
  font-size: 24px;
  color: #20c997;
}

/* Responsive badge for mobile */
@media (max-width: 600px) {
  .image-badge {
    padding: 8px 10px;
    max-width: 90vw;
    top: 8px;
    left: 8px;
    border-radius: 8px;
    gap: 6px;
  }
  .image-badge i {
    font-size: 18px;
  }
  .badge-bottom-left {
    bottom: 8px;
    left: 8px;
  }
}

/* ===== VALUES SECTION ===== */
.values-section {
  background: #fff;
}

.values-intro {
  font-size: 18px;
  color: #888;
}

.value-item h4 {
  font-size: 20px;

}

.value-item p {
  color: #666;
  line-height: 1.7;
}

.value-icon {
  font-size: 36px;
  color: #009879;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 48px;
}

.skill-item {
  text-align: center;
}

.skill-icon {
  font-size: 42px;
  color: #009879;
  margin-bottom: 16px;
}

.skill-name {
  font-size: 22px;
  margin-bottom: 12px;
}

.skill-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}



/* Responsive */
@media (max-width: 991px) {
  .skills-grid {
    display: grid;
    grid-column: auto;
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {

  #about h2 {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  #about .lead {
    font-size: 0.95rem;
  }

  .stats-row {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .skills.section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .skill-item {
    padding: 24px 20px;
  }

  .skill-name {
    font-size: 1.2rem;
  }

  .skill-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .badge-bottom-left {
    bottom: 12px;
    left: 12px;
  }
}


