#about {
    padding: 100px 20px;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Ambient glow */
.about-glass-card-glow {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.08) 0%, rgba(var(--accent-rgb), 0.02) 60%, transparent 80%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.about-glass-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

#about h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.about-glass-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #ccc;
    line-height: 1.8;
}

/* Founders Grid */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Founder Glass Card */
.founder-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(var(--accent-rgb), 0.02);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    border-color: rgba(var(--accent-rgb), 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.7),
        inset 0 1px 1px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(var(--accent-rgb), 0.06);
}

/* Avatar Styling */
.founder-avatar-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--accent-rgb), 0.8);
    box-shadow: inset 0 0 15px rgba(var(--accent-rgb), 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.founder-card:hover .founder-avatar {
    color: #ffffff;
    background: rgba(var(--accent-rgb), 0.1);
    border-color: rgba(var(--accent-rgb), 0.5);
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.25);
    transform: scale(1.05);
}

.avatar-svg {
    width: 40px;
    height: 40px;
}

.founder-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.harshith-img {
    object-position: 48% 28%;
    transform: scale(1.4);
}

.founder-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.founder-role {
    display: block;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.founder-bio {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

/* Social Links */
.founder-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.founder-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.founder-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.founder-social-link:hover {
    color: #ffffff;
    background: rgba(var(--accent-rgb), 0.15);
    border-color: rgba(var(--accent-rgb), 0.5);
    box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    #about {
        padding: 60px 15px;
    }
    #about h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .about-glass-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .founder-card {
        padding: 30px 20px;
    }
    .about-glass-card-glow {
        width: 300px;
        height: 300px;
    }
}
