/* ======================================================
   ABOUT SECTION
====================================================== */

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Stats */

.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.stat-box {
    flex: 1;
    background: linear-gradient(180deg, #0b1f4b, #07122f);
    border: 1px solid rgba(26,163,255,0.3);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.stat-box h4 {
    font-size: 26px;
    color: var(--blue-light);
}

.stat-box span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Right Visual */

.about-visual {
    position: relative;
    text-align: center;
}

.about-visual img {
    width: 220px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 25px rgba(26,163,255,0.6));
}

.about-glow-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(26,163,255,0.35), transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    z-index: 1;
}

/* About Responsive */
@media(max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}
