.image-frame {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(109, 229, 205, 0.316);
    background: radial-gradient(circle at top left, rgba(0, 255, 255, 0.284), transparent 70%);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 2;
}

.image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 255, 150, 0.15), transparent 70%);
    mix-blend-mode: screen;
    z-index: 1;
}

.light-streak {
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(12, 122, 86, 0.3), transparent);
    transform: skewX(-20deg);
    animation: moveLight 4s linear infinite;
    z-index: 3;
}

@keyframes moveLight 
{
    0% { 
        left: -60%; 
    }
    100% { 
        left: 120%; 
    }
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    z-index: 0;
    position: relative;
}

@media (max-width: 640px) {
    .image-frame {
        width: 310px;
        height: 310px;
    }
}

@media (max-width: 640px) {
    .skills-desc {
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center;
    }
}
