/* About Section Styles */
.about-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: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.about-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;
}

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

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

.about-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-intro {
    flex-grow: 1;
}

.about-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #E5E7EB, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.about-card:hover .about-name {
    background: linear-gradient(90deg, #60A5FA, #9333EA);
    -webkit-background-clip: text;
    background-clip: text;
}

.about-role {
    font-size: 1.1rem;
    color: #9CA3AF;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.about-card:hover .about-role {
    color: #60A5FA;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.about-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;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text {
    color: #9CA3AF;
    line-height: 1.7;
    transition: all 0.3s ease;
    white-space: pre-line;
}

.about-card:hover .about-text {
    color: #E5E7EB;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.2);
}

.highlight-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon-wrapper {
    background: rgba(59, 130, 246, 0.25);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.highlight-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #3B82F6;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    color: #60A5FA;
    transform: scale(1.1);
}

.highlight-content {
    flex-grow: 1;
}

.highlight-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #E5E7EB;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-title {
    color: #3B82F6;
}

.highlight-text {
    color: #9CA3AF;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-text {
    color: #E5E7EB;
}

@media (max-width: 768px) {
    .about-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .about-name {
        font-size: 1.5rem;
    }

    .about-role {
        font-size: 1rem;
    }

    .about-tags {
        justify-content: center;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        padding: 1rem;
    }
}