.elementor-145 .elementor-element.elementor-element-27f3750{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:50px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-2a25c84 */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --red:       #455a93;
    --red-light: rgba(60,90,147,0.08);
    --red-mid:   rgba(60,90,147,0.15);
    --ink:       #1A1A2E;
    --page:      #F5F4F0;
    --surface:   #FFFFFF;
    --soft:      #F0EEE9;
    --border:    #E4E1D9;
    --text:      #1C1C28;
    --muted:     #7A7A8A;
    --blue:      #2B4BD7;
    --orange:    #E87A10;
     --font-head: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
  }

  

  .section {
    width: 100%;
    max-width: 1080px;
  }

  /* ── LOGO ── */
  .logo-wrap {
    margin-bottom: 52px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .logo-wrap img {
    height: 46px;
    width: auto;
    filter: invert(1) brightness(0.18) contrast(1.4);
  }
  .logo-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
  }
  .logo-sub {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ── HEADER ROW ── */
  .header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 44px;
    flex-wrap: wrap;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
  }
  .eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
  }
  h2.title {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 800;
    line-height: 45px;
    color: var(--text);
    max-width: 600px;
  }
  h2.title em {
    font-style: normal;
    color: var(--red);
  }
  .header-desc {
    max-width: 300px;
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    text-align: right;
    flex-shrink: 0;
  }

  /* ── GRID ── */
  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 20px;
  }

  /* ── CARD ── */
  .card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  }
  .card:hover {
    border-color: rgba(215,43,43,0.35);
    box-shadow: 0 12px 40px rgba(215,43,43,0.08), 0 2px 12px rgba(0,0,0,0.04);
    transform: translateY(-4px);
  }

  /* top accent bar */
  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 3px;
    background: var(--red);
    border-radius: 0 0 3px 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .card:hover::before { transform: scaleX(1); }

  /* decorative circle bg */
  .card::after {
    content: '';
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: var(--red-light);
    bottom: -50px; right: -50px;
    pointer-events: none;
    transition: transform 0.4s ease;
  }
  .card:hover::after { transform: scale(1.15); }

  /* ── ICON ── */
  .icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--soft);
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: background 0.3s, border-color 0.3s;
  }
  .card:hover .icon-wrap {
    background: var(--red-light);
    border-color: rgba(215,43,43,0.25);
  }
  .icon-wrap svg {
    width: 24px; height: 24px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s;
  }
  .card:hover .icon-wrap svg { transform: scale(1.12); }

  /* ── TEXT ── */
  .card-num {
    font-family: var(--font-head);
    font-size: 15px;
    
    letter-spacing: 0.18em;
    color: rgba(215,43,43,0.35);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
  }
  .card-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
  }
  .card-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 400;
    flex: 1;
    position: relative;
    z-index: 2;
  }

  /* ── PILL TAG ── */
  .card-pill {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--muted);
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 12px;
    width: fit-content;
    position: relative;
    z-index: 2;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
  }
  .card:hover .card-pill {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
  }
  .card-pill svg {
    width: 11px; height: 11px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ── BOTTOM STRIP ── */
  .bottom-strip {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 28px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    flex-wrap: wrap;
  }
  .strip-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .strip-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(215,43,43,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(215,43,43,0); }
  }
  .strip-text {
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
  }
  .strip-text strong { color: var(--text); font-weight: 500; }
  .strip-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 10px;
    background: var(--text);
    color: #fff;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
  }
  .strip-cta:hover { background: var(--red); transform: translateY(-1px); }
  .strip-cta svg {
    width: 14px; height: 14px;
    stroke: #fff; fill: none;
    stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  }

  /* ── SDHI BADGE ── */
  .sdhi-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--soft);
    border: 1px solid var(--border);
    color: var(--muted);
    white-space: nowrap;
  }
  .sdhi-badge .s { color: var(--blue); font-weight: 700; }
  .sdhi-badge .hi { color: var(--orange); font-weight: 700; }

  /* ── RESPONSIVE ── */
  @media (max-width: 920px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .header-desc { text-align: left; max-width: 100%; }
  }
  @media (max-width: 540px) {
    .grid { grid-template-columns: 1fr; }
    h2.title { font-size: 1.9rem; }
    .logo-wrap { margin-bottom: 36px; }
    .header-row { margin-bottom: 30px; }
  }/* End custom CSS */