/* Language Support Section */
.language-support-section {
    position: relative;
    padding: 4rem 0;
    background: #0a0a0a;
    overflow: hidden;
}

.language-support-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.language-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    margin: 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.language-pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.language-pill img.tech-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.language-pill span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.languages-subtext {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.languages-bg-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 50% 50%, rgba(30, 144, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Container for all language pills */
.language-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Glass morphism effect */
.glass-morphism {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.glass-morphism::before {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px dotted rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    animation: borderRotate 20s linear infinite;
    pointer-events: none;
}

.glass-morphism:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px 0 rgba(0, 0, 0, 0.45),
        inset 0 0 25px rgba(255, 255, 255, 0.08);
}

@keyframes borderRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
