/* Modern Technology Grid Styles for Service Pages */
.voxa-tech-section-service {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0118 0%, #16051e 100%);
    position: relative;
}

.voxa-tech-grid-service {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.voxa-tech-card-service {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, rgba(10, 1, 24, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-height: 150px;
}

.voxa-tech-card-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #9333ea, #c084fc, #9333ea);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.voxa-tech-card-service:hover {
    transform: translateY(-8px);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.25);
}

.voxa-tech-card-service:hover::before {
    opacity: 1;
}

.voxa-tech-icon-service {
    font-size: 48px;
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.voxa-tech-card-service:hover .voxa-tech-icon-service {
    transform: scale(1.15) rotate(5deg);
}

.voxa-tech-name-service {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

@media (max-width: 1199px) {
    .voxa-tech-grid-service {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .voxa-tech-grid-service {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .voxa-tech-grid-service {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .voxa-tech-card-service {
        padding: 25px 15px;
        min-height: 130px;
    }
    
    .voxa-tech-icon-service {
        font-size: 38px;
    }
}
