/* =========================
   ABOUT SECTION
========================= */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1200px;
    margin: 20px auto;
    padding: 20px 30px;

    gap: 60px;
}

.about-left {
    justify-content: center;
}

.about-left img {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.15);
}

.about-right {
    margin-left: 0px;
}

/* INTRO */
.intro {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #cbd5f5;
}

/* INFO BLOCK */
.info-block {
    margin-top: 25px;
    padding-left: 15px;
    border-left: 2px solid rgba(34, 197, 94, 0.4);
}

.info-block h2 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #22c55e;
}

.info-block p {
    line-height: 1.6;
    color: #94a3b8;
}

.info-block strong {
    color: #22c55e;
}

/* =========================
   INTERESTS (UPDATED ONLY)
========================= */
.interests {
    padding: 10px 0;
}

.interests-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* CARD */
.interest-card {
    background: #0f172a;
    padding: 25px 20px;
    border-radius: 16px;

    flex: 1 1 180px;
    max-width: 220px;

    text-align: center;

    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s ease;
}

/* ICON */
.icon {
    font-size: 30px;
    margin-bottom: 12px;
}

/* TEXT */
.interest-card h3 {
    font-size: 16px;
    font-weight: 500;
    color: #e2e8f0;
}

/* HOVER (MATCHES SKILLS) */
.interest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(34,197,94,0.2);
    border: 1px solid rgba(34,197,94,0.3);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-left img {
        width: 220px;
        height: 220px;
    }

    .interests-grid {
        justify-content: center;
    }
}