/*!
 * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free';
  --fa-style-family-brands: 'Font Awesome 6 Brands';
  --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands';
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.woff2") format("woff2");
}

.fas,
.fa-solid {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.fab,
.fa-brands {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
}

/* Essential Icons */
.fa-chart-line:before { content: "\f201"; }
.fa-database:before { content: "\f1c0"; }
.fa-chart-bar:before { content: "\f080"; }
.fa-robot:before { content: "\f544"; }
.fa-cogs:before { content: "\f085"; }
.fa-store:before { content: "\f54e"; }
.fa-bullhorn:before { content: "\f0a1"; }
.fa-comments:before { content: "\f086"; }
.fa-arrow-up:before { content: "\f062"; }
.fa-sync-alt:before { content: "\f2f1"; }
.fa-wifi-slash:before { content: "\f6ac"; }
.fa-home:before { content: "\f015"; }

/* Contact & Communication Icons */
.fa-envelope:before { content: "\f0e0"; }
.fa-phone:before { content: "\f095"; }
.fa-map-marker-alt:before { content: "\f3c5"; }
.fa-clock:before { content: "\f017"; }

/* Social Media Icons */
.fa-facebook-f:before { content: "\f39e"; }
.fa-twitter:before { content: "\f099"; }
.fa-linkedin-in:before { content: "\f0e1"; }
.fa-github:before { content: "\f09b"; }
.fa-instagram:before { content: "\f16d"; }
.fa-youtube:before { content: "\f167"; }

/* Business Icons */
.fa-users:before { content: "\f0c0"; }
.fa-briefcase:before { content: "\f0b1"; }
.fa-handshake:before { content: "\f2b5"; }
.fa-trophy:before { content: "\f091"; }
.fa-star:before { content: "\f005"; }
.fa-check:before { content: "\f00c"; }
.fa-check-circle:before { content: "\f058"; }
.fa-times:before { content: "\f00d"; }
.fa-plus:before { content: "\f067"; }
.fa-minus:before { content: "\f068"; }

/* Navigation Icons */
.fa-bars:before { content: "\f0c9"; }
.fa-angle-right:before { content: "\f105"; }
.fa-angle-left:before { content: "\f104"; }
.fa-angle-up:before { content: "\f106"; }
.fa-angle-down:before { content: "\f107"; }

/* Technology Icons */
.fa-laptop:before { content: "\f109"; }
.fa-mobile-alt:before { content: "\f3cd"; }
.fa-desktop:before { content: "\f108"; }
.fa-server:before { content: "\f233"; }
.fa-cloud:before { content: "\f0c2"; }
.fa-code:before { content: "\f121"; }

/* Training & Education Icons */
.fa-graduation-cap:before { content: "\f19d"; }
.fa-chalkboard-teacher:before { content: "\f51c"; }
.fa-book:before { content: "\f02d"; }
.fa-tools:before { content: "\f7d9"; }

/* E-commerce Icons */
.fa-shopping-cart:before { content: "\f07a"; }
.fa-credit-card:before { content: "\f09d"; }
.fa-money-bill:before { content: "\f0d6"; }

/* Healthcare Icons */
.fa-heartbeat:before { content: "\f21e"; }
.fa-pills:before { content: "\f484"; }
.fa-hospital:before { content: "\f0f8"; }

/* Animation Classes */
.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} 