/* About Section Styles */
.about-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Layout for about section with profile photo */
.about-inner {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.profile-photo {
    width: 140px;
    height: 140px;
    border-radius: 18px; /* slightly rounded rectangle - change to 50% for circle */
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 24px rgba(2,6,23,0.45);
    flex-shrink: 0;
}

.tech-stack-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-item {
    background: var(--tech-item-bg);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: default;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
    color: white;
}

/* Floating circle adjustment for section title */
.section-title .floating-circle {
    margin-left: 15px;
    vertical-align: middle;
    border-color: rgba(236, 72, 153, 0.5);
    animation-duration: 4s;
}

.section-title .floating-circle .dot {
    background-color: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-card {
        padding: 2rem;
    }

    .about-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-photo { margin-bottom: 1rem; }

    .tech-stack-grid {
        justify-content: flex-start;
    }

    .tech-item {
        flex: 1 1 auto;
        text-align: center;
    }
}