.elementor-16907 .elementor-element.elementor-element-26ea628{--display:flex;}/* Start custom CSS for html, class: .elementor-element-0a49358 */:root {
      --heading:   rgb(27, 50, 95);
      --green:     #83b151;
      --orange:    #e05f2b;
      --body-text: rgb(134, 134, 134);
      --border:    #e8ecf2;
      --white:     #ffffff;
    }

    body {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      color: var(--body-text);
      background: var(--white);
    }

    /* ─── SECTION ─── */
    .section {
      padding: 80px 24px;
      background: var(--white);
    }

    .inner {
      max-width: 1160px;
      margin: 0 auto;
    }

    /* ─── LABEL ─── */
    .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green);
      text-align: center;
      margin-bottom: 14px;
    }

    /* ─── HEADING ─── */
    .section-heading {
      font-family: 'Almarai', sans-serif;
      font-size: 37px;
      font-weight: 700;
      color: var(--heading);
      text-align: center;
      line-height: 53px;
      margin-bottom: 14px;
    }

    /* ─── SUBTEXT ─── */
    .section-sub {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 24px;
      color: var(--body-text);
      text-align: center;
      max-width: 620px;
      margin: 0 auto 56px;
    }

    /* ─── GRID ─── */
    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 960px) { .grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 580px) { .grid { grid-template-columns: 1fr; } }

    /* ─── CARD ─── */
    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .card:hover {
      box-shadow: 0 6px 24px rgba(27, 50, 95, 0.08);
      transform: translateY(-3px);
    }

    /* ─── ICON — green on white ─── */
    .card-icon {
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .card-icon svg {
      width: 32px;
      height: 32px;
      stroke: var(--green);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ─── CARD TITLE ─── */
    .card-title {
      font-family: 'Almarai', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--heading);
      line-height: 1.3;
    }

    /* ─── CARD BODY ─── */
    .card-body {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      color: var(--body-text);
      flex: 1;
    }

    /* ─── CARD LINK ─── */
    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--green);
      text-decoration: none;
      margin-top: 4px;
      transition: color 0.18s;
    }
    .card-link:hover { color: var(--heading); }
    .card-link svg {
      width: 13px; height: 13px;
      stroke: currentColor; fill: none;
      stroke-width: 2.2;
      transition: transform 0.18s;
    }
    .card-link:hover svg { transform: translateX(3px); }

    /* ─── CTA BAR ─── */
    .cta-bar {
      margin-top: 52px;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 36px 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .cta-bar h3 {
      font-family: 'Almarai', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--heading);
      margin-bottom: 6px;
    }
    .cta-bar p {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 24px;
      color: var(--body-text);
      max-width: 500px;
    }
    .cta-btn {
      display: inline-block;
      background: var(--orange);
      color: #ffffff !important;
      -webkit-text-fill-color: #ffffff;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 600;
      padding: 14px 30px;
      border-radius: 8px;
      text-decoration: none !important;
      white-space: nowrap;
      transition: background 0.2s, transform 0.2s;
    }
    .cta-btn:visited { color: #ffffff !important; -webkit-text-fill-color: #ffffff; }
    .cta-btn:hover { background: #c84e1e; transform: translateY(-2px); color: #ffffff !important; }

    @media (max-width: 700px) {
      .section-heading { font-size: 28px; line-height: 38px; }
      .cta-bar { padding: 28px 22px; }
    }/* End custom CSS */