/**
 * SWARCS ENGINEERING - ICONOGRAPHY MAPPING
 * (c) 2006-2026 Software Architectures and Solutions d.o.o. Novi Sad.
 * All Rights Reserved.
 *
 * CORE LOGIC:
 * - Semantic mapping of font glyphs to functional CSS classes.
 * - Hardware-accelerated smoothing for vector precision.
 * - Global prefix 'icon-' for rapid tactical implementation.
 */

/*
 * ICON CORE SPECIFICATION
 * Base styling for all vector-based font elements.
 */
[class^="icon-"], [class*=" icon-"] {
    display: inline-block;
    font-family: 'font-icons' !important;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*
 * GLYPH MAPPING - PARTNERSHIP
 * Core icons used in service pillars and main navigation.
 */
.icon-shield:before          { content: "\e7cf"; }
.icon-refresh:before         { content: "\e6da"; }
.icon-scalability:before     { content: "\e7c3"; }
.icon-eye:before             { content: "\e724"; }

/* * GLYPH MAPPING - GREENFIELD & ENGINEERING
 * Specialized icons for infrastructure and development stacks.
 */
.icon-tools:before           { content: "\e75f"; }
.icon-settings:before        { content: "\e739"; }
.icon-bag:before             { content: "\e762"; }

/* * GLYPH MAPPING - RESCUE OPS (VERIFIED) */
.icon-search:before          { content: "\e6be"; }
.icon-stabilization:before   { content: "\e785"; }
.icon-plan:before            { content: "\e7d0"; }
.icon-help:before            { content: "\e79b"; }
