/* ============================================
   MENTOR SECTION
   ============================================ */

.mentor-section {
    background: #000000;
    padding: 120px 0;
}

.mentor-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    align-items: center;
}

/* === LEFT COLUMN: IMAGE === */
.mentor-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mentor-photo {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 4px solid #FFD700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    object-fit: cover;
    transition: all 0.3s ease;
}

.mentor-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 215, 0, 0.4);
}

.mentor-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff88;
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 16px rgba(0, 255, 136, 0.4);
    z-index: 10;
}

/* === RIGHT COLUMN: CONTENT === */
.mentor-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mentor-eyebrow {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mentor-title {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.mentor-subtitle {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #00ff88;
    margin: 0;
}

.mentor-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.mentor-copy p {
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    color: #cbd5e0;
    line-height: 1.7;
    margin: 0;
}



/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1199px) {
    .mentor-grid {
        grid-template-columns: 45% 55%;
        gap: 60px;
    }

    .mentor-photo {
        width: 380px;
        height: 380px;
    }

    .mentor-title {
        font-size: 32px;
    }

    .mentor-subtitle {
        font-size: 22px;
    }

    .mentor-copy p {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mentor-section {
        padding: 80px 0;
    }

    .mentor-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mentor-image-wrapper {
        justify-content: center;
    }

    .mentor-photo {
        width: 300px;
        height: 300px;
    }

    .mentor-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .mentor-content {
        text-align: center;
        align-items: center;
    }

    .mentor-title {
        font-size: 28px;
    }

    .mentor-subtitle {
        font-size: 20px;
    }

    .mentor-copy p {
        font-size: 16px;
        line-height: 1.7;
        text-align: left;
    }

    .mentor-stats {
        width: 100%;
        max-width: 400px;
    }

    .stat-card {
        padding: 16px 20px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 13px;
    }

    .stat-description {
        font-size: 12px;
        margin-top: 4px;
    }
}