/* ═══════════════════════════════════════════════════════════════════════════════
   DIGITAL.CSS — Digital Solutions Page Specific Styles
   Extracted from digital.php inline <style> blocks
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── DIGITAL HERO ──────────────────────────────────────────────────────────── */
.hero-digital {
    background: linear-gradient(135deg, #0a0a0c 0%, #0d1520 50%, #0a0a0c 100%);
}

.code-rain {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 240, 255, 0.03) 2px, rgba(0, 240, 255, 0.03) 4px);
    animation: codeScroll 20s linear infinite;
    opacity: 0.3;
}

.floating-tech {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tech-float {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan-subtle);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: var(--radius-lg);
    color: var(--primary-cyan);
    font-size: 1.75rem;
    animation: techFloat 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}


/* ─── TECH STACK ────────────────────────────────────────────────────────────── */
.tech-stack-mini {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tech-badge-mini {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--cyan-subtle);
    border: 1px solid var(--cyan-border);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-base);
}

.tech-badge-mini:hover {
    background: rgba(0, 188, 212, 0.2);
    transform: translateY(-2px);
}

.tech-badge-mini i {
    font-size: 0.9rem;
    color: var(--primary-cyan);
}


/* ─── TECH SHOWCASE ─────────────────────────────────────────────────────────── */
.tech-showcase {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.tech-category h6 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-badge {
    padding: 0.75rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.tech-badge:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--cyan-border);
    transform: translateY(-3px);
    box-shadow: var(--shadow-cyan);
}

.tech-badge i {
    font-size: 1.1rem;
}


/* ─── DIGITAL VISUAL GLOW ───────────────────────────────────────────────────── */
.visual-glow-digital {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    animation: glowPulse 4s ease-in-out infinite;
}


/* ─── SOLUTION SECTIONS ─────────────────────────────────────────────────────── */
.solution-section {
    padding: 3rem 0;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   5-STAGE RESPONSIVE — DIGITAL PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 575.98px) {
    .tech-float {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .solution-section { padding: 1.5rem 0; }
    .tech-badge-mini { padding: 5px 10px; font-size: 0.7rem; }
}

@media (min-width: 768px) {
    .solution-section { padding: 2.5rem 0; }
}

@media (min-width: 992px) {
    .solution-section { padding: 3rem 0; }
}
