.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* 🎯 ساختار کلی کارت */
.fa-info-card {
  --bg: #0e205b;         /* 💜 بنفش پس‌زمینه کارت */
  --fg: #ffffff;         /* متن سفید */
  --muted: #dfe6ff;      /* رنگ ملایم‌تر برای توضیحات */
  --accent: #FFD23F;     /* 🟡 رنگ زرد دایره آیکن */
  --radius: 12px;        /* انحنای کم */
  
  display: grid;
  grid-template-columns: auto 1fr; /* آیکن | عنوان */
  grid-auto-rows: auto;
  column-gap: 12px;
  row-gap: 12px;
  align-items: center;

  background: var(--bg);
  color: var(--fg);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .10);
  font-family: IRANSans, Vazirmatn, Segoe UI, Tahoma, sans-serif;
  text-align: right;
  direction: rtl;
}

/* 🟡 آیکن */
.fa-info-card .fa-icon {
  position: static !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
  color: #2f2877; /* هماهنگ با بک کارت */
  overflow: hidden;
}

.fa-info-card .fa-icon img,
.fa-info-card .fa-icon svg {
  width: 60%;
  height: 60%;
  display: block;
  object-fit: contain;
}

/* 🏷️ عنوان */
.fa-info-card h3 {
  grid-column: 2;
  margin: 0;
  color: #ffffff;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.4;
  white-space: normal;
}

/* 📝 متن توضیحی */
.fa-info-card p {
  grid-column: 1 / -1;   /* زیر آیکن و عنوان */
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.9;
  text-align: justify;
  direction: rtl;
}

/* 📱 واکنش‌گرا برای موبایل */
@media (max-width: 480px) {
  .fa-info-card {
    grid-template-columns: 1fr;  /* آیکن بالا، متن پایین */
    text-align: right;
    row-gap: 10px;
    padding: 22px 18px;
  }

  .fa-info-card .fa-icon {
    margin-bottom: 8px;
    width: 52px;
    height: 52px;
  }

  .fa-info-card h3 {
    font-size: 20px;
    text-align: right;
  }

  .fa-info-card p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* 🧱 اگر چند کارت کنار هم داری (چهار‌تایی) */
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  margin-top: 20px;
}/* End custom CSS */