/* Project Section Styles */
.project-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 30px -10px rgba(59, 130, 246, 0.2);
}

.project-card:hover::before {
    opacity: 1;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #E5E7EB;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: #3B82F6;
    transform: translateX(5px);
}

.project-description {
    color: #9CA3AF;
    margin-bottom: 1rem;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.project-card:hover .project-description {
    color: #E5E7EB;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.project-tag {
    padding: 0.35rem 0.75rem;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #3B82F6;
    transition: all 0.3s ease;
}

.project-card:hover .project-tag {
    background: rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px -5px rgba(59, 130, 246, 0.3);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3B82F6;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.project-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #9333EA);
    transition: width 0.3s ease;
}

.project-card:hover .project-link::after {
    width: 100%;
}

.project-link:hover {
    color: #2563EB;
    transform: translateX(5px);
}

.project-link-icon {
    transition: transform 0.3s ease;
}

.project-link:hover .project-link-icon {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .project-card {
        padding: 1.25rem;
    }

    .project-title {
        font-size: 1.1rem;
    }

    .project-description {
        font-size: 0.9rem;
    }

    .project-tag {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }
}