/* ============================================
   About Section Styles - Simplified
   ============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: start;
}

/* Left Side - Image */
.about-left {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: var(--primary-color);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-icon {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Right Side - Content */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.about-bio p {
    margin-bottom: 0.75rem;
}

/* Stats - Hidden */
.about-stats {
    display: none !important;
}

.stat-item {
    display: none !important;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(95, 216, 107, 0.1), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--glow-sm);
}

.stat-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #000;
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    box-shadow: var(--glow-sm);
    font-weight: 900;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Education */
.about-education h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-education h3 i {
    color: var(--primary-color);
}

#education-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.education-item {
    padding: 1.25rem;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.education-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
    opacity: 0.1;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.education-item:hover::before {
    width: 8px;
}

.education-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg), var(--glow-sm);
    border-left-color: var(--primary-light);
}

.education-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.education-degree {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.education-field {
    font-size: 0.9375rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.education-institution {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.education-year {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.education-cgpa {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.25rem;
}

.education-cgpa span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        gap: 3rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-wrapper {
        max-width: 280px;
    }

    .about-icon {
        font-size: 7rem;
    }

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

    .education-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .education-year {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .about-image-wrapper {
        max-width: 240px;
    }

    .about-icon {
        font-size: 6rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}
