/* ===============================
   GLOBAL CARD COMPONENT
================================ */

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: all .3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 12px;
  color: #166534; /* أخضر الموقع */
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #14532d;
  margin-bottom: 8px;
}

.card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.card-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #16a34a;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}
