.namaa-features-text-and-cards {
  position: relative;
  overflow: hidden;
  background-color: var(--white);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.namaa-features-text-and-cards__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 24px;
}
.namaa-features-text-and-cards__label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
}
.namaa-features-text-and-cards__heading {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-family-base);
  line-height: 1.3;
  max-width: 720px;
  color: var(--dark);
}
.namaa-features-text-and-cards__description {
  font-size: 15px;
  line-height: 1.9;
  max-width: 560px;
  margin-top: 32px;
}
.namaa-features-text-and-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.namaa-features-text-and-cards__card {
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  transition: all 350ms ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.dark-mode .namaa-features-text-and-cards__card {
  background-color: var(--header-bg);
  border-color: var(--gray-200);
}
.namaa-features-text-and-cards__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}
.namaa-features-text-and-cards__card:hover .namaa-features-text-and-cards__card-icon-circle {
  transform: rotate(-8deg) scale(1.1);
}
.namaa-features-text-and-cards__card-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(1, 112, 255, 0.1);
  transition: transform 350ms ease;
  flex-shrink: 0;
}
.dark-mode .namaa-features-text-and-cards__card-icon-circle {
  background-color: rgba(1, 112, 255, 0.2);
}
.namaa-features-text-and-cards__card-icon-circle .icons {
  width: 28px;
  height: 28px;
}
.namaa-features-text-and-cards__card-icon-circle--primary {
  background-color: rgba(1, 112, 255, 0.1);
  color: var(--primary);
}
.dark-mode .namaa-features-text-and-cards__card-icon-circle--primary {
  background-color: rgba(1, 112, 255, 0.2);
}
.namaa-features-text-and-cards__card-icon-circle--secondary {
  background-color: rgba(14, 33, 69, 0.1);
  color: var(--dark);
}
.dark-mode .namaa-features-text-and-cards__card-icon-circle--secondary {
  background-color: rgba(14, 33, 69, 0.2);
}
.namaa-features-text-and-cards__card-icon-circle--accent {
  background-color: rgba(255, 112, 67, 0.1);
  color: var(--accent);
}
.dark-mode .namaa-features-text-and-cards__card-icon-circle--accent {
  background-color: rgba(255, 112, 67, 0.2);
}
.namaa-features-text-and-cards__card-icon-circle--success {
  background-color: rgba(67, 212, 119, 0.1);
  color: var(--success);
}
.dark-mode .namaa-features-text-and-cards__card-icon-circle--success {
  background-color: rgba(67, 212, 119, 0.2);
}
.namaa-features-text-and-cards__card-icon-circle--warning {
  background-color: rgba(255, 162, 0, 0.1);
  color: var(--warning);
}
.dark-mode .namaa-features-text-and-cards__card-icon-circle--warning {
  background-color: rgba(255, 162, 0, 0.2);
}
.namaa-features-text-and-cards__card-icon-circle--info {
  background-color: rgba(126, 178, 255, 0.1);
  color: var(--info);
}
.dark-mode .namaa-features-text-and-cards__card-icon-circle--info {
  background-color: rgba(126, 178, 255, 0.2);
}
.namaa-features-text-and-cards__card-icon-circle--danger {
  background-color: rgba(246, 60, 60, 0.1);
  color: var(--danger);
}
.dark-mode .namaa-features-text-and-cards__card-icon-circle--danger {
  background-color: rgba(246, 60, 60, 0.2);
}
.namaa-features-text-and-cards__card-image {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
}
.namaa-features-text-and-cards__card-title {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-family-base);
  line-height: 1.4;
  margin-top: 12px;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.namaa-features-text-and-cards__card-description {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 8px;
  color: var(--gray-500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.namaa-features-text-and-cards__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--primary);
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 350ms ease;
}
.namaa-features-text-and-cards__card:hover .namaa-features-text-and-cards__accent-bar {
  opacity: 1;
}
@media (max-width: 991px) {
  .namaa-features-text-and-cards__container {
    padding: 60px 24px;
  }
  .namaa-features-text-and-cards__heading {
    font-size: 22px;
  }
  .namaa-features-text-and-cards__description {
    font-size: 14px;
    max-width: 100%;
  }
  .namaa-features-text-and-cards__grid {
    grid-template-columns: 1fr 1fr;
  }
  .namaa-features-text-and-cards__right {
    margin-bottom: 48px;
  }
  .namaa-features-text-and-cards__card-title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .namaa-features-text-and-cards__container {
    padding: 40px 16px;
  }
  .namaa-features-text-and-cards__grid {
    grid-template-columns: 1fr;
  }
  .namaa-features-text-and-cards__card {
    padding: 16px;
  }
}
