/* ===== ABOUT HERO ===== */
.about-hero {
    min-height: 100vh;
    padding: 4rem 0 4rem;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

/* ===== LEFT ===== */
.about-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

.about-img-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
}

.about-img-glow {
    /* position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite; */
    display: none;
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--violet-light);
    backdrop-filter: blur(10px);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--glass-border);
}

.quick-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: var(--transition);
}

.info-item:hover {
    border-color: rgba(124, 58, 237, 0.3);
    color: var(--text-primary);
}

.info-item i {
    color: var(--violet-light);
    width: 16px;
    text-align: center;
}

.download-btn {
    width: 100%;
    justify-content: center;
}

/* ===== RIGHT ===== */
.about-right {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
}

.about-right .section-tag,
.about-right .section-title,
.about-right .about-bio {
    align-self: flex-start;
}

.section-tag {
    /* display: inline-block; */
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--violet-light);
    margin-bottom: 1rem;
}
.section-tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--violet-light);
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-bio {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.about-socials {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.download-btn {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: var(--gradient-violet);
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    font-family: var(--font-main);
    margin-top: 0.5rem;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
    color: white;
}

.empty-tab {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 1rem 0;
}

.award-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 0.4rem;
}

/* ===== TABS ===== */
.about-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.4rem;
    border-radius: 12px;
    width: fit-content;
    align-self: center;
}

.tab-btn {
    padding: 0.6rem 1.4rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--gradient-violet);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.tab-btn:hover:not(.active) {
    color: var(--violet-light);
    background: rgba(124, 58, 237, 0.08);
}

.tab-content {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SKILLS ===== */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.skill-category {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.2rem;
    transition: var(--transition);
}

.skill-category:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

.skill-category h4 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--glass-border);
}

.skill-category h4 i {
    color: var(--violet-light);
    font-size: 0.85rem;
}

/* ===== SKILL ITEMS ===== */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem 0.4rem 0.6rem;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 10px;
    transition: var(--transition);
}

.skill-item:hover {
    background: rgba(124, 58, 237, 0.14);
    border-color: var(--violet-main);
    transform: translateY(-2px);
}

.skill-devicon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.skill-devicon-placeholder {
    font-size: 1rem;
    color: var(--violet-light);
    flex-shrink: 0;
}

.skill-name {
    font-size: 0.83rem;
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
}

.skill-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

.skill-icon-placeholder {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet-light);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.skill-tag {
    padding: 0.35rem 0.85rem;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 8px;
    font-size: 0.82rem;
    color: var(--violet-light);
    transition: var(--transition);
}

.skill-tag:hover {
    background: rgba(124, 58, 237, 0.18);
    border-color: var(--violet-main);
    transform: translateY(-2px);
}

/* ===== TIMELINE ===== */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 20px;
    bottom: 0;
    width: 1px;
    background: var(--glass-border);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--gradient-violet);
    border: 2px solid var(--bg-primary);
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

.timeline-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.timeline-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.timeline-year {
    font-size: 0.8rem;
    color: var(--violet-light);
    font-weight: 500;
    display: block;
    margin-bottom: 0.4rem;
}

.timeline-badge {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--violet-light);
}

/* ===== AWARDS ===== */
.awards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.award-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: var(--transition);
}

.award-item:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
    transform: translateX(5px);
}

.award-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.award-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.award-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-left {
        position: static;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-tabs {
        width: 100%;
    }

    .tab-btn {
        flex: 1;
        text-align: center;
        padding: 0.6rem 0.8rem;
    }
}