/* ── Project category card ── */
.proj-card {
  border-radius: 14px;
  padding: 28px 24px;
  width: 100%;
  /* fill flex col */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.proj-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.proj-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj-card-icon i {
  color: #fff;
  font-size: 21px;
}

.proj-card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.proj-card-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
  opacity: .88;
}

.proj-examples-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.proj-examples-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.proj-examples-list li:last-child {
  border-bottom: none;
}

.proj-examples-list li i {
  font-size: 15px;
  flex-shrink: 0;
}

/* ── Image — fills entire col, matches card height exactly ── */
.proj-img {
  width: 100%;
  height: 100%;
  /* stretch to col height set by card */
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* Border radius: only on the outer corners, flat on the inner edge */
.rounded-end-4 {
  border-radius: 0 16px 16px 0 !important;
}

.rounded-start-4 {
  border-radius: 16px 0 0 16px !important;
}

/* ── CTA ── */
.proj-cta-wrap {
  text-align: center;
  padding: 60px 20px;
}

.proj-cta-wrap h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
}

.proj-cta-wrap p {
  font-size: 15px;
  color: var(--default-color);
  max-width: 560px;
  margin: 0 auto 34px;
  opacity: .78;
  line-height: 1.7;
}

.proj-cta-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.proj-cta-fill {
  display: inline-block;
  background: #fb8600;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #fb8600;
  transition: background .25s, transform .2s;
}

.proj-cta-fill:hover {
  background: #e07800;
  border-color: #e07800;
  color: #fff;
  transform: translateY(-2px);
}

.proj-cta-outline {
  display: inline-block;
  background: transparent;
  color: #fb8600;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #fb8600;
  transition: background .25s, color .25s, transform .2s;
}

.proj-cta-outline:hover {
  background: #fb8600;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .proj-img {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .proj-card-title {
    font-size: 17px;
  }

  .proj-cta-wrap h2 {
    font-size: 24px;
  }

  .proj-cta-fill,
  .proj-cta-outline {
    padding: 12px 28px;
    font-size: 14px;
  }
}