.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 120px 10%;
}

.project-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #0f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(0,255,0,0.4);
}

.project-card img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    cursor: pointer;
    margin-bottom: 15px;
}

.project-card h3 {
    color: #0f0;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.project-card a {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #0f0;
    border-radius: 6px;
    color: #0f0;
    text-decoration: none;
    transition: 0.3s;
}

.project-card a:hover {
    background: #0f0;
    color: #000;
}
