/* ==========================================================================
   VICGAM TECHNOLOGY STYLES
   ========================================================================== */

/* Tech Color Scheme */
:root {
    --tech-primary: #00f0ff;
    --tech-primary-dark: #00c4d1;
    --tech-primary-light: #00f8ff;
    --tech-secondary: #7928ca;
    --tech-secondary-dark: #5a1e9a;
    --tech-secondary-light: #9a3ffa;
    --tech-accent: #00a0e9;
}

/* Tech Service Card Enhancements */
.tech-service {
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.tech-service:hover {
    border-color: var(--tech-primary);
}

.tech-service .service-features li {
    color: var(--primary-color);
}

/* Tech Gradient Text */
.tech-gradient-text {
    background: linear-gradient(90deg, var(--tech-primary) 0%, var(--tech-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tech Buttons */
.btn-tech {
    background: linear-gradient(90deg, var(--tech-primary) 0%, var(--tech-accent) 100%);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--tech-primary-dark) 0%, var(--tech-secondary-dark) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.btn-tech:hover::before {
    opacity: 1;
}

/* Tech Section Headers */
.vicgam-section .section-title::after {
    background: var(--tech-primary);
}

/* Tech Feature Box */
.tech-feature-box {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: all var(--transition-normal);
}

.tech-feature-box:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
}

.tech-feature-box h4 {
    color: var(--tech-primary);
}

/* Tech Process Steps */
.tech-process {
    position: relative;
    padding-left: var(--space-lg);
}

.tech-process::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--tech-primary) 0%, var(--tech-secondary) 100%);
}

.tech-process-step {
    position: relative;
    padding-bottom: var(--space-xl);
}

.tech-process-step:last-child {
    padding-bottom: 0;
}

.tech-process-step::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--tech-primary);
    border: 3px solid var(--primary-color);
}

.tech-process-step h4 {
    color: var(--tech-primary);
    margin-bottom: var(--space-xs);
}

/* Tech Tooltip */
.tech-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dashed var(--tech-primary);
    cursor: help;
}

.tech-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--small-text);
    white-space: nowrap;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

/* Tech Animation */
@keyframes techPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 240, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

.tech-pulse {
    animation: techPulse 2s infinite;
    border-radius: var(--radius-rounded);
}