/* Tech Stack Glassmorphism */
.tech-glass {
    padding: 6rem 2rem;
}

.tech-header-glass {
    text-align: center;
    margin-bottom: 4rem;
}

.tech-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.tech-title-glass {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.tech-subtitle-glass {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

.tech-grid-glass {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.tech-item-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
}

.tech-item-glass i {
    font-size: 3rem;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-item-glass span {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

@media (max-width: 768px) {
    .tech-glass {
        padding: 3rem 1rem;
    }
    
    .tech-grid-glass {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}
