/* ===============================
   ABOUT PREVIEW SECTION
   =============================== */

.about-section {
    padding: 120px 30px; /* big breathing space */
    margin: 20px 100px;
    border-radius: 24px;

    /* brand purple glow background */
    background: radial-gradient(
        circle at center,
        rgba(46, 0, 93, 0.9) 0%,
        rgba(46, 0, 93, 0.7) 50%,
        rgba(0,0,0,0) 100%
    );

    backdrop-filter: blur(6px); /* glass feel */
    color: white;
}

.about-container {
    max-width: 1200px;
    margin: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* text larger */
    align-items: center;
    gap: 40px;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-text p {
    line-height: 1.8;
    color: #dcdcdc;
    font-size: 1.05rem;
}

.about-image {
    display: flex;
    justify-content: flex-end;
}

.about-image img {
    height: auto;
    width: auto;

    border-radius: 24px;

    /* soft glow */
    box-shadow:
        0 0 40px rgba(138, 43, 226, 0.3);

    transition: transform .35s ease;
}

/* subtle hover movement */
.about-image img:hover {
    transform: scale(1.05);
}
