/* --- About Page Layout --- */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px 0; 
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 50px;
    align-items: center;
}

.profile-card-outer {
    background: rgba(10, 12, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.profile-card-inner {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-content-side p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.75;
    color: var(--text-muted);
}

.text-white {
    color: #ffffff;
    font-weight: 700;
}

.text-gradient {
    font-weight: 700;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-alt {
    font-weight: 700;
    background: linear-gradient(135deg, #00A8FB 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: rgba(10, 12, 22, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.08);
}

.stat-number {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .profile-card-outer { max-width: 380px; margin: 0 auto; padding: 25px; }
}

@media screen and (max-width: 600px) {
    .stats-row { grid-template-columns: 1fr; gap: 16px; }
}