/* ================================
   ABOUT – Highlight Chips
================================ */

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

/* ================================
   ABOUT – Highlight Chips (Primary Color)
================================ */

.about-highlights {
  display: flex;              /* Desktop */
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

/* Mobile view */
@media (max-width: 768px) {
  .about-highlights {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 2 items per row */
    gap: 12px;
     width: 100%;
  }
  .m-pt{
    padding-top: 32px !important;
  }
}

.about-chip {
  padding: 10px 20px;
  border-radius: 30px;
  background: #000000;
  border: 1px solid #ffffff;
  color: #ffffff
  ;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  cursor: default;
}

/* Hover effect */
.about-chip:hover {
  background: #f74f36;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(247, 79, 54, 0.4);
}

/* Mobile optimization */
@media (max-width: 767px) {
  .about-chip {
    font-size: 13px;
    padding: 8px 16px;
  }
}



