/* ============================================
   TECHNOLOGIES SECTION
   ============================================ */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.tech-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-bounce);
    border: 2px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.tech-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-main);
}

.tech-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.tech-card h3 {
    font-size: 1.4rem;
    color: var(--primary-main);
    margin-bottom: 15px;
    font-weight: 800;
}

.tech-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tech-card {
        padding: 15px 10px;
    }

    .tech-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .tech-card h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .tech-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .tech-quote-btn {
        padding: 8px 5px;
        font-size: 0.7rem;
        margin-top: 10px;
    }
}