/*
Theme Name: Cloudsware
Theme URI: https://cloudsware.net
Author: Cloudsware
Author URI: https://cloudsware.net
Description: Official Cloudsware Enterprise IT Solutions WordPress theme. Dark, modern design built with Tailwind CSS.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cloudsware
Tags: dark, business, technology, it-solutions
*/

/* ─── Material Symbols ──────────────────────────────────────────────────── */
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* ─── Utility Classes ───────────────────────────────────────────────────── */
.diagonal-clip {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.glass-panel {
  background: rgba(43, 54, 68, 0.6);
  backdrop-filter: blur(20px);
}

/* ─── Circuit Board Animation ───────────────────────────────────────────── */
@keyframes circuitPulse {
  0%   { stroke-dashoffset: 1000; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

.circuit-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: circuitPulse 6s linear infinite;
}

.circuit-path:nth-child(2n) { animation-delay: 1s; }
.circuit-path:nth-child(3n) { animation-delay: 2s; }
.circuit-path:nth-child(4n) { animation-delay: 3s; }

@keyframes centralGlow {
  0%, 100% { filter: drop-shadow(0 0 5px #acfde3) scale(1); }
  50%       { filter: drop-shadow(0 0 25px #acfde3) scale(1.1); }
}

.central-node {
  animation: centralGlow 3s ease-in-out infinite;
}

@keyframes tech-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.4; }
  50%       { transform: scale(1.05); opacity: 0.5; }
}

.animate-tech-pulse {
  animation: tech-pulse 15s ease-in-out infinite;
}
